File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
challenger_rp2350_bconnect
challenger_rp2350_wifi6_ble5 Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6
6
7
7
#include "shared-bindings/board/__init__.h"
8
8
9
- STATIC const mp_rom_map_elem_t board_module_globals_table [] = {
9
+ static const mp_rom_map_elem_t board_module_globals_table [] = {
10
10
CIRCUITPYTHON_BOARD_DICT_STANDARD_ITEMS
11
11
12
12
{ MP_ROM_QSTR (MP_QSTR_GP0 ), MP_ROM_PTR (& pin_GPIO0 ) },
Original file line number Diff line number Diff line change 6
6
7
7
#include "shared-bindings/board/__init__.h"
8
8
9
- STATIC const mp_rom_map_elem_t board_module_globals_table [] = {
9
+ static const mp_rom_map_elem_t board_module_globals_table [] = {
10
10
CIRCUITPYTHON_BOARD_DICT_STANDARD_ITEMS
11
11
12
12
{ MP_ROM_QSTR (MP_QSTR_GP0 ), MP_ROM_PTR (& pin_GPIO0 ) },
Original file line number Diff line number Diff line change 18
18
csv_reader = csv .reader (csv_file , delimiter = "," )
19
19
line_count = 0
20
20
21
- print ("STATIC const mp_rom_map_elem_t board_module_globals_table[] = {" )
21
+ print ("static const mp_rom_map_elem_t board_module_globals_table[] = {" )
22
22
print (" { MP_ROM_QSTR(MP_QSTR_ID), MP_ROM_PTR(&board_module_id_obj) }," )
23
23
24
24
for row in csv_reader :
You can’t perform that action at this time.
0 commit comments