We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9bd585 commit 09301b3Copy full SHA for 09301b3
.github/workflows/pixl.js-fw.yml
@@ -10,7 +10,7 @@ jobs:
10
build:
11
strategy:
12
matrix:
13
- board: ["DEFAULT", "OLED"]
+ board: ["LCD", "OLED"]
14
runs-on: ubuntu-latest
15
container: solosky/nrf52-sdk:latest
16
steps:
fw/application/src/boards/board_default.h renamed to fw/application/src/boards/board_lcd.h
fw/application/src/boards_defines.h
@@ -13,14 +13,13 @@ extern "C" {
#endif
-//#if defined(BOARD_OLED)
17
-//#include "boards/board_oled.h"
18
-//#elif defined(BOARD_DEFAULT)
19
-//#include "boards/board_default.h"
20
-//#else
21
22
-//#endif
+#if defined(BOARD_OLED)
23
#include "boards/board_oled.h"
+#elif defined(BOARD_LCD)
+#include "boards/board_lcd.h"
+#else
+#endif
24
25
#ifdef __cplusplus
26
}
0 commit comments