Even though i have changed to the buttons and led (0 to 3), but the led 0 & button 0 only remains functional. can anyone say ??
Even though i have changed to the buttons and led (0 to 3), but the led 0 & button 0 only remains functional. can anyone say ??
Did you change the defines of PIN_IN
and PIN_OUT
? If you want to use button and LED 4, the top of your application should look like this:
#ifdef BSP_BUTTON_3
#define PIN_IN BSP_BUTTON_3
#endif
#ifndef PIN_IN
#error "Please indicate input pin"
#endif
#ifdef BSP_LED_3
#define PIN_OUT BSP_LED_3
#endif
#ifndef PIN_OUT
#error "Please indicate output pin"
#endif
Thank you ,now its working well. am doesin change the PIN_IN and PIN_OUT..
Thank you ,now its working well. am doesin change the PIN_IN and PIN_OUT..