Skip to content

Commit 55c815f

Browse files
committed
probe-rs experiments
1 parent 7affec2 commit 55c815f

File tree

5 files changed

+1717
-3
lines changed

5 files changed

+1717
-3
lines changed

firmware/examples/defmt/memory.x

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ MEMORY
33
/* Zedboard: 512 MB DDR3. Only use 63 MB for now, should be plenty for a bare-metal app.
44
Leave 1 MB of memory which will be configured as uncached device memory by the MMU. This is
55
recommended for something like DMA descriptors. */
6-
/*CODE(rx) : ORIGIN = 0x00100000, LENGTH = 63M*/
7-
CODE(rx) : ORIGIN = 0x00000000, LENGTH = 192K
6+
CODE(rx) : ORIGIN = 0x00100000, LENGTH = 63M
7+
/*CODE(rx) : ORIGIN = 0x00000000, LENGTH = 192K*/
88
UNCACHED(rx): ORIGIN = 0x4000000, LENGTH = 1M
99
}
1010

justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,5 @@ run binary:
5656
python3 {{justfile_directory()}}/scripts/zynq7000-init.py
5757

5858
# Run the GDB debugger in GUI mode.
59-
gdb-multiarch -q -x {{justfile_directory()}}/zynq/gdb.gdb {{binary}} -tui
59+
# gdb-multiarch -q -x {{justfile_directory()}}/zynq/gdb.gdb {{binary}} -tui
60+
probe-rs run --chip X7Z --protocol jtag --skip-reset {{binary}}

0 commit comments

Comments
 (0)