Remove trailing white space

This commit is contained in:
Rick Sorensen 2022-03-06 21:15:37 -06:00
parent d7ef8f18df
commit 6fd0643b1e
1 changed files with 2 additions and 3 deletions

View File

@ -47,15 +47,14 @@ STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
// LED pins ... note XIAO is wired so high/1/True turns LED OFF
// low/0/False turns LED ON
// duplicate names for test LED ... see D13
{ MP_ROM_QSTR(MP_QSTR_LED), MP_ROM_PTR(&pin_PA17) }, //
{ MP_ROM_QSTR(MP_QSTR_YELLOW_LED), MP_ROM_PTR(&pin_PA17) },
{ MP_ROM_QSTR(MP_QSTR_LED), MP_ROM_PTR(&pin_PA17) },
{ MP_ROM_QSTR(MP_QSTR_YELLOW_LED), MP_ROM_PTR(&pin_PA17) },
// 2 blue LEDs ... uart rx/tx indicator is default use
{ MP_ROM_QSTR(MP_QSTR_RX_LED), MP_ROM_PTR(&pin_PA18) },
{ MP_ROM_QSTR(MP_QSTR_TX_LED), MP_ROM_PTR(&pin_PA19) },
// create duplicate mappings with BLUE in name
{ MP_ROM_QSTR(MP_QSTR_BLUE1_LED), MP_ROM_PTR(&pin_PA18) },
{ MP_ROM_QSTR(MP_QSTR_BLUE2_LED), MP_ROM_PTR(&pin_PA19) },
// Comm objects
{ MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&board_i2c_obj) },