This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Doubt in defining variables in bsp header file(bsp.h)

I am using SDK 9.0.0 and i am having a doubt in bsp.h.In this header file when gone through this part of the code

#if (LEDS_NUMBER > 0) && !defined(BSP_SIMPLE)
      #define BSP_LED_APP_TIMERS_NUMBER 2
#else
     #define BSP_APP_APP_TIMERS_NUMBER 0

They defining two different variables(Line no 2 and 4) i am doubting whether mistakenly put APP instead of LED or the above changes made purposely

Related