Skip to content

Commit 0bc8a89

Browse files
committed
- add P1.14 as NEOPIXEL_POWER_PIN for feather nrf52840 revE
- remove linkermap from ci
1 parent 78b39b4 commit 0bc8a89

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

.github/workflows/githubci.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -65,20 +65,14 @@ jobs:
6565

6666
steps:
6767
- name: Setup Python
68-
uses: actions/setup-python@v3
68+
uses: actions/setup-python@v5
6969

7070
- name: Checkout Code
7171
uses: actions/checkout@v4
7272
with:
7373
fetch-depth: 0
7474
submodules: true
7575

76-
- name: Checkout linkermap
77-
uses: actions/checkout@v4
78-
with:
79-
repository: hathach/linkermap
80-
path: linkermap
81-
8276
- name: Install ARM GCC
8377
uses: carlosperate/arm-none-eabi-gcc-action@v1
8478
with:
@@ -87,18 +81,13 @@ jobs:
8781
- name: Install Tools
8882
run: |
8983
pip3 install adafruit-nrfutil uritemplate requests intelhex setuptools
90-
pip3 install linkermap/
9184
9285
- name: Build
9386
run: |
94-
arm-none-eabi-gcc --version
9587
make BOARD=${{ matrix.board }} all
9688
make BOARD=${{ matrix.board }} copy-artifact
9789
98-
- name: Linker Map
99-
run: make BOARD=${{ matrix.board }} linkermap
100-
101-
- uses: actions/upload-artifact@v3
90+
- uses: actions/upload-artifact@v4
10291
with:
10392
name: ${{ matrix.board }}
10493
path: _bin/${{ matrix.board }}

src/boards/feather_nrf52840_express/board.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
#define LED_STATE_ON 1
3737

3838
#define LED_NEOPIXEL _PINNUM(0, 16)
39+
#define NEOPIXEL_POWER_PIN _PINNUM(1, 14)
3940
#define NEOPIXELS_NUMBER 1
4041
#define BOARD_RGB_BRIGHTNESS 0x040404
4142

@@ -63,7 +64,7 @@
6364
//------------- UF2 -------------//
6465
#define UF2_PRODUCT_NAME "Adafruit Feather nRF52840 Express"
6566
#define UF2_VOLUME_LABEL "FTHR840BOOT"
66-
#define UF2_BOARD_ID "nRF52840-Feather-revD"
67+
#define UF2_BOARD_ID "nRF52840-Feather-revE"
6768
#define UF2_INDEX_URL "https://www.adafruit.com/product/4062"
6869

6970
#endif // _FEATHER_NRF52840_H

0 commit comments

Comments
 (0)