first commit

This commit is contained in:
liyp
2026-08-25 22:07:47 -04:00
commit 84b128edb6
31 changed files with 11731 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef __BOARD_H__
#define __BOARD_H__
/* MCU INCLUDE */
#include <stm32f10x.h>
/* PERIPH INCLUDE */
#include "Gpio.h"
#include "Usart.h"
#include "Interrupt.h"
#include "Flash.h"
/* VERSION INFO */
#define HARDWARE_VERSION "v1.0.0"
#define SOFTWARE_VERSION "v1.0.0"
/* RTOS */
#define USE_RTOS
#ifdef USE_RTOS
#undef USE_FREERTOS
#undef USE_UCOS
#define USE_THREADX
#endif
#endif