-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add retry * missing UART_RETRY_MAX * move device name setting * Add MS8607 enviromental sensor * Add MS8607 sensor * Add MS8607 sensor * Isn’t that obvious. * Refactor BLE intern FIFO handling * Fixed nRF52 linker script RAM length * nRF52 xxAB variant 256KB FLASH, 32KB RAM
- Loading branch information
Showing
6 changed files
with
133 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm") | ||
SEARCH_DIR(.) | ||
SEARCH_DIR("../../../../src") | ||
SEARCH_DIR("../../../../../src") | ||
SEARCH_DIR("../../../../../../src") | ||
SEARCH_DIR("../../../../EHAL/ARM/src") | ||
SEARCH_DIR("../../../../../EHAL/ARM/src") | ||
SEARCH_DIR("../../../../../../EHAL/ARM/src") | ||
GROUP(-lgcc -lc -lnosys -lCMSIS) | ||
|
||
MEMORY | ||
{ | ||
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x40000 | ||
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x8000 | ||
} | ||
|
||
|
||
INCLUDE "gcc_arm_flash.ld" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters