23 lines
943 B
C
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**********************************/
|