File tree 3 files changed +8
-16
lines changed
src/boards/feather_nrf52840_express
3 files changed +8
-16
lines changed Original file line number Diff line number Diff line change @@ -65,40 +65,31 @@ jobs:
65
65
66
66
steps :
67
67
- name : Setup Python
68
- uses : actions/setup-python@v3
68
+ uses : actions/setup-python@v5
69
+ with :
70
+ python-version : ' 3.x'
69
71
70
72
- name : Checkout Code
71
73
uses : actions/checkout@v4
72
74
with :
73
75
fetch-depth : 0
74
76
submodules : true
75
77
76
- - name : Checkout linkermap
77
- uses : actions/checkout@v4
78
- with :
79
- repository : hathach/linkermap
80
- path : linkermap
81
-
82
78
- name : Install ARM GCC
83
79
uses : carlosperate/arm-none-eabi-gcc-action@v1
84
80
with :
85
- release : ' 10-2020-q4 '
81
+ release : ' 12.3.Rel1 '
86
82
87
83
- name : Install Tools
88
84
run : |
89
85
pip3 install adafruit-nrfutil uritemplate requests intelhex setuptools
90
- pip3 install linkermap/
91
86
92
87
- name : Build
93
88
run : |
94
- arm-none-eabi-gcc --version
95
89
make BOARD=${{ matrix.board }} all
96
90
make BOARD=${{ matrix.board }} copy-artifact
97
91
98
- - name : Linker Map
99
- run : make BOARD=${{ matrix.board }} linkermap
100
-
101
- - uses : actions/upload-artifact@v3
92
+ - uses : actions/upload-artifact@v4
102
93
with :
103
94
name : ${{ matrix.board }}
104
95
path : _bin/${{ matrix.board }}
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ target_compile_options(bootloader PUBLIC
167
167
-Wno-endif-labels
168
168
-Wunreachable-code
169
169
# Suppress warning caused by SDK
170
- -Wno-unused-parameter -Wno-expansion-to-defined
170
+ -Wno-unused-parameter -Wno-expansion-to-defined -Wno-array-bounds
171
171
)
172
172
target_compile_definitions (bootloader PUBLIC
173
173
SOFTDEVICE_PRESENT
Original file line number Diff line number Diff line change 36
36
#define LED_STATE_ON 1
37
37
38
38
#define LED_NEOPIXEL _PINNUM(0, 16)
39
+ #define NEOPIXEL_POWER_PIN _PINNUM(1, 14)
39
40
#define NEOPIXELS_NUMBER 1
40
41
#define BOARD_RGB_BRIGHTNESS 0x040404
41
42
63
64
//------------- UF2 -------------//
64
65
#define UF2_PRODUCT_NAME "Adafruit Feather nRF52840 Express"
65
66
#define UF2_VOLUME_LABEL "FTHR840BOOT"
66
- #define UF2_BOARD_ID "nRF52840-Feather-revD "
67
+ #define UF2_BOARD_ID "nRF52840-Feather-revE "
67
68
#define UF2_INDEX_URL "https://www.adafruit.com/product/4062"
68
69
69
70
#endif // _FEATHER_NRF52840_H
You can’t perform that action at this time.
0 commit comments