initial commit

This commit is contained in:
2025-08-05 15:53:44 +08:00
commit 09dc02ae52
553 changed files with 137665 additions and 0 deletions

7
hal/hal_mcu/config.mk Executable file
View File

@@ -0,0 +1,7 @@
SRC += $(wildcard $(HAL_DIR)/hal_mcu/*.c)
CFLAGS += -I$(HAL_DIR)/hal_mcu
ifdef MOD_MCU
SRC += $(wildcard $(HAL_DIR)/hal_mcu/$(MOD_MCU)/*.c)
else
$(warning warning you sure no hal_mcu?)
endif

View File

@@ -0,0 +1,6 @@
#ifndef __MCU_H__
#define __MCU_H__
int32_t hal_mcu_init();
int32_t hal_mcu_deinit();
#endif