Hi All,
I know this question seems to have been asked many times already but still does not seem to work for us even after checking forum answers.
Hardware: Fanstel BT832 (nRF52832)
Desired function: Pin 9: PWM, PIN 10: GPIO
We initially started development with ble_app_uart as a template. We followed the instruction to add: CONFIG_NFCT_PINS_AS_GPIOS to our SES project options as in this discussion. it works correctly.
We then migrated development over to ble_app_buttonless_dfu as a starting template and we cannot get them to work. We even added the following lines as in other discussions.
const uint32_t UICR_ADDR_0x20C __attribute__((at(0x1000120C))) __attribute__((used)) = 0xFFFFFFFE;
#define CONFIG_NFCT_PINS_AS_GPIOS
When we go back flash our code with ble_app_uart base, everything is working fine.
Are there other preprocessor definition that must be added in this situation? Or are the any that must be removed?