* Add `esp32p4` feature to `esp-hal-procmacros` * Add `esp32p4` feature to `esp-hal-common` * Create the `esp32p4-hal` package * Add ESP32-P4 to CI workflow * Fix a silly typo :) * Update `CHANGELOG.md`
15 lines
296 B
Plaintext
15 lines
296 B
Plaintext
INCLUDE "memory.x"
|
|
|
|
REGION_ALIAS("ROTEXT", ROM);
|
|
REGION_ALIAS("RODATA", ROM);
|
|
|
|
REGION_ALIAS("RWTEXT", RAM);
|
|
REGION_ALIAS("RWDATA", RAM);
|
|
|
|
REGION_ALIAS("RTC_FAST_RWTEXT", RTC_FAST);
|
|
REGION_ALIAS("RTC_FAST_RWDATA", RTC_FAST);
|
|
|
|
INCLUDE "esp32p4.x"
|
|
INCLUDE "hal-defaults.x"
|
|
INCLUDE "rom-functions.x"
|