Hi everyone,
I have 2 boards that I've been using for testing. One is the NRF52 DK with the nrf52832 and the other is a simple custom board i made with an nrf52810.
I've been able to flash both boards and confirmed that they are working with simple GPIO functions and i have started to move to getting the SPI bus working. I've been using the SPI example in the SDK (with a few pin changes for the custom board and set to only transmit, not receive anything) and it works great on the NRF52 DK. To flash it on the custom board, i first change the target device in IAR (to nrd52810) but it is not behaving the same way as the DK is. From the debugger, it seems to execute the exact same code but its not triggering the event handler when the transfer is complete,instead it gets stuck in a while loop until the transfer is complete. When looking at the scope traces, neither the SCK or MOSI have anything on them however the SS does go from high to low so it does seem like its executing part of the transmission.
Any ideas on what i am missing here. Im pretty new to firmware development in general.
Thanks!