15 lines
169 B
C
15 lines
169 B
C
#ifndef __LED_H
|
|
#define __LED_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#include "stm32f4xx_hal.h"
|
|
|
|
void LED_ON(void);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __LED_H */
|