bldc/firmware/src/Driver/inc/led.h
2020-10-23 19:11:06 +08:00

23 lines
943 B
C

/*******************************************************************************
* @file led.h
* @author: MQjehovah mail:MQjehovah@hotmail.com
* @version 1.0.0
* @date 2020.0.23
* @brief
******************************************************************************
* @attention
*******************************************************************************/
#ifndef __LED_H
#define __LED_H
/* Includes ------------------------------------------------------------------*/
#include "stm32f10x_conf.h"
/* Definition ----------------------------------------------------------------*/
/* Exported Functions --------------------------------------------------------*/
void LED_Config();
void LED_ON(uint8_t index);
void LED_OFF(uint8_t index);
#endif
/*********************************END OF FILE**********************************/