I started to try SAADC example in SDK12.3. After setting up project in eclipse, I got two errors:
Symbol "NRF_TIMER0" could not be resolved
Symbol "TIMER0_CC_NUM" could not be resolved
What's the component missing here? Thanks.
I started to try SAADC example in SDK12.3. After setting up project in eclipse, I got two errors:
Symbol "NRF_TIMER0" could not be resolved
Symbol "TIMER0_CC_NUM" could not be resolved
What's the component missing here? Thanks.
NRF_TIMER0
is defined in nrf52.h, and TIMER0_CC_NUM
is defined in nrf52832_peripherals.h. Have you included these files in your project and added the path to the include paths?
Found them. Thanks
Found them. Thanks