Hi guys, I'm migrating my SDK 10 project up to SDK 12. There are quite a few new configuration files and setups. In order to enable app_pwm peripherals I enabled the proper defines in the project sdk_config.h file including: APP_PWM_ENABLED 1 TIMER_ENABLED 1 TIMER1_ENABLED 1 PPI_ENABLED 1 GPIOTE_ENABLED 1
However I seem to be getting an odd compile error I can't pin down. At the code:
APP_PWM_INSTANCE(PWM1,1)
I get the following compile error:
Symbol 'TIMER1_CC_NUM' could not be resolved
This suggests to me a compile error in the deeper layers of nrf_drv_timer.c but I can't seem to nail this one down. Are there any other configuration defines I'm missing?
As a side note: Is there any documentation explaining the differences between using app_pwm and nrf_drv_pwm?
Thanks guys,
-DC