diff options
| author | Scott Shawcroft <scott.shawcroft@gmail.com> | 2016-11-29 14:29:33 -0800 |
|---|---|---|
| committer | Scott Shawcroft <scott.shawcroft@gmail.com> | 2016-11-29 14:29:33 -0800 |
| commit | 2d9a0c76c527cc46e4038e9f321b3f2da96bbf11 (patch) | |
| tree | 972c9af616a663a7c5ab1142dd02a6616527fdf1 /atmel-samd/boards | |
| parent | 05c14dfe7809d4ac17c1e18b6ade8786212fc79f (diff) | |
atmel-samd: Switch to MICROPY_PORT_ROOT_POINTERS for the flash cache.
Diffstat (limited to 'atmel-samd/boards')
8 files changed, 8 insertions, 8 deletions
diff --git a/atmel-samd/boards/arduino_zero/mpconfigboard.h b/atmel-samd/boards/arduino_zero/mpconfigboard.h index d055b0d0d..233573ad0 100644 --- a/atmel-samd/boards/arduino_zero/mpconfigboard.h +++ b/atmel-samd/boards/arduino_zero/mpconfigboard.h @@ -11,4 +11,4 @@ #define AUTORESET_DELAY_MS 500 -#define FLASH_INCLUDE "internal_flash.h" +#include "internal_flash.h" diff --git a/atmel-samd/boards/cplay_m0_flash/mpconfigboard.h b/atmel-samd/boards/cplay_m0_flash/mpconfigboard.h index 6a6bc46bb..f09962c20 100644 --- a/atmel-samd/boards/cplay_m0_flash/mpconfigboard.h +++ b/atmel-samd/boards/cplay_m0_flash/mpconfigboard.h @@ -19,4 +19,4 @@ #define AUTORESET_DELAY_MS 500 -#define FLASH_INCLUDE "spi_flash.h" +#include "spi_flash.h" diff --git a/atmel-samd/boards/feather_m0_adalogger/mpconfigboard.h b/atmel-samd/boards/feather_m0_adalogger/mpconfigboard.h index a3a4fef76..bd269ee32 100644 --- a/atmel-samd/boards/feather_m0_adalogger/mpconfigboard.h +++ b/atmel-samd/boards/feather_m0_adalogger/mpconfigboard.h @@ -8,4 +8,4 @@ #define AUTORESET_DELAY_MS 500 -#define FLASH_INCLUDE "internal_flash.h" +#include "internal_flash.h" diff --git a/atmel-samd/boards/feather_m0_basic/mpconfigboard.h b/atmel-samd/boards/feather_m0_basic/mpconfigboard.h index 51ac9da85..6fd7241eb 100644 --- a/atmel-samd/boards/feather_m0_basic/mpconfigboard.h +++ b/atmel-samd/boards/feather_m0_basic/mpconfigboard.h @@ -8,4 +8,4 @@ #define AUTORESET_DELAY_MS 500 -#define FLASH_INCLUDE "internal_flash.h" +#include "internal_flash.h" diff --git a/atmel-samd/boards/feather_m0_flash/mpconfigboard.h b/atmel-samd/boards/feather_m0_flash/mpconfigboard.h index 067f954a8..eb616e1ce 100644 --- a/atmel-samd/boards/feather_m0_flash/mpconfigboard.h +++ b/atmel-samd/boards/feather_m0_flash/mpconfigboard.h @@ -20,4 +20,4 @@ #define AUTORESET_DELAY_MS 500 -#define FLASH_INCLUDE "spi_flash.h" +#include "spi_flash.h" diff --git a/atmel-samd/boards/gemma_m0/mpconfigboard.h b/atmel-samd/boards/gemma_m0/mpconfigboard.h index 09219976f..20c0cb60b 100644 --- a/atmel-samd/boards/gemma_m0/mpconfigboard.h +++ b/atmel-samd/boards/gemma_m0/mpconfigboard.h @@ -7,4 +7,4 @@ #define AUTORESET_DELAY_MS 500 -#define FLASH_INCLUDE "internal_flash.h" +#include "internal_flash.h" diff --git a/atmel-samd/boards/metro_m0_flash/mpconfigboard.h b/atmel-samd/boards/metro_m0_flash/mpconfigboard.h index a2f59b361..848f14fdf 100644 --- a/atmel-samd/boards/metro_m0_flash/mpconfigboard.h +++ b/atmel-samd/boards/metro_m0_flash/mpconfigboard.h @@ -34,4 +34,4 @@ #define AUTORESET_DELAY_MS 500 -#define FLASH_INCLUDE "spi_flash.h" +#include "spi_flash.h" diff --git a/atmel-samd/boards/trinket_m0/mpconfigboard.h b/atmel-samd/boards/trinket_m0/mpconfigboard.h index 9c264f4eb..5f055d52f 100644 --- a/atmel-samd/boards/trinket_m0/mpconfigboard.h +++ b/atmel-samd/boards/trinket_m0/mpconfigboard.h @@ -7,4 +7,4 @@ #define AUTORESET_DELAY_MS 500 -#define FLASH_INCLUDE "internal_flash.h" +#include "internal_flash.h" |
