first commit

This commit is contained in:
2025-02-19 14:46:14 +08:00
commit cde431e41c
221 changed files with 204599 additions and 0 deletions

17
APP/LED.h Normal file
View File

@ -0,0 +1,17 @@
//
// 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