mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
447cdebd26
> Allows flahsing CCFG configuration using Kconfig, formely "make menuconfig". > Supports cc26x0, cc26x2_cc13x2. > Can be used to enable bootloader backdoor, to use cc2538-bsl flashing script. > Not all options are in Kconfig, most important ones, others can be added in further commits. > On cc13xx targets the VDDR high option can be enabled using Kconfig. > With this, RIOT can flash blank chips and the firmware will run just fine. Signed-off-by: Jean Pierre Dudey <me@jeandudey.tech>
10 lines
226 B
Makefile
10 lines
226 B
Makefile
CPU_VARIANT = x2
|
|
|
|
ROM_START_ADDR ?= 0x00000000
|
|
RAM_START_ADDR ?= 0x20000000
|
|
ROM_LEN ?= 0x57FA8 # 352K - 88 config bytes
|
|
RAM_LEN ?= 80K
|
|
|
|
include ${RIOTCPU}/cc26xx_cc13xx/Makefile.include
|
|
include $(RIOTMAKE)/arch/cortexm.inc.mk
|