Hi All,
I am doing a Mesh development project with nRF52840 and a custom board.
SDK version: nrf5SDKforMeshv320
Testing Example: light_switch
I had changed the port/pin for LEDs:
Original:
#define LEDS_NUMBER 4
#define LED_1 NRF_GPIO_PIN_MAP(0,13)
#define LED_2 NRF_GPIO_PIN_MAP(0,14)
#define LED_3 NRF_GPIO_PIN_MAP(0,15)
#define LED_4 NRF_GPIO_PIN_MAP(0,16)
#define LED_START LED_1
#define LED_STOP LED_4
Custom Board:
#define LEDS_NUMBER 2
#define LED_1 NRF_GPIO_PIN_MAP(1,1)
#define LED_2 NRF_GPIO_PIN_MAP(1,2)
#define LED_START LED_1
#define LED_STOP LED_2
Although the NRF_GPIO_PIN_MAP(port, pin) had been changed, it is able to work with nRF5_SDK_15.3.0 but does not work with MESH example (nrf5SDKforMeshv320).
Please kindly need your help to advice if there is any other modification is needed in order to use port 1 for LEDs toggle.