- 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
7 lines
105 B
C
7 lines
105 B
C
#pragma once
|
|
|
|
#ifndef __CONCAT
|
|
#define __CONCAT1(x,y) x ## y
|
|
#define __CONCAT(x,y) __CONCAT1(x,y)
|
|
#endif
|