mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-01 00:28:18 +00:00
14 lines
237 B
C
14 lines
237 B
C
|
#ifndef _RASPI_GET_MODEL_
|
||
|
#define _RASPI_GET_MODEL_
|
||
|
|
||
|
#define MODEL_UNKNOWN 0
|
||
|
#define MODEL_ZERO_W 1
|
||
|
#define MODEL_3B 2
|
||
|
#define MODEL_3BPLUS 3
|
||
|
#define MODEL_3APLUS 4
|
||
|
|
||
|
int raspi_get_model();
|
||
|
|
||
|
#endif // _RASPI_GET_MODEL_
|
||
|
|