File tree Expand file tree Collapse file tree 5 files changed +6
-14
lines changed
espressif/boards/seeed_xiao_esp32_s3_sense
nordic/boards/bluemicro833 Expand file tree Collapse file tree 5 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 77#include "supervisor/board.h"
88#include "mpconfigboard.h"
99
10- void board_init (void ) {
11- // struct port_config pin_conf;
12- // port_get_config_defaults(&pin_conf);
13- //
14- // pin_conf.direction = PORT_PIN_DIR_OUTPUT;
15- // port_pin_set_config(MICROPY_HW_LED_TX, &pin_conf);
16- // port_pin_set_output_level(MICROPY_HW_LED_TX, true);
17- //
18- // port_pin_set_config(MICROPY_HW_LED_RX, &pin_conf);
19- // port_pin_set_output_level(MICROPY_HW_LED_RX, true);
20- }
21-
2210// Use the MP_WEAK supervisor/shared/board.c versions of routines not defined here.
Original file line number Diff line number Diff line change @@ -9,3 +9,5 @@ CHIP_FAMILY = samd21
99SPI_FLASH_FILESYSTEM = 1
1010EXTERNAL_FLASH_DEVICES = "MX25L51245G","GD25S512MD"
1111LONGINT_IMPL = MPZ
12+
13+ CIRCUITPY_RAINBOWIO = 0
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ INTERNAL_FLASH_FILESYSTEM = 1
1010LONGINT_IMPL = MPZ
1111
1212# Turn off to make fit.
13- CIRCUTPY_PIXELBUF = 0
1413CIRCUITPY_AESIO = 0
1514CIRCUITPY_AUDIOBUSIO = 0
1615CIRCUITPY_AUDIOCORE = 0
@@ -25,13 +24,15 @@ CIRCUITPY_PIXELMAP = 0
2524CIRCUITPY_GETPASS = 0
2625CIRCUITPY_KEYPAD = 0
2726CIRCUITPY_MSGPACK = 0
27+ CIRCUTPY_PIXELBUF = 0
2828CIRCUITPY_PS2IO = 0
2929CIRCUITPY_RGBMATRIX = 0
3030CIRCUITPY_RAINBOWIO = 0
3131CIRCUITPY_ROTARYIO = 0
3232CIRCUITPY_TOUCHIO = 0
3333CIRCUITPY_USB_HID = 0
3434CIRCUITPY_USB_MIDI = 0
35+ CIRCUITPY_WARNINGS = 0
3536
3637CIRCUITPY_ULAB = 0
3738
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ static const mp_rom_obj_tuple_t camera_data_tuple = {
2929 }
3030};
3131
32- STATIC const mp_rom_map_elem_t board_module_globals_table [] = {
32+ static const mp_rom_map_elem_t board_module_globals_table [] = {
3333 CIRCUITPYTHON_BOARD_DICT_STANDARD_ITEMS
3434 { MP_ROM_QSTR (MP_QSTR_A0 ), MP_ROM_PTR (& pin_GPIO1 ) },
3535 { MP_ROM_QSTR (MP_QSTR_A1 ), MP_ROM_PTR (& pin_GPIO2 ) },
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ CIRCUITPY_AUDIOBUSIO = 0
1212CIRCUITPY_AUDIOPWMIO = 0
1313CIRCUITPY_AUDIOMIXER = 0
1414CIRCUITPY_KEYPAD = 1
15+ CIRCUITPY_KEYPAD_DEMUX = 0
1516CIRCUITPY_NVM = 0
1617CIRCUITPY_ONEWIREIO = 0
1718CIRCUITPY_PIXELBUF = 1
You can’t perform that action at this time.
0 commit comments