Skip to content

Commit

Permalink
Fix warning about multi-line // comments
Browse files Browse the repository at this point in the history
  • Loading branch information
henrygab committed Apr 19, 2020
1 parent 5af3423 commit fbacc98
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions platforms/arm/nrf52/led_sysdefs_arm_nrf52.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,12 @@ typedef __IO uint32_t RwReg;
#define sei() __enable_irq()

#define FASTLED_NRF52_DEBUGPRINT(format, ...)
//#define FASTLED_NRF52_DEBUGPRINT(format, ...)\
// do {\
// FastLED_NRF52_DebugPrint(format, ##__VA_ARGS__);\
// } while(0);

/*
#define FASTLED_NRF52_DEBUGPRINT(format, ...)\
do {\
FastLED_NRF52_DebugPrint(format, ##__VA_ARGS__);\
} while(0);
*/



Expand Down

0 comments on commit fbacc98

Please sign in to comment.