blink stm32 cubemx

This commit is contained in:
2021-11-08 20:13:42 -05:00
parent 7d2d12402d
commit 8f34233cbe
25 changed files with 1604 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
#ifndef __MAIN_H
#define __MAIN_H
#ifdef __cplusplus
extern "C" {
#endif
#include "stm32f1xx_hal.h"
void Error_Handler(void);
#define LED_Pin GPIO_PIN_13
#define LED_GPIO_Port GPIOC
#ifdef __cplusplus
}
#endif
#endif