three leds are defined in hal_board_cfg.h, I did ez-mode and i pressed hal_key_sw_1 on sampleswitch and samplelight both but the state of the LED is not changing. Am I missing something?
/* 1 - Green */
#define LED1_BV BV(0)
#define LED1_SBIT P1_0
#define LED1_DDR P0DIR
#define LED1_POLARITY ACTIVE_HIGH
//#if defined (HAL_BOARD_CC2530EB_REV17)
/* 2 - Red */
#define LED2_BV BV(1)
#define LED2_SBIT P1_1
#define LED2_DDR P1DIR
#define LED2_POLARITY ACTIVE_HIGH
/* 3 - Yellow */
#define LED3_BV BV(4)
#define LED3_SBIT P1_4
#define LED3_DDR P1DIR
#define LED3_POLARITY ACTIVE_HIGH
//#endif