19 lines
447 B
C
19 lines
447 B
C
|
// A pico-sdk board definition is required since the WeAct Studio boards are
|
||
|
// not officially supported.
|
||
|
//
|
||
|
// Officially supported boards:
|
||
|
// https://github.com/raspberrypi/pico-sdk/tree/master/src/boards/include/boards
|
||
|
|
||
|
#ifndef _BOARDS_WEACTSTUDIO_2MB_H
|
||
|
#define _BOARDS_WEACTSTUDIO_2MB_H
|
||
|
|
||
|
#include "weactstudio_common.h"
|
||
|
|
||
|
#define WEACTSTUDIO_2MB
|
||
|
|
||
|
#ifndef PICO_FLASH_SIZE_BYTES
|
||
|
#define PICO_FLASH_SIZE_BYTES (2 * 1024 * 1024)
|
||
|
#endif
|
||
|
|
||
|
#endif
|