File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
nrf/boards/Seeed_XIAO_nRF52840_Sense Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 30
30
#define MICROPY_HW_BOARD_NAME "Seeed XIAO nRF52840 Sense"
31
31
#define MICROPY_HW_MCU_NAME "nRF52840"
32
32
33
- #define MICROPY_HW_LED_STATUS (&pin_P0_26)
34
-
35
33
#if QSPI_FLASH_FILESYSTEM
36
34
#define MICROPY_QSPI_DATA0 NRF_GPIO_PIN_MAP(0, 20)
37
35
#define MICROPY_QSPI_DATA1 NRF_GPIO_PIN_MAP(0, 24)
Original file line number Diff line number Diff line change 1
1
#include "shared-bindings/board/__init__.h"
2
2
3
3
STATIC const mp_rom_map_elem_t board_module_globals_table [] = {
4
+ CIRCUITPYTHON_BOARD_DICT_STANDARD_ITEMS
5
+
4
6
{ MP_ROM_QSTR (MP_QSTR_A0 ), MP_ROM_PTR (& pin_P0_02 ) },
5
7
{ MP_ROM_QSTR (MP_QSTR_A1 ), MP_ROM_PTR (& pin_P0_03 ) },
6
8
{ MP_ROM_QSTR (MP_QSTR_A2 ), MP_ROM_PTR (& pin_P0_28 ) },
Original file line number Diff line number Diff line change 3
3
4
4
// Core Feather Pins
5
5
STATIC const mp_rom_map_elem_t board_module_globals_table [] = {
6
+ CIRCUITPYTHON_BOARD_DICT_STANDARD_ITEMS
7
+
6
8
{ MP_ROM_QSTR (MP_QSTR_ENABLE_3V3 ), MP_ROM_PTR (& pin_PE04 ) },
7
9
{ MP_ROM_QSTR (MP_QSTR_DISCHARGE_3V3 ), MP_ROM_PTR (& pin_PE06 ) },
8
10
{ MP_ROM_QSTR (MP_QSTR_DISABLE_DISCHARGING ), MP_ROM_TRUE },
You can’t perform that action at this time.
0 commit comments