18 lines
259 B
C
18 lines
259 B
C
//
|
|
// Created by hu123456 on 2024/1/24.
|
|
//
|
|
|
|
#ifndef FOC_N_LED_H
|
|
#define FOC_N_LED_H
|
|
|
|
#include "mymain.h"
|
|
|
|
|
|
#define LED_ON HAL_GPIO_WritePin(GPIOB, GPIO_PIN_9, 0)
|
|
#define LED_OFF HAL_GPIO_WritePin(GPIOB, GPIO_PIN_9, 1)
|
|
|
|
void led_init();
|
|
|
|
|
|
#endif //FOC_N_LED_H
|