Hello All,
I've recently run into an issue with the nRF52840 Dongle where the Green channel for LD2 is not lighting up, this is a problem that is persistent across all four nRF2840 Dongles in my possession.
Two of the dongles are dated 2018.42, and the other two are dated 2018.34.
I can see 4 traces leading into the LEDs so I am assuming all 3 channels are connected, perhaps it's a misconfiguration in the BSP?
LEDs are defined as follow in pca10059.h from nRF5 SDK 15.2.0.
// LED definitions for PCA10059 // Each LED color is considered a separate LED #define LEDS_NUMBER 4 #define LED1_G NRF_GPIO_PIN_MAP(0,6) #define LED2_R NRF_GPIO_PIN_MAP(0,8) #define LED2_G NRF_GPIO_PIN_MAP(1,9) #define LED2_B NRF_GPIO_PIN_MAP(0,12) #define LED_1 LED1_G #define LED_2 LED2_R #define LED_3 LED2_G #define LED_4 LED2_B #define LED_START LED_1 #define LED_STOP LED_4 #define LEDS_ACTIVE_STATE 0 #define LEDS_LIST { LED_1, LED_2, LED_3, LED_4 } #define LEDS_INV_MASK LEDS_MASK #define BSP_LED_0 LED_1 #define BSP_LED_1 LED_2 #define BSP_LED_2 LED_3 #define BSP_LED_3 LED_4
Any comments on the matter would be appreciated.
Thanks in advanced!
-jdts