Fixup another level of compiler warnings, add _U() definition

This commit is contained in:
graham sanderson
2021-02-19 12:05:13 -06:00
parent 7ded9df488
commit 503bc8b385
46 changed files with 269 additions and 223 deletions

View File

@ -40,6 +40,14 @@
#define PICO_NO_RAM_VECTOR_TABLE 0
#endif
#ifndef _U
#ifdef __ASSEMBLER__
#define _U(x) x
#else
#define _U(x) x ## u
#endif
#endif
#ifndef PICO_FLASH_SIZE_BYTES
#define PICO_FLASH_SIZE_BYTES (2 * 1024 * 1024)
#endif