11 lines
185 B
C
11 lines
185 B
C
#ifndef INC_LED
|
|
#define INC_LED
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "stm32f0xx_hal_tim.h"
|
|
|
|
void led_init(TIM_HandleTypeDef* htim);
|
|
void blink(TIM_HandleTypeDef* htim, int32_t color);
|
|
|
|
#endif |