aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/memory.x4
-rw-r--r--examples/src/lib.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/memory.x b/examples/memory.x
index f4263a412..528545b64 100644
--- a/examples/memory.x
+++ b/examples/memory.x
@@ -1,5 +1,5 @@
1MEMORY 1MEMORY
2{ 2{
3 FLASH : ORIGIN = 0x20000000, LENGTH = 64K 3 FLASH : ORIGIN = 0x20000000, LENGTH = 80K
4 RAM : ORIGIN = 0x20010000, LENGTH = 64K 4 RAM : ORIGIN = 0x20014000, LENGTH = 48K
5} 5}
diff --git a/examples/src/lib.rs b/examples/src/lib.rs
index 2018a3c25..4bb334da5 100644
--- a/examples/src/lib.rs
+++ b/examples/src/lib.rs
@@ -5,7 +5,7 @@
5//! These live with the examples so the HAL stays generic. 5//! These live with the examples so the HAL stays generic.
6 6
7use hal::{clocks, pins}; 7use hal::{clocks, pins};
8use {embassy_mcxa as hal, panic_probe as _}; 8use {defmt_rtt as _, embassy_mcxa as hal, panic_probe as _};
9 9
10/// Initialize clocks and pin muxing for UART2 debug console. 10/// Initialize clocks and pin muxing for UART2 debug console.
11/// Safe to call multiple times; writes are idempotent for our use. 11/// Safe to call multiple times; writes are idempotent for our use.