-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/friendly_name_instead_of_ids
- Loading branch information
Showing
4 changed files
with
242 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
size: [750, 650] | ||
variables: | ||
graphite: &graphite '#2A363B' | ||
pastel_green: &pastel_green '#99B898' | ||
pastel_yellow: &pastel_yellow '#FECEA8' | ||
pastel_orange: &pastel_orange '#FF847C' | ||
pastel_red: &pastel_red '#E84A5F' | ||
|
||
style: | ||
text-fill: 'lightgrey' | ||
background: *graphite | ||
fill: '#99B898' | ||
hide-size: true | ||
stroke: *graphite | ||
stroke-width: 1 | ||
text-stroke: 'black' | ||
text-stroke-width: 0 | ||
font_type: 'Helvetica' | ||
|
||
areas: | ||
- area: | ||
title: 'Full Memory Map' | ||
size: [200, 500] | ||
range: [0x0, 0x100000000] | ||
section-size: [0x02F00000] | ||
style: | ||
hide-address: true | ||
fill: *pastel_green | ||
sections: | ||
- names: [ External Device, External Ram ] | ||
fill: '#FF847C' | ||
style: | ||
hide-size: true | ||
hide-address: true | ||
|
||
- area: | ||
title: 'Address Link Example' | ||
pos: [ 400, 50 ] | ||
size: [ 200, 200 ] | ||
range: [0xE8040000, 0xE8044000] | ||
sections: # Adding the 'regions' sub-level under 'style' | ||
- names: [ ROM Table ] | ||
style: | ||
fill: *pastel_green | ||
- names: [ External PPB ] | ||
style: | ||
fill: *pastel_yellow | ||
- names: [ ETM, Peripheral ] | ||
style: | ||
fill: *pastel_orange | ||
- names: [ TPIU ] | ||
style: | ||
fill: *pastel_red | ||
|
||
- area: | ||
title: 'Sections Link Example' | ||
pos: [ 400, 330 ] | ||
size: [ 200, 300 ] | ||
range: [0x40000000, 0x43000000] | ||
sections: # Adding the 'regions' sub-level under 'style' | ||
- names: [ Bit ] | ||
style: | ||
fill: *pastel_yellow | ||
- names: [ Bit band region ] | ||
style: | ||
fill: *pastel_orange | ||
- names: [ Reserved ] | ||
flags: grows-down | ||
|
||
links: | ||
style: | ||
stroke: 'lightgray' | ||
stroke-width: 1 | ||
fill: 'gray' | ||
addresses: [ 0xe8040000 ] | ||
sections: [['Bit band region', 'Bit band alias']] | ||
|
||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,97 @@ | ||
map: | ||
- address: 0x20000000 | ||
size: 0x20000000 | ||
id: SRAM Area | ||
type: area | ||
- address: 0x40000000 | ||
size: 0x20000000 | ||
id: Peripheral | ||
type: area | ||
- address: 0x60000000 | ||
size: 0x40000000 | ||
id: External RAM | ||
type: area | ||
- address: 0xA0000000 | ||
size: 0x40000000 | ||
id: External Device | ||
type: area | ||
- address: 0xE0000000 | ||
size: 0x08000000 | ||
id: Private Periph. Bus - Internal | ||
type: area | ||
- address: 0xE8000000 | ||
size: 0x08000000 | ||
id: Private Periph. Bus - External | ||
type: area | ||
- address: 0xF0000000 | ||
size: 0x08000000 | ||
id: Vendor Specific | ||
type: area | ||
|
||
- address: 0xE8040000 | ||
size: 0x00001000 | ||
id: TPIU | ||
type: section | ||
- address: 0xE8041000 | ||
size: 0x00001000 | ||
id: ETM | ||
type: section | ||
- address: 0xE8042000 | ||
size: 0x00001000 | ||
id: External PPB | ||
type: section | ||
- address: 0xE8043000 | ||
size: 0x00001000 | ||
id: ROM Table | ||
type: section | ||
|
||
- address: 0xE0000000 | ||
size: 0x00010000 | ||
id: ITM | ||
type: section | ||
- address: 0xE0010000 | ||
size: 0x00010000 | ||
id: DWT | ||
type: section | ||
- address: 0xE0020000 | ||
size: 0x00010000 | ||
id: FPB | ||
type: section | ||
- address: 0xE0030000 | ||
size: 0x000B0000 | ||
id: Reserved | ||
type: section | ||
- address: 0xE00E0000 | ||
size: 0x00010000 | ||
id: NVIC | ||
type: section | ||
- address: 0xE00F0000 | ||
size: 0x00010000 | ||
id: NVIC | ||
type: section | ||
|
||
- address: 0x20000000 | ||
size: 0x00100000 | ||
id: Bit band region | ||
type: section | ||
- address: 0x20100000 | ||
size: 0x01F00000 | ||
id: Bit | ||
type: section | ||
- address: 0x22000000 | ||
size: 0x01000000 | ||
id: Bit band alias | ||
type: section | ||
|
||
- address: 0x40000000 | ||
size: 0x00100000 | ||
id: Bit band region | ||
type: section | ||
- address: 0x40100000 | ||
size: 0x01F00000 | ||
id: Bit | ||
type: section | ||
- address: 0x42000000 | ||
size: 0x01000000 | ||
id: Bit band alias | ||
type: section |