diff --git a/APP_Framework/Applications/app_test/test_gpio.c b/APP_Framework/Applications/app_test/test_gpio.c index 16bbfbb89..6e53c1999 100644 --- a/APP_Framework/Applications/app_test/test_gpio.c +++ b/APP_Framework/Applications/app_test/test_gpio.c @@ -25,7 +25,7 @@ #ifdef BOARD_EDU_RISCV64_EVB #define BSP_LED_PIN 29 #define BSP_KEY_PIN 31 -#elif defined BOARD_HC32F4A0_EVB +#elif defined BOARD_EDU_ARM32_EVB #define BSP_LED_PIN 134 #define BSP_KEY_PIN 176 #endif diff --git a/Ubiquitous/XiZi_IIoT/Makefile b/Ubiquitous/XiZi_IIoT/Makefile index c51dfa9cd..c41b4eda9 100755 --- a/Ubiquitous/XiZi_IIoT/Makefile +++ b/Ubiquitous/XiZi_IIoT/Makefile @@ -6,7 +6,7 @@ MAKEFLAGS += --no-print-directory riscv_support := kd233 maix-go hifive1-rev-B gapuino gd32vf103-rvstar rv32m1-vega aiit-riscv64-board xidatong-riscv64 edu-riscv64 -arm_support += stm32f407-st-discovery stm32f407zgt6 stm32f103-nano nuvoton-m2354 ok1052-c imxrt1176-sbc aiit-arm32-board xidatong-arm32 xiwangtong-arm32 hc32f4a0 +arm_support += stm32f407-st-discovery stm32f407zgt6 stm32f103-nano nuvoton-m2354 ok1052-c imxrt1176-sbc aiit-arm32-board xidatong-arm32 xiwangtong-arm32 edu-arm32 emulator_support += hifive1-emulator k210-emulator cortex-m0-emulator cortex-m3-emulator cortex-m4-emulator support := $(riscv_support) $(arm_support) $(emulator_support) SRC_DIR := diff --git a/Ubiquitous/XiZi_IIoT/README.md b/Ubiquitous/XiZi_IIoT/README.md index 12cb57a16..bdad447fb 100644 --- a/Ubiquitous/XiZi_IIoT/README.md +++ b/Ubiquitous/XiZi_IIoT/README.md @@ -23,13 +23,13 @@ ARM架构系列的开发板有 - aiit-arm32-board nuvoton-m2354 ok1052-c stm32f103-nano stm32f407-st-discovery stm32f407zgt6 xidatong-arm32 + aiit-arm32-board nuvoton-m2354 ok1052-c stm32f103-nano stm32f407-st-discovery stm32f407zgt6 xidatong-arm32 edu-arm32 ### RISC-V RISC-V架构系列的开发板有 - aiit-riscv64-board gapuino gd32vf103-rvstar hifive1-rev-B kd233 maix-go rv32m1-vega + aiit-riscv64-board gapuino gd32vf103-rvstar hifive1-rev-B kd233 maix-go rv32m1-vega edu-riscv64 ## 开发环境 diff --git a/Ubiquitous/XiZi_IIoT/arch/arm/Makefile b/Ubiquitous/XiZi_IIoT/arch/arm/Makefile index c612d35b7..f923b359c 100644 --- a/Ubiquitous/XiZi_IIoT/arch/arm/Makefile +++ b/Ubiquitous/XiZi_IIoT/arch/arm/Makefile @@ -25,7 +25,7 @@ SRC_DIR := shared SRC_DIR += cortex-m4 endif -ifeq ($(CONFIG_BOARD_HC32F4A0_EVB),y) +ifeq ($(CONFIG_BOARD_EDU_ARM32_EVB),y) SRC_DIR := shared SRC_DIR += cortex-m4 endif diff --git a/Ubiquitous/XiZi_IIoT/arch/arm/cortex-m4/Makefile b/Ubiquitous/XiZi_IIoT/arch/arm/cortex-m4/Makefile index c314ad140..12d565825 100644 --- a/Ubiquitous/XiZi_IIoT/arch/arm/cortex-m4/Makefile +++ b/Ubiquitous/XiZi_IIoT/arch/arm/cortex-m4/Makefile @@ -14,7 +14,7 @@ SRC_FILES += svc_handle.c mpu.c endif endif -ifeq ($(CONFIG_BOARD_HC32F4A0_EVB),y) +ifeq ($(CONFIG_BOARD_EDU_ARM32_EVB),y) SRC_DIR += hc32f4a0 endif diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/.defconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/.defconfig similarity index 98% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/.defconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/.defconfig index aff17c060..c49acf577 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/.defconfig +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/.defconfig @@ -2,7 +2,7 @@ # Automatically generated file; DO NOT EDIT. # XiZi_IIoT Project Configuration # -CONFIG_BOARD_HC32F4A0_EVB=y +CONFIG_BOARD_EDU_ARM32_EVB=y CONFIG_ARCH_ARM=y # @@ -25,7 +25,7 @@ CONFIG_SERIAL_6_DEVICE_NAME_0="usart6_dev6" # # config board app name # -CONFIG_BOARD_APP_NAME="/XiUOS_hc32f4a0_app.bin" +CONFIG_BOARD_APP_NAME="/XiUOS_edu_arm32_app.bin" # # Hardware feature diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/Kconfig similarity index 87% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/Kconfig index 71d3f01cf..ff3bd5b09 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/Kconfig +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/Kconfig @@ -10,21 +10,21 @@ config KERNEL_DIR option env="KERNEL_ROOT" default "../.." -config BOARD_HC32F4A0_EVB +config BOARD_EDU_ARM32_EVB bool select ARCH_ARM default y source "$KERNEL_DIR/arch/Kconfig" -menu "hc32f4a0 feature" +menu "edu-arm32 feature" source "$BSP_DIR/third_party_driver/Kconfig" menu "config default board resources" menu "config board app name" config BOARD_APP_NAME string "config board app name" - default "/XiUOS_hc32f4a0_app.bin" + default "/XiUOS_edu_arm32_app.bin" endmenu endmenu diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/README.md b/Ubiquitous/XiZi_IIoT/board/edu-arm32/README.md similarity index 92% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/README.md rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/README.md index aa53e8265..a94c95d26 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/README.md +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/README.md @@ -1,4 +1,4 @@ -# 从零开始构建矽璓工业物联操作系统:使用ARM架构的HC32F4A0开发板 +# 从零开始构建矽璓工业物联操作系统:使用ARM架构的edu-arm32开发板 [XiUOS](http://xuos.io/) (X Industrial Ubiquitous Operating System) 矽璓工业物联操作系统是一款面向工业物联场景的泛在操作系统,来自泛在操作系统研究计划。所谓泛在操作系统(UOS: Ubiquitous Operating Systems),是支持互联网时代人机物融合泛在计算应用模式的新型操作系统,是传统操作系统概念的泛化与延伸。在泛在操作系统技术体系中,不同的泛在计算设备和泛在应用场景需要符合各自特性的不同UOS,XiUOS即是面向工业物联场景的一种UOS,主要由一个极简的微型实时操作系统(RTOS)内核和其上的智能工业物联框架构成,支持工业物联网(IIoT: Industrial Internet of Things)应用。 @@ -101,7 +101,7 @@ ARM: arm-none-eabi(`gcc version 6.3.1`),默认安装到Ubuntu的/usr/bin/arm $ sudo apt install gcc-arm-none-eabi ``` -# 在HC32F4A0上创建第一个应用 --helloworld +# 在edu-arm32上创建第一个应用 --helloworld ## 1. 简介 @@ -133,8 +133,8 @@ XiUOS板级驱动当前支持使用UART。 ```c cd ./Ubiquitous/XiZi -make BOARD=hc32f4a0 distclean -make BOARD=hc32f4a0 menuconfig +make BOARD=edu-arm32 distclean +make BOARD=edu-arm32 menuconfig ``` 2.在menuconfig界面配置需要关闭和开启的功能,按回车键进入下级菜单,按Y键选中需要开启的功能,按N键选中需要关闭的功能,配置结束后保存并退出(本例旨在演示简单的输出例程,所以没有需要配置的选项,双击快捷键ESC退出配置) @@ -148,15 +148,15 @@ make BOARD=hc32f4a0 menuconfig 3.继续执行以下命令,进行编译 ```c -make BOARD=hc32f4a0 +make BOARD=edu-arm32 ``` -4.如果编译正确无误,会产生XiZi_hc32f4a0.elf、XiZi_hc32f4a0.bin文件。其中XiZi_shc32f4a0.bin需要烧写到设备中进行运行。 +4.如果编译正确无误,会产生XiZi-edu-arm32.elf、XiZi-edu-arm32.bin文件。其中XiZi-edu-arm32.bin需要烧写到设备中进行运行。 ## 3. 烧写及执行 ### 3.1 烧写 -将BOARD=hc32f4a0开发板通过TYPE-C接口转接到PC,然后使用华大官方HDSC ISP工具进行烧写bin文件。 +将BOARD=edu-arm32开发板通过TYPE-C接口转接到PC,然后使用华大官方HDSC ISP工具进行烧写bin文件。 1、烧写工具:HDSC ISP,可参考[https://www.hdsc.com.cn/Category83-1496](https://www.hdsc.com.cn/Category83-1496) @@ -167,6 +167,6 @@ make BOARD=hc32f4a0 ### 3.2 运行结果 -如果编译 & 烧写无误,将会在串口终端上看到信息打印输出,(终端串口引脚为UART3)。 +如果编译 & 烧写无误,将会在串口终端上看到信息打印输出,(终端TYPE-C串口引脚为UART3)。 ![terminal](img/terminal.png) diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/board.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/board.c similarity index 97% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/board.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/board.c index 4abb10aac..82d8e3c64 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/board.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/board.c @@ -12,7 +12,7 @@ /** * @file board.c -* @brief support hc32f4a0-board init configure and start-up +* @brief support edu-arm32-board init configure and start-up * @version 2.0 * @author AIIT XUOS Lab * @date 2022-09-08 @@ -20,13 +20,13 @@ /************************************************* File name: board.c -Description: support hc32f4a0-board init configure and driver/task/... init +Description: support edu-arm32-board init configure and driver/task/... init Others: History: 1. Date: 2022-09-08 Author: AIIT XUOS Lab Modification: -1. support hc32f4a0-board InitBoardHardware +1. support edu-arm32-board InitBoardHardware *************************************************/ #include diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/board.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/board.h similarity index 83% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/board.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/board.h index 802b79aa0..83abadd0c 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/board.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/board.h @@ -12,7 +12,7 @@ /** * @file board.h -* @brief define hc32f4a0-board init configure and start-up function +* @brief define edu-arm32-board init configure and start-up function * @version 2.0 * @author AIIT XUOS Lab * @date 2022-09-08 @@ -20,14 +20,14 @@ /************************************************* File name: board.h -Description: define hc32f4a0-board board init function and struct +Description: define edu-arm32-board board init function and struct Others: History: 1. Date: 2021-04-25 Author: AIIT XUOS Lab Modification: -1. define hc32f4a0-board InitBoardHardware -2. define hc32f4a0-board data and bss struct +1. define edu-arm32-board InitBoardHardware +2. define edu-arm32-board data and bss struct *************************************************/ #ifndef BOARD_H diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/config.mk b/Ubiquitous/XiZi_IIoT/board/edu-arm32/config.mk similarity index 87% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/config.mk rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/config.mk index ef43289d2..cb757227c 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/config.mk +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/config.mk @@ -2,10 +2,10 @@ export CROSS_COMPILE ?=/usr/bin/arm-none-eabi- export CFLAGS := -mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -mfloat-abi=softfp -ffunction-sections -fdata-sections -Dgcc -O0 -gdwarf-2 -g -fgnu89-inline -Wa,-mimplicit-it=thumb -Werror export AFLAGS := -c -mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -mfloat-abi=softfp -ffunction-sections -fdata-sections -x assembler-with-cpp -Wa,-mimplicit-it=thumb -gdwarf-2 -export LFLAGS := -mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -mfloat-abi=softfp -ffunction-sections -fdata-sections -Wl,--gc-sections,-Map=XiZi_hc32f4a0.map,-cref,-u,Reset_Handler -T $(BSP_ROOT)/link.lds +export LFLAGS := -mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -mfloat-abi=softfp -ffunction-sections -fdata-sections -Wl,--gc-sections,-Map=XiZi-edu-arm32.map,-cref,-u,Reset_Handler -T $(BSP_ROOT)/link.lds export CXXFLAGS := -mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -mfloat-abi=softfp -ffunction-sections -fdata-sections -Dgcc -O0 -gdwarf-2 -g -Werror -export APPLFLAGS := -mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -mfloat-abi=softfp -ffunction-sections -fdata-sections -Wl,--gc-sections,-Map=XiZi_app.map,-cref,-u, -T $(BSP_ROOT)/link_userspace.lds +export APPLFLAGS := -mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -mfloat-abi=softfp -ffunction-sections -fdata-sections -Wl,--gc-sections,-Map=XiZi-edu-arm32.map,-cref,-u, -T $(BSP_ROOT)/link_userspace.lds export DEFINES := -DHAVE_CCONFIG_H -DHC32F4A0 -DUSE_DDL_DRIVER -DHAVE_SIGINFO diff --git a/Ubiquitous/XiZi_IIoT/board/edu-arm32/img/HDSC_ISP.png b/Ubiquitous/XiZi_IIoT/board/edu-arm32/img/HDSC_ISP.png new file mode 100644 index 000000000..059d331af Binary files /dev/null and b/Ubiquitous/XiZi_IIoT/board/edu-arm32/img/HDSC_ISP.png differ diff --git a/Ubiquitous/XiZi_IIoT/board/edu-arm32/img/menuconfig1.png b/Ubiquitous/XiZi_IIoT/board/edu-arm32/img/menuconfig1.png new file mode 100644 index 000000000..f4f5f1b26 Binary files /dev/null and b/Ubiquitous/XiZi_IIoT/board/edu-arm32/img/menuconfig1.png differ diff --git a/Ubiquitous/XiZi_IIoT/board/edu-arm32/img/menuconfig2.png b/Ubiquitous/XiZi_IIoT/board/edu-arm32/img/menuconfig2.png new file mode 100644 index 000000000..00b72372e Binary files /dev/null and b/Ubiquitous/XiZi_IIoT/board/edu-arm32/img/menuconfig2.png differ diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/img/terminal.png b/Ubiquitous/XiZi_IIoT/board/edu-arm32/img/terminal.png similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/img/terminal.png rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/img/terminal.png diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/include/hc32f4a0.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/include/hc32f4a0.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/include/hc32f4a0.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/include/hc32f4a0.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/include/system_hc32f4a0.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/include/system_hc32f4a0.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/include/system_hc32f4a0.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/include/system_hc32f4a0.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/link.lds b/Ubiquitous/XiZi_IIoT/board/edu-arm32/link.lds similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/link.lds rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/link.lds diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/CMSIS/include/cmsis_compiler.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/CMSIS/include/cmsis_compiler.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/CMSIS/include/cmsis_compiler.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/CMSIS/include/cmsis_compiler.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/CMSIS/include/cmsis_gcc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/CMSIS/include/cmsis_gcc.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/CMSIS/include/cmsis_gcc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/CMSIS/include/cmsis_gcc.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/CMSIS/include/cmsis_version.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/CMSIS/include/cmsis_version.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/CMSIS/include/cmsis_version.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/CMSIS/include/cmsis_version.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/CMSIS/include/core_cm4.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/CMSIS/include/core_cm4.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/CMSIS/include/core_cm4.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/CMSIS/include/core_cm4.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/CMSIS/include/mpu_armv7.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/CMSIS/include/mpu_armv7.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/CMSIS/include/mpu_armv7.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/CMSIS/include/mpu_armv7.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/Kconfig similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/Kconfig diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/adc/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/adc/Kconfig similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/adc/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/adc/Kconfig diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/adc/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/adc/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/adc/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/adc/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/adc/connect_adc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/adc/connect_adc.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/adc/connect_adc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/adc/connect_adc.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/can/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/can/Kconfig similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/can/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/can/Kconfig diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/can/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/can/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/can/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/can/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/can/connect_can.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/can/connect_can.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/can/connect_can.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/can/connect_can.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hardware_irq.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hardware_irq.c similarity index 96% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hardware_irq.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hardware_irq.c index 8fa5187a4..61f730f14 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hardware_irq.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hardware_irq.c @@ -11,7 +11,7 @@ /** * @file hardware_irq.c -* @brief support hc32f4a0-board irq configure +* @brief support edu-arm32-board irq configure * @version 2.0 * @author AIIT XUOS Lab * @date 2022-09-13 @@ -19,13 +19,13 @@ /************************************************* File name: hardware_irq.c -Description: support hc32f4a0-board irq configure +Description: support edu-arm32-board irq configure Others: History: 1. Date: 2022-09-13 Author: AIIT XUOS Lab Modification: -1. support hc32f4a0-board irq +1. support edu-arm32-board irq *************************************************/ /******************************************************************************* diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_adc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_adc.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_adc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_adc.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_aes.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_aes.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_aes.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_aes.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_aos.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_aos.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_aos.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_aos.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_can.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_can.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_can.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_can.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_clk.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_clk.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_clk.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_clk.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_cmp.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_cmp.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_cmp.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_cmp.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_crc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_crc.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_crc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_crc.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_ctc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_ctc.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_ctc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_ctc.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dac.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dac.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dac.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dac.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dcu.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dcu.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dcu.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dcu.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_def.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_def.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_def.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_def.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dma.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dma.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dma.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dma.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dmc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dmc.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dmc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dmc.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dvp.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dvp.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dvp.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_dvp.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_efm.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_efm.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_efm.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_efm.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_emb.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_emb.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_emb.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_emb.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_eth.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_eth.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_eth.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_eth.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_event_port.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_event_port.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_event_port.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_event_port.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_fcg.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_fcg.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_fcg.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_fcg.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_fcm.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_fcm.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_fcm.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_fcm.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_fmac.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_fmac.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_fmac.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_fmac.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_gpio.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_gpio.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_gpio.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_gpio.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_hash.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_hash.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_hash.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_hash.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_hrpwm.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_hrpwm.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_hrpwm.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_hrpwm.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_i2c.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_i2c.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_i2c.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_i2c.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_i2s.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_i2s.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_i2s.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_i2s.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_icg.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_icg.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_icg.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_icg.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_interrupts.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_interrupts.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_interrupts.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_interrupts.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_keyscan.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_keyscan.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_keyscan.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_keyscan.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_mau.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_mau.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_mau.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_mau.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_mpu.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_mpu.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_mpu.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_mpu.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_nfc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_nfc.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_nfc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_nfc.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_ots.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_ots.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_ots.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_ots.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_pwc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_pwc.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_pwc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_pwc.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_qspi.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_qspi.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_qspi.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_qspi.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_rmu.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_rmu.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_rmu.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_rmu.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_rtc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_rtc.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_rtc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_rtc.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_sdioc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_sdioc.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_sdioc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_sdioc.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_smc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_smc.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_smc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_smc.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_spi.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_spi.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_spi.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_spi.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_sram.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_sram.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_sram.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_sram.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_swdt.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_swdt.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_swdt.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_swdt.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr0.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr0.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr0.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr0.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr2.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr2.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr2.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr2.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr4.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr4.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr4.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr4.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr6.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr6.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr6.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmr6.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmra.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmra.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmra.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_tmra.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_trng.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_trng.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_trng.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_trng.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_usart.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_usart.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_usart.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_usart.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_usb.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_usb.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_usb.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_usb.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_utility.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_utility.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_utility.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_utility.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_wdt.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_wdt.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_wdt.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32_ll_wdt.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32f4a0_ll_interrupts_share.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32f4a0_ll_interrupts_share.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32f4a0_ll_interrupts_share.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32f4a0_ll_interrupts_share.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32f4xx.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32f4xx.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32f4xx.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32f4xx.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32f4xx_conf.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32f4xx_conf.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/inc/hc32f4xx_conf.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/inc/hc32f4xx_conf.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_adc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_adc.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_adc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_adc.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_aes.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_aes.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_aes.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_aes.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_aos.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_aos.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_aos.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_aos.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_can.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_can.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_can.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_can.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_clk.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_clk.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_clk.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_clk.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_cmp.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_cmp.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_cmp.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_cmp.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_crc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_crc.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_crc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_crc.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_ctc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_ctc.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_ctc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_ctc.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dac.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dac.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dac.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dac.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dcu.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dcu.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dcu.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dcu.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dma.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dma.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dma.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dma.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dmc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dmc.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dmc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dmc.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dvp.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dvp.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dvp.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_dvp.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_efm.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_efm.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_efm.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_efm.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_emb.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_emb.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_emb.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_emb.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_eth.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_eth.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_eth.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_eth.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_event_port.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_event_port.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_event_port.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_event_port.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_fcg.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_fcg.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_fcg.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_fcg.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_fcm.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_fcm.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_fcm.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_fcm.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_fmac.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_fmac.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_fmac.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_fmac.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_gpio.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_gpio.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_gpio.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_gpio.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_hash.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_hash.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_hash.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_hash.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_hrpwm.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_hrpwm.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_hrpwm.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_hrpwm.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_i2c.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_i2c.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_i2c.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_i2c.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_i2s.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_i2s.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_i2s.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_i2s.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_icg.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_icg.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_icg.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_icg.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_interrupts.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_interrupts.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_interrupts.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_interrupts.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_keyscan.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_keyscan.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_keyscan.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_keyscan.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_mau.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_mau.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_mau.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_mau.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_mpu.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_mpu.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_mpu.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_mpu.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_nfc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_nfc.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_nfc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_nfc.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_ots.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_ots.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_ots.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_ots.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_pwc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_pwc.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_pwc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_pwc.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_qspi.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_qspi.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_qspi.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_qspi.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_rmu.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_rmu.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_rmu.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_rmu.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_rtc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_rtc.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_rtc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_rtc.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_sdioc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_sdioc.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_sdioc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_sdioc.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_smc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_smc.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_smc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_smc.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_spi.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_spi.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_spi.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_spi.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_sram.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_sram.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_sram.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_sram.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_swdt.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_swdt.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_swdt.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_swdt.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr0.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr0.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr0.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr0.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr2.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr2.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr2.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr2.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr4.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr4.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr4.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr4.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr6.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr6.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr6.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmr6.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmra.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmra.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmra.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_tmra.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_trng.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_trng.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_trng.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_trng.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_usart.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_usart.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_usart.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_usart.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_usb.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_usb.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_usb.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_usb.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_utility.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_utility.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_utility.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_utility.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_wdt.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_wdt.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32_ll_wdt.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32_ll_wdt.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32f4a0_ll_interrupts_share.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32f4a0_ll_interrupts_share.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/hc32_ll_driver/src/hc32f4a0_ll_interrupts_share.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/hc32_ll_driver/src/hc32f4a0_ll_interrupts_share.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/system_hc32f4a0.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/system_hc32f4a0.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/common/system_hc32f4a0.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/common/system_hc32f4a0.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/dac/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/dac/Kconfig similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/dac/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/dac/Kconfig diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/dac/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/dac/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/dac/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/dac/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/dac/connect_dac.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/dac/connect_dac.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/dac/connect_dac.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/dac/connect_dac.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/ethernet/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/ethernet/Kconfig similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/ethernet/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/ethernet/Kconfig diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/ethernet/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/ethernet/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/ethernet/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/ethernet/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/ethernet/eth_driver.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/ethernet/eth_driver.c similarity index 99% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/ethernet/eth_driver.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/ethernet/eth_driver.c index ea8cf81c3..69a76fa0a 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/ethernet/eth_driver.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/ethernet/eth_driver.c @@ -1,6 +1,6 @@ /** * @file ethernetif.c -* @brief support hc32f4a0-board ethernetif function and register to Lwip +* @brief support edu-arm32-board ethernetif function and register to Lwip * @version 3.0 * @author AIIT XUOS Lab * @date 2022-12-05 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/ethernet/ethernetif.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/ethernet/ethernetif.c similarity index 96% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/ethernet/ethernetif.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/ethernet/ethernetif.c index c5d8fc1dd..1e50cdfab 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/ethernet/ethernetif.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/ethernet/ethernetif.c @@ -20,7 +20,7 @@ /** * @file ethernetif.c -* @brief support hc32f4a0-board ethernetif function and register to Lwip +* @brief support edu-arm32-board ethernetif function and register to Lwip * @version 3.0 * @author AIIT XUOS Lab * @date 2022-12-05 @@ -28,7 +28,7 @@ /************************************************* File name: ethernetif.c -Description: support hc32f4a0-board ethernetif configure and register to Lwip +Description: support edu-arm32-board ethernetif configure and register to Lwip Others: take projects\ev_hc32f4a0_lqfp176\examples\eth\eth_loopback\source\ethernetif.c for references History: 1. Date: 2022-12-05 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/gpio/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/gpio/Kconfig similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/gpio/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/gpio/Kconfig diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/gpio/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/gpio/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/gpio/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/gpio/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/gpio/connect_gpio.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/gpio/connect_gpio.c similarity index 98% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/gpio/connect_gpio.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/gpio/connect_gpio.c index d22f24925..b2a76c7f1 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/gpio/connect_gpio.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/gpio/connect_gpio.c @@ -13,7 +13,7 @@ /** * @file connect_gpio.c -* @brief support hc32f4a0-board gpio function using bus driver framework +* @brief support edu-arm32-board gpio function using bus driver framework * @version 3.0 * @author AIIT XUOS Lab * @date 2022-12-05 @@ -21,14 +21,14 @@ /************************************************* File name: connect_gpio.c -Description: support hc32f4a0-board gpio configure and gpio bus register function +Description: support edu-arm32-board gpio configure and gpio bus register function Others: take projects/ev_hc32f4a0_lqfp176/examples/gpio/gpio_output/source/main.c for references History: 1. Date: 2022-12-05 Author: AIIT XUOS Lab Modification: -1. support hc32f4a0-board gpio configure, write and read -2. support hc32f4a0-board gpio bus device and driver register +1. support edu-arm32-board gpio configure, write and read +2. support edu-arm32-board gpio bus device and driver register *************************************************/ #include diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/i2c/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/i2c/Kconfig similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/i2c/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/i2c/Kconfig diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/i2c/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/i2c/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/i2c/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/i2c/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/i2c/connect_i2c.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/i2c/connect_i2c.c similarity index 97% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/i2c/connect_i2c.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/i2c/connect_i2c.c index 4285425f4..d59f7b98b 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/i2c/connect_i2c.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/i2c/connect_i2c.c @@ -12,7 +12,7 @@ /** * @file connect_i2c.c -* @brief support hc32f4a0-board i2c function and register to bus framework +* @brief support edu-arm32-board i2c function and register to bus framework * @version 3.0 * @author AIIT XUOS Lab * @date 2022-12-05 @@ -20,14 +20,14 @@ /************************************************* File name: connect_i2c.c -Description: support hc32f4a0-board i2c configure and i2c bus register function +Description: support edu-arm32-board i2c configure and i2c bus register function Others: take projects/ev_hc32f4a0_lqfp176/examples/i2c/i2c_master_polling/source/main.c for references History: 1. Date: 2022-12-05 Author: AIIT XUOS Lab Modification: -1. support hc32f4a0-board i2c configure, write and read -2. support hc32f4a0-board i2c bus device and driver register +1. support edu-arm32-board i2c configure, write and read +2. support edu-arm32-board i2c bus device and driver register *************************************************/ #include @@ -304,7 +304,7 @@ static int BoardI2cDevBend(void) return ret; } -/* HC32F4A0 BOARD I2C INIT*/ +/* EDU-ARM32 BOARD I2C INIT*/ int HwI2cInit(void) { x_err_t ret = EOK; diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_adc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_adc.h similarity index 93% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_adc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_adc.h index abadd5410..d961b5611 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_adc.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_adc.h @@ -12,7 +12,7 @@ /** * @file connect_uart.h -* @brief define hc32f4a0-board usart function and struct +* @brief define edu-arm32-board usart function and struct * @version 2.0 * @author AIIT XUOS Lab * @date 2023-02-09 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_can.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_can.h similarity index 93% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_can.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_can.h index 0982db925..2a7369c42 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_can.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_can.h @@ -12,7 +12,7 @@ /** * @file connect_can.h -* @brief define hc32f4a0-board can function and struct +* @brief define edu-arm32-board can function and struct * @version 2.0 * @author AIIT XUOS Lab * @date 2023-02-21 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_dac.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_dac.h similarity index 94% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_dac.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_dac.h index 201dec23f..1108fcfdb 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_dac.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_dac.h @@ -12,7 +12,7 @@ /** * @file connect_uart.h -* @brief define hc32f4a0-board usart function and struct +* @brief define edu-arm32-board usart function and struct * @version 2.0 * @author AIIT XUOS Lab * @date 2023-02-09 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_ethernet.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_ethernet.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_ethernet.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_ethernet.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_flash.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_flash.h similarity index 93% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_flash.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_flash.h index 1f2962665..63d59eb16 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_flash.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_flash.h @@ -12,7 +12,7 @@ /** * @file connect_flash.h -* @brief define hc32f4a0-board qspi-flash function and struct +* @brief define edu-arm32-board qspi-flash function and struct * @version 2.0 * @author AIIT XUOS Lab * @date 2022-10-17 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_gpio.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_gpio.h similarity index 99% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_gpio.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_gpio.h index b6f27b1ce..1ef238671 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_gpio.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_gpio.h @@ -12,7 +12,7 @@ /** * @file connect_gpio.h -* @brief define hc32f4a0-board gpio function and struct +* @brief define edu-arm32-board gpio function and struct * @version 3.0 * @author AIIT XUOS Lab * @date 2022-12-05 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_hwtimer.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_hwtimer.h similarity index 93% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_hwtimer.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_hwtimer.h index d988c73ba..0ec541003 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_hwtimer.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_hwtimer.h @@ -12,7 +12,7 @@ /** * @file connect_hwtimer.h -* @brief define hc32f4a0-board hwtimer function and struct +* @brief define edu-arm32-board hwtimer function and struct * @version 2.0 * @author AIIT XUOS Lab * @date 2023-02-16 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_i2c.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_i2c.h similarity index 94% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_i2c.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_i2c.h index 2da6b2683..3b0ab7c45 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_i2c.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_i2c.h @@ -12,7 +12,7 @@ /** * @file connect_i2c.h -* @brief define hc32f4a0-board i2c function and struct +* @brief define edu-arm32-board i2c function and struct * @version 3.0 * @author AIIT XUOS Lab * @date 2022-12-05 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_rtc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_rtc.h similarity index 88% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_rtc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_rtc.h index 54d684929..fc0512bd8 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_rtc.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_rtc.h @@ -12,14 +12,14 @@ /** * @file connect_rtc.h -* @brief define hc32f4a0-board rtc function and struct +* @brief define edu-arm32-board rtc function and struct * @version 3.0 * @author AIIT XUOS Lab * @date 2023-02-02 */ -#ifndef CONNECT_I2C_H -#define CONNECT_I2C_H +#ifndef CONNECT_RTC_H +#define CONNECT_RTC_H #include #include diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_sdio.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_sdio.h similarity index 94% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_sdio.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_sdio.h index 38c72db94..bee72d44a 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_sdio.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_sdio.h @@ -12,7 +12,7 @@ /** * @file connect_sdio.h -* @brief define hc32f4a0-board sdio function and struct +* @brief define edu-arm32-board sdio function and struct * @version 2.0 * @author AIIT XUOS Lab * @date 2022-03-15 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_spi.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_spi.h similarity index 93% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_spi.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_spi.h index 08489b93b..63d64b127 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_spi.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_spi.h @@ -12,7 +12,7 @@ /** * @file connect_spi.h -* @brief define hc32f4a0-board spi function and struct +* @brief define edu-arm32-board spi function and struct * @version 2.0 * @author AIIT XUOS Lab * @date 2022-10-17 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_spi_lora.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_spi_lora.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_spi_lora.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_spi_lora.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_usart.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_usart.h similarity index 84% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_usart.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_usart.h index d2edcf29c..3def9ee43 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_usart.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_usart.h @@ -12,7 +12,7 @@ /** * @file connect_uart.h -* @brief define hc32f4a0-board usart function and struct +* @brief define edu-arm32-board usart function and struct * @version 2.0 * @author AIIT XUOS Lab * @date 2022-09-13 @@ -49,9 +49,9 @@ struct UsartHwCfg #define FCG_TMR0_CLK FCG_Fcg2PeriphClockCmd #define FCG_DMA_CLK FCG_Fcg0PeriphClockCmd -#define KERNEL_CONSOLE_BUS_NAME SERIAL_BUS_NAME_6 -#define KERNEL_CONSOLE_DRV_NAME SERIAL_DRV_NAME_6 -#define KERNEL_CONSOLE_DEVICE_NAME SERIAL_6_DEVICE_NAME_0 +#define KERNEL_CONSOLE_BUS_NAME SERIAL_BUS_NAME_3 +#define KERNEL_CONSOLE_DRV_NAME SERIAL_DRV_NAME_3 +#define KERNEL_CONSOLE_DEVICE_NAME SERIAL_3_DEVICE_NAME_0 int HwUsartInit(void); diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_usb.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_usb.h similarity index 95% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_usb.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_usb.h index 71c58a043..2d17a181f 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_usb.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_usb.h @@ -12,7 +12,7 @@ /** * @file connect_usb.h -* @brief define hc32f4a0-board usb function and struct +* @brief define edu-arm32-board usb function and struct * @version 2.0 * @author AIIT XUOS Lab * @date 2022-11-07 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_wdt.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_wdt.h similarity index 87% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_wdt.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_wdt.h index 8c7c8499d..c0c7b3cd6 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/connect_wdt.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/connect_wdt.h @@ -12,14 +12,14 @@ /** * @file connect_wdt.h -* @brief define hc32f4a0-board watchdog function and struct +* @brief define edu-arm32-board watchdog function and struct * @version 3.0 * @author AIIT XUOS Lab * @date 2023-02-02 */ -#ifndef CONNECT_I2C_H -#define CONNECT_I2C_H +#ifndef CONNECT_WDT_H +#define CONNECT_WDT_H #include #include diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/hardware_ethernetif.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/hardware_ethernetif.h similarity index 99% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/hardware_ethernetif.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/hardware_ethernetif.h index a366fd075..95a7a52e4 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/hardware_ethernetif.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/hardware_ethernetif.h @@ -20,7 +20,7 @@ /** * @file hardware_ethernetif.h -* @brief define hc32f4a0-board ethernetif function and struct +* @brief define edu-arm32-board ethernetif function and struct * @version 3.0 * @author AIIT XUOS Lab * @date 2022-12-05 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/hardware_irq.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/hardware_irq.h similarity index 99% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/hardware_irq.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/hardware_irq.h index 2df7cb669..6da7e9084 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/hardware_irq.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/hardware_irq.h @@ -11,7 +11,7 @@ /** * @file hardware_irq.h -* @brief define hc32f4a0-board irq function and struct +* @brief define edu-arm32-board irq function and struct * @version 2.0 * @author AIIT XUOS Lab * @date 2022-09-13 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/hardware_sdio.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/hardware_sdio.h similarity index 97% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/hardware_sdio.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/hardware_sdio.h index a94380164..c98833550 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/include/hardware_sdio.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/include/hardware_sdio.h @@ -21,7 +21,7 @@ /** * @file hardware_sdio.h -* @brief define hc32f4a0-board sdio function and struct +* @brief define edu-arm32-board sdio function and struct * @version 2.0 * @author AIIT XUOS Lab * @date 2022-10-18 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/rtc/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/rtc/Kconfig similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/rtc/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/rtc/Kconfig diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/rtc/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/rtc/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/rtc/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/rtc/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/rtc/connect_rtc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/rtc/connect_rtc.c similarity index 98% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/rtc/connect_rtc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/rtc/connect_rtc.c index a5bedccfa..14b7b2378 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/rtc/connect_rtc.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/rtc/connect_rtc.c @@ -12,7 +12,7 @@ /** * @file connect_rtc.c -* @brief support aiit-hc32f4a0-board rtc function and register to bus framework +* @brief support aiit-edu-arm32-board rtc function and register to bus framework * @version 1.0 * @author AIIT XUOS Lab * @date 2023-02-02 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/sdio/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/sdio/Kconfig similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/sdio/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/sdio/Kconfig diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/sdio/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/sdio/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/sdio/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/sdio/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/sdio/connect_sdio.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/sdio/connect_sdio.c similarity index 97% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/sdio/connect_sdio.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/sdio/connect_sdio.c index 32ae8ac8d..ead99a2ac 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/sdio/connect_sdio.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/sdio/connect_sdio.c @@ -28,14 +28,14 @@ /************************************************* File name: connect_sdio.c -Description: support hc32f4a0-board sd card configure and sdio bus register function +Description: support edu-arm32-board sd card configure and sdio bus register function Others: History: 1. Date: 2022-01-24 Author: AIIT XUOS Lab Modification: -1. support hc32f4a0-board sdio configure, write and read -2. support hc32f4a0-board sdio bus device and driver register +1. support edu-arm32-board sdio configure, write and read +2. support edu-arm32-board sdio bus device and driver register *************************************************/ #include diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/sdio/hardware_sdio.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/sdio/hardware_sdio.c similarity index 97% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/sdio/hardware_sdio.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/sdio/hardware_sdio.c index b56d151fb..fcf28c185 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/sdio/hardware_sdio.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/sdio/hardware_sdio.c @@ -28,7 +28,7 @@ /************************************************* File name: hardware_sdio.c -Description: support hc32f4a0-board sd card configure +Description: support edu-arm32-board sd card configure Others: History: 1. Date: 2022-10-18 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/Kconfig similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/Kconfig diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/connect_flash.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/connect_flash.c similarity index 98% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/connect_flash.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/connect_flash.c index 89438cc21..27fe601ef 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/connect_flash.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/connect_flash.c @@ -12,7 +12,7 @@ /** * @file connect_flash.c -* @brief support hc32f4a0-board qspi-flash function and register to bus framework +* @brief support edu-arm32-board qspi-flash function and register to bus framework * @version 2.0 * @author AIIT XUOS Lab * @date 2023-02-16 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/connect_lora_spi.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/connect_lora_spi.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/connect_lora_spi.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/connect_lora_spi.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/connect_spi.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/connect_spi.c similarity index 98% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/connect_spi.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/connect_spi.c index 6a7d8620c..24dc5e8ef 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/connect_spi.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/connect_spi.c @@ -12,7 +12,7 @@ /** * @file connect_spi.c -* @brief support hc32f4a0-board spi function and register to bus framework +* @brief support edu-arm32-board spi function and register to bus framework * @version 2.0 * @author AIIT XUOS Lab * @date 2022-10-17 @@ -20,14 +20,14 @@ /************************************************* File name: connect_spi.c -Description: support hc32f4a0-board spi function and register to bus framework +Description: support edu-arm32-board spi function and register to bus framework Others: History: 1. Date: 2022-10-17 Author: AIIT XUOS Lab Modification: -1. support hc32f4a0-board spi configure, write and read -2. support hc32f4a0-board spi bus device and driver register +1. support edu-arm32-board spi configure, write and read +2. support edu-arm32-board spi bus device and driver register 3. SPI1 for LoRa, SPI6 using J12-pin-header to connect *************************************************/ diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/inc/spi_lora_sx12xx.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/inc/spi_lora_sx12xx.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/inc/spi_lora_sx12xx.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/inc/spi_lora_sx12xx.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/platform.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/platform.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/platform.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/platform.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/radio.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/radio.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/radio.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/radio.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/radio.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/radio.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/radio.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/radio.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Fsk.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Fsk.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Fsk.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Fsk.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Fsk.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Fsk.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Fsk.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Fsk.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-FskMisc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-FskMisc.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-FskMisc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-FskMisc.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-FskMisc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-FskMisc.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-FskMisc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-FskMisc.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Hal.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Hal.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Hal.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Hal.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRa.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRa.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRa.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRa.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRa.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRa.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRa.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRa.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRaMisc.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRaMisc.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRaMisc.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRaMisc.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRaMisc.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRaMisc.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRaMisc.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRaMisc.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/timer/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/timer/Kconfig similarity index 72% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/timer/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/timer/Kconfig index 62af5e3e9..2ec110cac 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/timer/Kconfig +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/timer/Kconfig @@ -1,9 +1,9 @@ -menuconfig BSP_USING_TIMER_0 -bool "Using timer 0" -default n -select RESOURCES_HWTIMER +menuconfig BSP_USING_HWTIMER + bool "Using hwtimer" + default y + select RESOURCES_HWTIMER -if BSP_USING_TIMER_0 +if BSP_USING_HWTIMER config HWTIMER_BUS_NAME_0 string "timer 0 bus 0 name" default "timer0" diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/timer/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/timer/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/timer/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/timer/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/timer/connect_hwtimer.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/timer/connect_hwtimer.c similarity index 96% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/timer/connect_hwtimer.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/timer/connect_hwtimer.c index 37ad87ec6..dec5de52e 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/timer/connect_hwtimer.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/timer/connect_hwtimer.c @@ -12,7 +12,7 @@ /** * @file connect_hwtimer.c -* @brief support aiit-riscv64-board hwtimer function and register to bus framework +* @brief support edu-arm32-board hwtimer function and register to bus framework * @version 1.0 * @author AIIT XUOS Lab * @date 2021-04-25 @@ -23,8 +23,8 @@ #define TMR0_CMP_VAL 1000 #define TMR0x ((CM_TMR0_TypeDef *)CM_TMR0_1_BASE) #define TMR0_CH_x (TMR0_CH_A) -#define INTSEL_REG ((uint32_t)(&CM_INTC->SEL0)) -#define TIMER0_IRQn (18) +#define INTSEL_REG ((uint32_t)(&CM_INTC->SEL0)) +#define TIMER0_IRQn (18) void (*callback_function)(void *) ; @@ -163,7 +163,7 @@ static int BoardHwtimerDevBend(void) return ret; } -/*HC32F4A0 BOARD HWTIMER INIT*/ +/*EDU-ARM32 BOARD HWTIMER INIT*/ int HwTimerInit(void) { x_err_t ret = EOK; diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usart/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usart/Kconfig similarity index 98% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usart/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usart/Kconfig index 4427fdf3a..7f51f8e7b 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usart/Kconfig +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usart/Kconfig @@ -15,7 +15,7 @@ menuconfig BSP_USING_UART3 menuconfig BSP_USING_UART6 bool "Enable USART6" - default y + default n if BSP_USING_UART6 config SERIAL_BUS_NAME_6 string "serial bus 6 name" diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usart/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usart/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usart/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usart/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usart/connect_usart.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usart/connect_usart.c similarity index 98% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usart/connect_usart.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usart/connect_usart.c index 6552514ec..47a9ca68a 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usart/connect_usart.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usart/connect_usart.c @@ -21,7 +21,7 @@ /** * @file connect_usart.c -* @brief support hc32f4a0-board usart function and register to bus framework +* @brief support edu-arm32-board usart function and register to bus framework * @version 2.0 * @author AIIT XUOS Lab * @date 2022-09-13 @@ -29,14 +29,14 @@ /************************************************* File name: connect_usart.c -Description: support hc32f4a0-board usart configure and usart bus register function +Description: support edu-arm32-board usart configure and usart bus register function Others: take projects\ev_hc32f4a0_lqfp176\examples\usart\usart_uart_int\source\main.c for references History: 1. Date: 2022-09-13 Author: AIIT XUOS Lab Modification: -1. support hc32f4a0-board usart configure, write and read -2. support hc32f4a0-board usart bus device and driver register +1. support edu-arm32-board usart configure, write and read +2. support edu-arm32-board usart bus device and driver register *************************************************/ #include diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/Kconfig similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/Kconfig diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/connect_usb.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/connect_usb.c similarity index 95% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/connect_usb.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/connect_usb.c index 3c1853b10..e92d7a338 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/connect_usb.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/connect_usb.c @@ -12,7 +12,7 @@ /** * @file connect_usb.c -* @brief support hc32f4a0-board usb function and register to bus framework +* @brief support edu-arm32-board usb function and register to bus framework * @version 2.0 * @author AIIT XUOS Lab * @date 2022-11-07 @@ -20,14 +20,14 @@ /************************************************* File name: connect_usb.c -Description: support hc32f4a0-board usb function and register to bus framework +Description: support edu-arm32-board usb function and register to bus framework Others: History: 1. Date: 2022-11-07 Author: AIIT XUOS Lab Modification: -1. support hc32f4a0-board usb configure, write and read -2. support hc32f4a0-board usb bus device and driver register +1. support edu-arm32-board usb configure, write and read +2. support edu-arm32-board usb bus device and driver register *************************************************/ #include diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_app_conf.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_app_conf.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_app_conf.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_app_conf.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_bsp.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_bsp.c similarity index 95% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_bsp.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_bsp.c index 7e4f4c981..9f15e24e9 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_bsp.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_bsp.c @@ -20,7 +20,7 @@ /** * @file usb_bsp.c -* @brief support hc32f4a0-board usb bsp function +* @brief support edu-arm32-board usb bsp function * @version 2.0 * @author AIIT XUOS Lab * @date 2022-11-08 @@ -28,14 +28,14 @@ /************************************************* File name: usb_bsp.c -Description: support hc32f4a0-board usb bsp function +Description: support edu-arm32-board usb bsp function Others: History: 1. Date: 2022-11-08 Author: AIIT XUOS Lab Modification: -1. support hc32f4a0-board usb IO configure -2. support hc32f4a0-board usb irq define +1. support edu-arm32-board usb IO configure +2. support edu-arm32-board usb irq define *************************************************/ #include #include "usb_bsp.h" diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_bsp.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_bsp.h similarity index 96% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_bsp.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_bsp.h index d09cd20a3..794ad0551 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_bsp.h +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_bsp.h @@ -20,7 +20,7 @@ /** * @file usb_bsp.h -* @brief support hc32f4a0-board usb bsp function +* @brief support edu-arm32-board usb bsp function * @version 2.0 * @author AIIT XUOS Lab * @date 2022-11-08 @@ -28,7 +28,7 @@ /************************************************* File name: usb_bsp.h -Description: support hc32f4a0-board usb bsp function +Description: support edu-arm32-board usb bsp function Others: History: 1. Date: 2022-11-08 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_bot.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_bot.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_bot.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_bot.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_bot.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_bot.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_bot.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_bot.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_class.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_class.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_class.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_class.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_class.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_class.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_class.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_class.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_fatfs.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_fatfs.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_fatfs.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_fatfs.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_scsi.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_scsi.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_scsi.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_scsi.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_scsi.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_scsi.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_scsi.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_class/msc/usb_host_msc_scsi.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_cfgch.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_cfgch.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_cfgch.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_cfgch.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_cfgch.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_cfgch.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_cfgch.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_cfgch.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_core.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_core.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_core.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_core.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_core.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_core.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_core.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_core.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_ctrltrans.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_ctrltrans.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_ctrltrans.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_ctrltrans.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_ctrltrans.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_ctrltrans.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_ctrltrans.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_ctrltrans.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_def.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_def.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_def.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_def.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_driver.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_driver.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_driver.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_driver.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_driver.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_driver.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_driver.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_driver.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_int.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_int.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_int.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_int.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_int.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_int.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_int.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_int.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_stdreq.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_stdreq.c similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_stdreq.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_stdreq.c diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_stdreq.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_stdreq.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_stdreq.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/host_core/usb_host_stdreq.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/usb_lib.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/usb_lib.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_lib/usb_lib.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_lib/usb_lib.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_user.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_user.c similarity index 95% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_user.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_user.c index d3ceadb1f..244559d5e 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_user.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_user.c @@ -20,7 +20,7 @@ /** * @file usb_host_user.c -* @brief support hc32f4a0-board usb function +* @brief support edu-arm32-board usb function * @version 2.0 * @author AIIT XUOS Lab * @date 2022-11-07 @@ -28,7 +28,7 @@ /************************************************* File name: usb_host_user.c -Description: support hc32f4a0-board usb function +Description: support edu-arm32-board usb function Others: History: 1. Date: 2022-11-07 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_user.h b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_user.h similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/usb/hc32_usb_driver/usb_host_user.h rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/usb/hc32_usb_driver/usb_host_user.h diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/watchdog/Kconfig b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/watchdog/Kconfig similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/watchdog/Kconfig rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/watchdog/Kconfig diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/watchdog/Makefile b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/watchdog/Makefile similarity index 100% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/watchdog/Makefile rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/watchdog/Makefile diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/watchdog/connect_wdt.c b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/watchdog/connect_wdt.c similarity index 97% rename from Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/watchdog/connect_wdt.c rename to Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/watchdog/connect_wdt.c index d0271264d..afb8d68d7 100644 --- a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/third_party_driver/watchdog/connect_wdt.c +++ b/Ubiquitous/XiZi_IIoT/board/edu-arm32/third_party_driver/watchdog/connect_wdt.c @@ -12,7 +12,7 @@ /** * @file connect_wdt.c -* @brief support hc32f4a0-board watchdog function and register to bus framework +* @brief support edu-arm32-board watchdog function and register to bus framework * @version 1.0 * @author AIIT XUOS Lab * @date 2023-02-02 diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/img/HDSC_ISP.png b/Ubiquitous/XiZi_IIoT/board/hc32f4a0/img/HDSC_ISP.png deleted file mode 100644 index e79dff29d..000000000 Binary files a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/img/HDSC_ISP.png and /dev/null differ diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/img/menuconfig1.png b/Ubiquitous/XiZi_IIoT/board/hc32f4a0/img/menuconfig1.png deleted file mode 100644 index 3aed06191..000000000 Binary files a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/img/menuconfig1.png and /dev/null differ diff --git a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/img/menuconfig2.png b/Ubiquitous/XiZi_IIoT/board/hc32f4a0/img/menuconfig2.png deleted file mode 100644 index 8bfe533ee..000000000 Binary files a/Ubiquitous/XiZi_IIoT/board/hc32f4a0/img/menuconfig2.png and /dev/null differ diff --git a/Ubiquitous/XiZi_IIoT/path_kernel.mk b/Ubiquitous/XiZi_IIoT/path_kernel.mk index d97b59204..df84837ca 100755 --- a/Ubiquitous/XiZi_IIoT/path_kernel.mk +++ b/Ubiquitous/XiZi_IIoT/path_kernel.mk @@ -391,7 +391,7 @@ KERNELPATHS += \ -I$(BSP_ROOT)/include # endif -ifeq ($(BSP_ROOT),$(KERNEL_ROOT)/board/hc32f4a0) +ifeq ($(BSP_ROOT),$(KERNEL_ROOT)/board/edu-arm32) KERNELPATHS += \ -I$(KERNEL_ROOT)/arch/arm/cortex-m4/hc32f4a0 \ -I$(KERNEL_ROOT)/arch/arm/cortex-m4 \