Hi,
I just switched over from the nrf52840PDK to the nrf52840DK and I'm running into an issue where the DK board is not firing the NRF_USBD->EVENTCAUSE = Ready event.
I'm trying to enumerate the nrf52840 as USB CDC_ACM Device and the enumeration sequence goes through on the PDK (lists under lsusb and ttyACM0) but not on the DK. (I'm running the exact same code on both chips.)
After looking at the registers and following through where it's failing in the device initialization and enumeration sequence I'm finding that after setting NRF_USBD->Enable to enabled is that the Ready event isn't firing. I can look at the addresses and see that 0x40027500 = 1 for the ENABLE register and 0x40027300 = 00000000010000000000000000000000 which shows that the USBEVENT interrupt is allowed, but 0x40027158 remains 0 and never fires and 0x40027400 also remains zero'd out.
I'm still receiving the USBPWRRDY event from the Power Interrupt Handler but I can't process any USB events.
Was there a change from the nrf52840PDK to the nrf52840DK that I'm unaware of that changes the event/initialization requirements to start up the USBD events?