- sys/cdefs is wanted for __CONCAT() - version.h and config_autogen.h are generated by the pico sdk - config_autogen expects to include board file - instead define PICO_xyz in target rules.mk
11 lines
208 B
C
11 lines
208 B
C
|
|
#ifndef _PICO_VERSION_H
|
|
#define _PICO_VERSION_H
|
|
|
|
#define PICO_SDK_VERSION_MAJOR 1
|
|
#define PICO_SDK_VERSION_MINOR 0
|
|
#define PICO_SDK_VERSION_REVISION 1
|
|
#define PICO_SDK_VERSION_STRING "1.0.1"
|
|
|
|
#endif
|