Hi there,
I have nrf52840 development board and I'm just looking through the pwm_library example code which uses the app_pwm.c.
There, I was wanting to use 16MHz clock for the timer but it keeps changing the prescaler to 1, which means it's usnig 8MHz.
As I further investigated, this was due to m_use_ppi_delay_workaround being set to true.
m_use_ppi_delay_workaround gets set to true because of the code in app_pwm_init:
#ifdef GPIOTE_SET_CLEAR_TASKS if (((*(uint32_t *)0xF0000FE8) & 0x000000F0) == 0x30) { m_use_ppi_delay_workaround = false; } else { m_use_ppi_delay_workaround = true; } #endif
Could someone explain what this is doing?
From researching around the internet, it's trying to workaround some sort of errata but I'd like to know what errata it's trying to work around.
Thanks,
AOF