Skip to content

Commit 09301b3

Browse files
committed
rename board
1 parent c9bd585 commit 09301b3

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/pixl.js-fw.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
strategy:
1212
matrix:
13-
board: ["DEFAULT", "OLED"]
13+
board: ["LCD", "OLED"]
1414
runs-on: ubuntu-latest
1515
container: solosky/nrf52-sdk:latest
1616
steps:

fw/application/src/boards_defines.h

+6-7
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@ extern "C" {
1313
#endif
1414

1515

16-
//#if defined(BOARD_OLED)
17-
//#include "boards/board_oled.h"
18-
//#elif defined(BOARD_DEFAULT)
19-
//#include "boards/board_default.h"
20-
//#else
21-
//#include "boards/board_default.h"
22-
//#endif
16+
#if defined(BOARD_OLED)
2317
#include "boards/board_oled.h"
18+
#elif defined(BOARD_LCD)
19+
#include "boards/board_lcd.h"
20+
#else
21+
#include "boards/board_lcd.h"
22+
#endif
2423

2524
#ifdef __cplusplus
2625
}

0 commit comments

Comments
 (0)