-
Notifications
You must be signed in to change notification settings - Fork 980
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nrf52840_hic: Add documentation for nrf52840 HIC
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 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,40 @@ | ||
# nrf52840 HIC | ||
|
||
Based on Nordic [nRF52840](https://www.nordicsemi.com/Products/nRF52840): | ||
- Cortex-M4 64 MHz | ||
- 1MB Flash (limited to 256 KB) | ||
- 64 KB RAM | ||
- Full-speed USB 2.0 device controller: up to 9 bi-directional endpoints including EP0 (*) | ||
- aQFN73 or QFN48 packaging | ||
|
||
(*) "Endpoints: 2 control (1 IN, 1 OUT) [...] 14 bulk/interrupt (7 IN, 7 OUT) [...] 2 isochronous (1 IN, 1 OUT)" (source: [Datasheet](https://infocenter.nordicsemi.com/pdf/nRF52840_PS_v1.7.pdf)) | ||
|
||
## Memory Map | ||
|
||
| Region | Size | Start | End | | ||
|----------|--------|-------------|-------------| | ||
| Flash | 256 KB | 0x0000_0000 | 0x0004_0000 | | ||
| SRAM | 64 KB | 0x2000_0000 | 0x2001_0000 | | ||
|
||
Bootloader size is 64 KB | ||
|
||
## DAPLink default pin assignment | ||
|
||
| Signal | I/O | Symbol | Pin | | ||
|-------------|:---:|---------|:---:| | ||
| SWD | | ||
| SWCLK | O | P0.13 | | | ||
| SWDIO | I/O | P0.17 | | | ||
| nRST | O | P0.09 | | | ||
| UART | | ||
| UART TX | I | P0.24 | | | ||
| UART RX | O | P1.00 | | | ||
| Button | | ||
| F-RST But. | I | P1.06 | | | ||
| LEDs | | ||
| HID LED | O | P0.06 | | | ||
| MSD LED | O | P0.08 | | | ||
| CDC LED | O | P0.12 | | | ||
|
||
Note: | ||
- LEDs have active state low. |