File tree Expand file tree Collapse file tree 4 files changed +17
-2
lines changed
src/boards/ledglasses_nrf52840 Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -63,11 +63,18 @@ jobs:
63
63
- name : Checkout Code
64
64
uses : actions/checkout@v1
65
65
with :
66
- submodules : true
66
+ submodules : true
67
+
68
+ - name : Checkout linkermap
69
+ uses : actions/checkout@v2
70
+ with :
71
+ repository : hathach/linkermap
72
+ path : linkermap
67
73
68
74
- name : Install Toolchains
69
75
run : |
70
76
pip3 install adafruit-nrfutil uritemplate requests intelhex
77
+ pip3 install linkermap/
71
78
npm install --global xpm
72
79
# 9.3.1-1.2.1 is xpack modified version which significantly increased compiled size to 6-7KB and cause flash overflow.
73
80
# Skip this version for now, we will try again with next official release from ARM
78
85
run : |
79
86
make BOARD=${{ matrix.board }} all
80
87
make BOARD=${{ matrix.board }} copy-artifact
88
+
89
+ - name : Linker Map
90
+ run : make BOARD=${{ matrix.board }} linkermap
81
91
82
92
- uses : actions/upload-artifact@v2
83
93
with :
Original file line number Diff line number Diff line change @@ -373,6 +373,10 @@ clean:
373
373
@$(RM ) $(BUILD )
374
374
@$(RM ) $(BIN )
375
375
376
+ # linkermap must be install previously at https://github.com/hathach/linkermap
377
+ linkermap : $(BUILD ) /$(OUT_NAME ) .out
378
+ @linkermap -v $< .map
379
+
376
380
# Create objects from C SRC files
377
381
$(BUILD ) /% .o : % .c
378
382
@echo CC $(notdir $< )
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ This is a CDC/DFU/UF2 bootloader for nRF52 boards.
10
10
- [ Adafruit Feather nRF52840 Express] ( https://www.adafruit.com/product/4062 )
11
11
- [ Adafruit Feather nRF52840 Sense] ( https://www.adafruit.com/product/4516 )
12
12
- [ Adafruit ItsyBitsy nRF52840 Express] ( https://www.adafruit.com/product/4481 )
13
+ - [ Adafruit LED Glasses Driver nRF52840] ( https://www.adafruit.com/product/5217 )
13
14
- Adafruit Metro nRF52840 Express
14
15
- [ Akizukidenshi AE-BL652-BO] ( https://akizukidenshi.com/catalog/g/gK-15567/ )
15
16
- [ Electronut Labs Papyr] ( https://docs.electronut.in/papyr/ )
Original file line number Diff line number Diff line change 63
63
#define UF2_PRODUCT_NAME "Adafruit LED Glasses Driver nRF52840"
64
64
#define UF2_VOLUME_LABEL "GLASSESBOOT"
65
65
#define UF2_BOARD_ID "nRF52840-LedGlasses-revA"
66
- #define UF2_INDEX_URL "https://www.adafruit.com/"
66
+ #define UF2_INDEX_URL "https://www.adafruit.com/product/5217 "
67
67
68
68
#endif // _LEDGLASSES_NRF52840_H
You can’t perform that action at this time.
0 commit comments