Part Number: CC1350
Other Parts Discussed in Thread: SYSBIOS
Tool/software: TI-RTOS
Hi,
We are running the BLE stack on the CC1350 LaunchPad and we have it connected to an external ADC via SPI. We need to achieve 20 kHz sampling (50 us). We tried to implement this using a periodic timer via the sysbios clock driver, but we were not able to achieve that high of a frequency.
static void radioSyncTxClockCallback(UArg a0)
{
GPIO_toggleDio(24);
}
We used a callback as shown above, and we are seeing that pin get toggled as shown above. Is there a way to implement this where we can get a consistent 20 kHz timing?