Skip to content

Commit

Permalink
Merge pull request #1578 from maxd-nordic/nrf91_uicr
Browse files Browse the repository at this point in the history
nRF91 family improvements
  • Loading branch information
flit authored Jul 12, 2023
2 parents 56a299c + 08359a3 commit 314d55a
Show file tree
Hide file tree
Showing 7 changed files with 36,005 additions and 27 deletions.
5 changes: 5 additions & 0 deletions docs/builtin-targets.md
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,11 @@ title: Built-in targets
<td>NRF52840</td>
</tr>

<tr><td><code>nrf91</code></td>
<td>Nordic Semiconductor</td>
<td>NRF9160</td>
</tr>

<tr><td><code>rp2040</code></td>
<td>Raspberry Pi</td>
<td>RP2040Core0</td>
Expand Down
1 change: 1 addition & 0 deletions pyocd/core/memory_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ class MemoryRegion(MemoryRangeBase):
'is_readable': lambda r: 'r' in r.access,
'is_writable': lambda r: 'w' in r.access,
'is_executable': lambda r: 'x' in r.access,
'is_erasable' : True,
'is_secure': lambda r: 's' in r.access,
'is_nonsecure': lambda r: not r.is_secure,
}
Expand Down
Loading

0 comments on commit 314d55a

Please sign in to comment.