Enable UARTE1 for 52840 MCUs.#112
Conversation
This is mentioned in the datasheet in §4.2 Table 3 (Instantiation Table). And exists in the PAC for this chipset. Tested with a nrf52840-mdk board.
|
Checks out on an nrf52840 dk. (and works with #102 with a fix hopefully @korken89 saw https://github.com/korken89/nrf52-hal/pull/1) One annoying note I hadn't seen before, unlike UARTE0, both the interrupt and the handler are named UARTE1 so with UARTE0 it looks like this but on UARTE1 you have to import UARTE1 as something else |
|
In general, the peripherals and their interrupts share names. The exceptions are the peripherals which share instances (e.g.,
I don't use rtfm, so I don't run into this issue. I also only import the |
|
Hi, is there something blocking this PR? |
This is mentioned in the datasheet in §4.2 Table 3 (Instantiation
Table) and exists in the PAC for this chipset.
Tested with a nrf52840-mdk board.