Hi,
in my project I'm trying to send Data from an ARM uController over BLE to the PC.
My ARM uController works as SPI-Master and the CC2540 as the slave. That works fine!
But the CC2540 only goes to the SPI-ISR when it is not connected with the PC, what's the problem?
The SPI-ISR looks like that:
HAL_ISR_FUNCTION( spiPort0Isr, URX0_VECTOR )
{
...
}
Thanks for the Answer!