Skip to content

Commit 49fca3f

Browse files
committed
more board shrinking, and fix STATIC from merge
1 parent 3abd4e4 commit 49fca3f

File tree

5 files changed

+6
-14
lines changed

5 files changed

+6
-14
lines changed

ports/atmel-samd/boards/bdmicro_vina_d21/board.c

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,4 @@
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.

ports/atmel-samd/boards/bdmicro_vina_d21/mpconfigboard.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ CHIP_FAMILY = samd21
99
SPI_FLASH_FILESYSTEM = 1
1010
EXTERNAL_FLASH_DEVICES = "MX25L51245G","GD25S512MD"
1111
LONGINT_IMPL = MPZ
12+
13+
CIRCUITPY_RAINBOWIO = 0

ports/atmel-samd/boards/kicksat-sprite/mpconfigboard.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ INTERNAL_FLASH_FILESYSTEM = 1
1010
LONGINT_IMPL = MPZ
1111

1212
# Turn off to make fit.
13-
CIRCUTPY_PIXELBUF = 0
1413
CIRCUITPY_AESIO = 0
1514
CIRCUITPY_AUDIOBUSIO = 0
1615
CIRCUITPY_AUDIOCORE = 0
@@ -25,13 +24,15 @@ CIRCUITPY_PIXELMAP = 0
2524
CIRCUITPY_GETPASS = 0
2625
CIRCUITPY_KEYPAD = 0
2726
CIRCUITPY_MSGPACK = 0
27+
CIRCUTPY_PIXELBUF = 0
2828
CIRCUITPY_PS2IO = 0
2929
CIRCUITPY_RGBMATRIX = 0
3030
CIRCUITPY_RAINBOWIO = 0
3131
CIRCUITPY_ROTARYIO = 0
3232
CIRCUITPY_TOUCHIO = 0
3333
CIRCUITPY_USB_HID = 0
3434
CIRCUITPY_USB_MIDI = 0
35+
CIRCUITPY_WARNINGS = 0
3536

3637
CIRCUITPY_ULAB = 0
3738

ports/espressif/boards/seeed_xiao_esp32_s3_sense/pins.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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) },

ports/nordic/boards/bluemicro833/mpconfigboard.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ CIRCUITPY_AUDIOBUSIO = 0
1212
CIRCUITPY_AUDIOPWMIO = 0
1313
CIRCUITPY_AUDIOMIXER = 0
1414
CIRCUITPY_KEYPAD = 1
15+
CIRCUITPY_KEYPAD_DEMUX = 0
1516
CIRCUITPY_NVM = 0
1617
CIRCUITPY_ONEWIREIO = 0
1718
CIRCUITPY_PIXELBUF = 1

0 commit comments

Comments
 (0)