diff --git a/.gitee/PULL_REQUEST_TEMPLATE.en.md b/.gitee/PULL_REQUEST_TEMPLATE.en.md index 7696cf07853..3fc593d914d 100644 --- a/.gitee/PULL_REQUEST_TEMPLATE.en.md +++ b/.gitee/PULL_REQUEST_TEMPLATE.en.md @@ -27,4 +27,4 @@ As part of this pull request, I've considered the following: - [ ] All modifications to BSP are justified and do not affect other components or BSPs. - [ ] I've commented appropriately where code is tricky. - [ ] Code in this PR is of high quality. -- [ ] This PR complies with [RT-Thread code specification](https://gitee.com/rtthread/rt-thread/blob/master/documentation/contribution_guide/coding_style_en.md) +- [ ] This PR complies with [RT-Thread code specification](https://gitee.com/rtthread/rt-thread/blob/master/documentation/7.contribution/coding_style_en.md) diff --git a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md index 69bf3c2eb88..3e7807d5c40 100644 --- a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md +++ b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md @@ -27,4 +27,4 @@ - [ ] 所有变更均有原因及合理的,并且不会影响到其他软件组件代码或 - [ ] 对难懂代码均提供对应的注释 - [ ] 本拉取/合并请求代码是高质量的 -- [ ] 本拉取/合并符合[RT-Thread代码规范](https://gitee.com/rtthread/rt-thread/blob/master/documentation/contribution_guide/coding_style_cn.md) +- [ ] 本拉取/合并符合[RT-Thread代码规范](https://gitee.com/rtthread/rt-thread/blob/master/documentation/7.contribution/coding_style_cn.md) diff --git a/.github/workflows/bsp_buildings.yml b/.github/workflows/bsp_buildings.yml index a6e0afa0dc3..35592a75df1 100644 --- a/.github/workflows/bsp_buildings.yml +++ b/.github/workflows/bsp_buildings.yml @@ -49,26 +49,9 @@ jobs: RTT_TOOL_CHAIN: "sourcery-arm" SUB_RTT_BSP: - "raspberry-pico" - - RTT_BSP: "others_at32_hc32_ht32" + - RTT_BSP: "at32_hc32_ht32" RTT_TOOL_CHAIN: "sourcery-arm" - SUB_RTT_BSP: - - "qemu-vexpress-a9" - - "airm2m/air32f103" - - "acm32/acm32f0x0-nucleo" - - "CME_M7" - - "apollo2" - - "asm9260t" - - "allwinner_tina" - - "ft32/ft32f072xb-starter" - - "mini2440" - - "at91/at91sam9g45" - - "at91/at91sam9260" - - "wch/arm/ch32f103c8-core" - - "wch/arm/ch32f203r-evt" - - "synwit/swm320-mini" - - "synwit/swm341-mini" - - "beaglebone" - - "zynqmp-r5-axu4ev" + SUB_RTT_BSP: - "at32/at32a403a-start" - "at32/at32a423-start" - "at32/at32f402-start" @@ -87,30 +70,50 @@ jobs: - "at32/at32f457-start" - "at32/at32m412-start" - "at32/at32m416-start" - - "yichip/yc3122-pos" - "hc32/ev_hc32f4a0_lqfp176" - "hc32/ev_hc32f448_lqfp80" - "hc32/ev_hc32f460_lqfp100_v2" - "hc32/ev_hc32f472_lqfp100" - "hc32/lckfb-hc32f4a0-lqfp100" - "hc32l196" + - "hc32l136" + - "ht32/ht32f52352" + - "ht32/ht32f12366" + - "ht32/ht32f53252" + - RTT_BSP: "others_ft32_mm32_acm32" + RTT_TOOL_CHAIN: "sourcery-arm" + SUB_RTT_BSP: + - "qemu-vexpress-a9" + - "airm2m/air32f103" + - "acm32/acm32f0x0-nucleo" + - "acm32/acm32f0x0-nucleo" + - "acm32/acm32f4xx-nucleo" + - "CME_M7" + - "apollo2" + - "asm9260t" + - "allwinner_tina" + - "ft32/ft32f072xb-starter" + - "mini2440" + - "at91/at91sam9g45" + - "at91/at91sam9260" + - "wch/arm/ch32f103c8-core" + - "wch/arm/ch32f203r-evt" + - "synwit/swm320-mini" + - "synwit/swm341-mini" + - "beaglebone" + - "zynqmp-r5-axu4ev" + - "yichip/yc3122-pos" + - "yichip/yc3121-pos" - "mm32/mm32f3270-100ask-pitaya" - "mm32f327x" - "mm32f526x" - "mm32l07x" - "sam7x" - "hk32/hk32f030c8-mini" - - "acm32/acm32f0x0-nucleo" - - "acm32/acm32f4xx-nucleo" - "rm48x50" - - "ht32/ht32f52352" - - "ht32/ht32f12366" - - "ht32/ht32f53252" - "w60x" - "essemi/es32f0654" - "essemi/es32f365x" - - "hc32l136" - - "yichip/yc3121-pos" - "fm33lc026" - RTT_BSP: "stm32l4" RTT_TOOL_CHAIN: "sourcery-arm" @@ -424,12 +427,25 @@ jobs: echo "RTT_CC=gcc" >> $GITHUB_ENV echo "export PATH=~/.env/tools/scripts:$PATH" > ~/.env/env.sh - - name: Install Arm ToolChains - if: ${{ matrix.legs.RTT_TOOL_CHAIN == 'sourcery-arm' && success() }} + - name: Cache GCC Arm Toolchain + if: ${{ matrix.legs.RTT_TOOL_CHAIN == 'sourcery-arm'}} + id: cache-gcc-arm + uses: actions/cache@main + with: + path: /opt/gcc-arm-none-eabi-10-2020-q4-major + key: ${{ runner.os }}-arm-none-eabi-10-2020-q4-major + + - name: Download Arm ToolChains + if: ${{ matrix.legs.RTT_TOOL_CHAIN == 'sourcery-arm' && (steps.cache-gcc-arm.outputs.cache-hit != 'true') }} shell: bash run: | wget -q https://github.com/RT-Thread/toolchains-ci/releases/download/v1.3/gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2 sudo tar xjf gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2 -C /opt + + - name: Install Arm ToolChains2 + if: ${{ matrix.legs.RTT_TOOL_CHAIN == 'sourcery-arm'}} + shell: bash + run: | /opt/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc --version echo "RTT_EXEC_PATH=/opt/gcc-arm-none-eabi-10-2020-q4-major/bin" >> $GITHUB_ENV diff --git a/.github/workflows/compile_bsp_with_drivers.yml b/.github/workflows/compile_bsp_with_drivers.yml index 38287ec560d..ab40acecced 100644 --- a/.github/workflows/compile_bsp_with_drivers.yml +++ b/.github/workflows/compile_bsp_with_drivers.yml @@ -13,20 +13,7 @@ name: BSP compilation with more drivers # Controls when the action will run. Triggers the workflow on push or pull request # events but only for the master branch on: - push: - branches: - - master - paths-ignore: - - documentation/** - - '**/README.md' - - '**/README_zh.md' - pull_request: - branches: - - master - paths-ignore: - - documentation/** - - '**/README.md' - - '**/README_zh.md' + workflow_dispatch: #disable permissions: contents: read # to fetch code (actions/checkout) diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml index 9f922861bfd..e2c51a8625f 100644 --- a/.github/workflows/doxygen.yml +++ b/.github/workflows/doxygen.yml @@ -10,6 +10,7 @@ on: - 'components/finsh/**' - 'components/drivers/include/drivers/**' - 'components/drivers/clk/**' + - 'components/drivers/audio/**' - 'components/dfs/dfs_v2/src/**' - 'components/dfs/dfs_v2/include/**' - '.github/workflows/doxygen.yml' @@ -23,6 +24,7 @@ on: - 'components/finsh/**' - 'components/drivers/include/drivers/**' - 'components/drivers/clk/**' + - 'components/drivers/audio/**' - 'components/dfs/dfs_v2/src/**' - 'components/dfs/dfs_v2/include/**' - '.github/workflows/doxygen.yml' diff --git a/.github/workflows/format_check.yml b/.github/workflows/format_check.yml index a95a82aa62d..0273c11d9bd 100644 --- a/.github/workflows/format_check.yml +++ b/.github/workflows/format_check.yml @@ -15,9 +15,9 @@ jobs: name: Scan code format and license if: github.repository_owner == 'RT-Thread' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@main - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@main with: python-version: 3.8 diff --git a/.github/workflows/static_code_analysis.yml b/.github/workflows/static_code_analysis.yml index 9370e0e4360..9e2d4b4e938 100644 --- a/.github/workflows/static_code_analysis.yml +++ b/.github/workflows/static_code_analysis.yml @@ -25,7 +25,7 @@ jobs: name: Static code analysis if: github.repository_owner == 'RT-Thread' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@main - name: Set up Python uses: actions/setup-python@main with: diff --git a/bsp/CME_M7/project.uvproj b/bsp/CME_M7/project.uvproj index ad342552a15..4dd6ecaf065 100644 --- a/bsp/CME_M7/project.uvproj +++ b/bsp/CME_M7/project.uvproj @@ -361,9 +361,9 @@ 0 - RT_USING_LIBC, RT_USING_ARMLIBC, __STDC_LIMIT_MACROS, __RTTHREAD__, __CLK_TCK=RT_TICK_PER_SECOND + __CLK_TCK=RT_TICK_PER_SECOND, __RTTHREAD__, RT_USING_ARMLIBC, __STDC_LIMIT_MACROS, RT_USING_LIBC - ..\..\components\libc\compilers\common\extension\fcntl\octal;..\..\libcpu\arm\cortex-m3;CMSIS\CME_M7;..\..\components\net\lwip\lwip-2.0.3\src\include\posix;..\..\components\net\lwip\lwip-2.0.3\src\include\ipv4;.;StdPeriph_Driver\inc;..\..\components\libc\compilers\common\include;drivers;..\..\components\dfs\dfs_v1\filesystems\elmfat;..\..\components\finsh;..\..\components\libc\posix\io\epoll;..\..\libcpu\arm\common;..\..\components\libc\posix\ipc;..\..\components\drivers\include;..\..\include;CMSIS\CMSIS\Include;..\..\components\libc\posix\io\eventfd;..\..\components\net\lwip\lwip-2.0.3\src\include;..\..\components\net\lwip\port;..\..\components\libc\posix\io\poll;..\..\components\drivers\include;..\..\components\libc\compilers\common\extension;..\..\components\drivers\include;applications;..\..\components\drivers\include;..\..\components\dfs\dfs_v1\include;..\..\components\net\lwip\lwip-2.0.3\src\include\netif + ..\..\components\drivers\include;applications;..\..\components\drivers\phy;..\..\components\drivers\smp_call;..\..\include;..\..\components\libc\posix\io\poll;..\..\components\libc\compilers\common\extension\fcntl\octal;..\..\components\net\lwip\lwip-2.0.3\src\include\ipv4;..\..\components\dfs\dfs_v1\filesystems\elmfat;..\..\components\drivers\include;CMSIS\CMSIS\Include;..\..\components\drivers\include;..\..\components\libc\posix\io\epoll;..\..\components\libc\posix\io\eventfd;..\..\components\finsh;..\..\components\dfs\dfs_v1\include;..\..\libcpu\arm\common;CMSIS\CME_M7;..\..\components\net\lwip\lwip-2.0.3\src\include\posix;..\..\components\libc\compilers\common\extension;StdPeriph_Driver\inc;..\..\components\net\lwip\lwip-2.0.3\src\include;..\..\components\drivers\include;.;..\..\components\drivers\include;..\..\components\net\lwip\port;..\..\components\libc\posix\ipc;..\..\libcpu\arm\cortex-m3;drivers;..\..\components\libc\compilers\common\include;..\..\components\net\lwip\lwip-2.0.3\src\include\netif @@ -407,23 +407,23 @@ Applications - led.c + startup.c 1 - applications\led.c + applications\startup.c - startup.c + application.c 1 - applications\startup.c + applications\application.c - application.c + led.c 1 - applications\application.c + applications\led.c @@ -431,16 +431,16 @@ CMSIS - startup_cmem7.s - 2 - CMSIS\CME_M7\startup\arm\startup_cmem7.s + system_cmem7.c + 1 + CMSIS\CME_M7\system_cmem7.c - system_cmem7.c - 1 - CMSIS\CME_M7\system_cmem7.c + startup_cmem7.s + 2 + CMSIS\CME_M7\startup\arm\startup_cmem7.s @@ -526,9 +526,47 @@ - completion.c + completion_comm.c + 1 + ..\..\components\drivers\ipc\completion_comm.c + + + + + + __RT_IPC_SOURCE__ + + + + + + + + + + + completion_up.c + 1 + ..\..\components\drivers\ipc\completion_up.c + + + + + + __RT_IPC_SOURCE__ + + + + + + + + + + + condvar.c 1 - ..\..\components\drivers\ipc\completion.c + ..\..\components\drivers\ipc\condvar.c @@ -659,9 +697,9 @@ - pin.c + dev_pin.c 1 - ..\..\components\drivers\pin\pin.c + ..\..\components\drivers\pin\dev_pin.c @@ -678,9 +716,9 @@ - serial.c + dev_serial.c 1 - ..\..\components\drivers\serial\serial.c + ..\..\components\drivers\serial\dev_serial.c @@ -707,16 +745,16 @@ - uart.c + board.c 1 - drivers\uart.c + drivers\board.c - board.c + uart.c 1 - drivers\board.c + drivers\uart.c @@ -734,6 +772,18 @@ dfs_elm.c 1 ..\..\components\dfs\dfs_v1\filesystems\elmfat\dfs_elm.c + + + + + --c99 + + + + + + + @@ -741,6 +791,18 @@ ff.c 1 ..\..\components\dfs\dfs_v1\filesystems\elmfat\ff.c + + + + + --c99 + + + + + + + @@ -748,6 +810,18 @@ ffunicode.c 1 ..\..\components\dfs\dfs_v1\filesystems\elmfat\ffunicode.c + + + + + --c99 + + + + + + + @@ -755,6 +829,18 @@ dfs.c 1 ..\..\components\dfs\dfs_v1\src\dfs.c + + + + + --c99 + + + + + + + @@ -762,6 +848,18 @@ dfs_file.c 1 ..\..\components\dfs\dfs_v1\src\dfs_file.c + + + + + --c99 + + + + + + + @@ -769,6 +867,18 @@ dfs_fs.c 1 ..\..\components\dfs\dfs_v1\src\dfs_fs.c + + + + + --c99 + + + + + + + @@ -776,11 +886,30 @@ dfs_posix.c 1 ..\..\components\dfs\dfs_v1\src\dfs_posix.c + + + + + --c99 + + + + + + + Finsh + + + msh.c + 1 + ..\..\components\finsh\msh.c + + shell.c @@ -790,9 +919,9 @@ - msh.c + msh_file.c 1 - ..\..\components\finsh\msh.c + ..\..\components\finsh\msh_file.c @@ -809,13 +938,6 @@ ..\..\components\finsh\cmd.c - - - msh_file.c - 1 - ..\..\components\finsh\msh_file.c - - Kernel @@ -859,9 +981,9 @@ - idle.c + cpu_up.c 1 - ..\..\src\idle.c + ..\..\src\cpu_up.c @@ -878,9 +1000,9 @@ - ipc.c + defunct.c 1 - ..\..\src\ipc.c + ..\..\src\defunct.c @@ -897,9 +1019,9 @@ - irq.c + idle.c 1 - ..\..\src\irq.c + ..\..\src\idle.c @@ -916,9 +1038,9 @@ - kstdio.c + ipc.c 1 - ..\..\src\klibc\kstdio.c + ..\..\src\ipc.c @@ -935,9 +1057,9 @@ - kstring.c + irq.c 1 - ..\..\src\klibc\kstring.c + ..\..\src\irq.c @@ -1105,6 +1227,44 @@ + + klibc + + + rt_vsnprintf_tiny.c + 1 + ..\..\src\klibc\rt_vsnprintf_tiny.c + + + + + rt_vsscanf.c + 1 + ..\..\src\klibc\rt_vsscanf.c + + + + + kerrno.c + 1 + ..\..\src\klibc\kerrno.c + + + + + kstdio.c + 1 + ..\..\src\klibc\kstdio.c + + + + + kstring.c + 1 + ..\..\src\klibc\kstring.c + + + libcpu @@ -1147,121 +1307,121 @@ Libraries - cmem7_efuse.c + cmem7_i2c.c 1 - StdPeriph_Driver\src\cmem7_efuse.c + StdPeriph_Driver\src\cmem7_i2c.c - cmem7_eth.c + cmem7_rtc.c 1 - StdPeriph_Driver\src\cmem7_eth.c + StdPeriph_Driver\src\cmem7_rtc.c - cmem7_flash.c + cmem7_spi.c 1 - StdPeriph_Driver\src\cmem7_flash.c + StdPeriph_Driver\src\cmem7_spi.c - cmem7_adc.c + cmem7_can.c 1 - StdPeriph_Driver\src\cmem7_adc.c + StdPeriph_Driver\src\cmem7_can.c - cmem7_i2c.c + cmem7_uart.c 1 - StdPeriph_Driver\src\cmem7_i2c.c + StdPeriph_Driver\src\cmem7_uart.c - cmem7_dma.c + cmem7_wdg.c 1 - StdPeriph_Driver\src\cmem7_dma.c + StdPeriph_Driver\src\cmem7_wdg.c - cmem7_gpio.c + cmem7_aes.c 1 - StdPeriph_Driver\src\cmem7_gpio.c + StdPeriph_Driver\src\cmem7_aes.c - cmem7_misc.c + cmem7_eth.c 1 - StdPeriph_Driver\src\cmem7_misc.c + StdPeriph_Driver\src\cmem7_eth.c - cmem7_wdg.c + cmem7_flash.c 1 - StdPeriph_Driver\src\cmem7_wdg.c + StdPeriph_Driver\src\cmem7_flash.c - cmem7_rtc.c + cmem7_gpio.c 1 - StdPeriph_Driver\src\cmem7_rtc.c + StdPeriph_Driver\src\cmem7_gpio.c - cmem7_can.c + cmem7_ddr.c 1 - StdPeriph_Driver\src\cmem7_can.c + StdPeriph_Driver\src\cmem7_ddr.c - cmem7_tim.c + cmem7_misc.c 1 - StdPeriph_Driver\src\cmem7_tim.c + StdPeriph_Driver\src\cmem7_misc.c - cmem7_spi.c + cmem7_dma.c 1 - StdPeriph_Driver\src\cmem7_spi.c + StdPeriph_Driver\src\cmem7_dma.c - cmem7_ddr.c + cmem7_usb.c 1 - StdPeriph_Driver\src\cmem7_ddr.c + StdPeriph_Driver\src\cmem7_usb.c - cmem7_aes.c + cmem7_tim.c 1 - StdPeriph_Driver\src\cmem7_aes.c + StdPeriph_Driver\src\cmem7_tim.c - cmem7_usb.c + cmem7_adc.c 1 - StdPeriph_Driver\src\cmem7_usb.c + StdPeriph_Driver\src\cmem7_adc.c - cmem7_uart.c + cmem7_efuse.c 1 - StdPeriph_Driver\src\cmem7_uart.c + StdPeriph_Driver\src\cmem7_efuse.c diff --git a/bsp/ESP32_C3/.ci/attachconfig/ci.attachconfig.yml b/bsp/ESP32_C3/.ci/attachconfig/ci.attachconfig.yml index af6fbb3d8dd..a2a990be1c5 100644 --- a/bsp/ESP32_C3/.ci/attachconfig/ci.attachconfig.yml +++ b/bsp/ESP32_C3/.ci/attachconfig/ci.attachconfig.yml @@ -54,4 +54,10 @@ devices.wifi: - CONFIG_BSP_USING_WIFI=y - CONFIG_RT_USING_WIFI=y - CONFIG_RT_USING_LWIP=y + - CONFIG_RT_USING_NETDEV=y +devices.at: + kconfig: + - CONFIG_RT_USING_AT=y + - CONFIG_AT_USING_CLIENT=y + - CONFIG_RT_USING_SAL=y - CONFIG_RT_USING_NETDEV=y \ No newline at end of file diff --git a/bsp/ESP32_C3/rtconfig.py b/bsp/ESP32_C3/rtconfig.py index 12caa433a4f..c1c04fc739d 100644 --- a/bsp/ESP32_C3/rtconfig.py +++ b/bsp/ESP32_C3/rtconfig.py @@ -36,7 +36,7 @@ STRIP = PREFIX + 'strip' DEVICE = ' -nostartfiles -march=rv32imc --specs=nosys.specs -fasynchronous-unwind-tables ' - CFLAGS = DEVICE + '-gdwarf-4 -ggdb -Og ' + CFLAGS = DEVICE + '-include ../../components/libc/compilers/common/include/sys/ioctl.h -gdwarf-4 -ggdb -Og ' AFLAGS = ' -c' + DEVICE + ' -x assembler-with-cpp' LFLAGS = DEVICE + ' -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32C3=0 -Wl,--gc-sections,-Map=rtthread.map,-cref,-u,_start -T idf_port/ld/memory.ld -T idf_port/ld/sections.ld -T packages/ESP-IDF-latest/components/esp_rom/esp32c3/ld/esp32c3.rom.ld -T packages/ESP-IDF-latest/components/esp_rom/esp32c3/ld/esp32c3.rom.api.ld -T packages/ESP-IDF-latest/components/esp_rom/esp32c3/ld/esp32c3.rom.libgcc.ld -T packages/ESP-IDF-latest/components/esp_rom/esp32c3/ld/esp32c3.rom.newlib.ld -T packages/ESP-IDF-latest/components/esp_rom/esp32c3/ld/esp32c3.rom.version.ld -T packages/ESP-IDF-latest/components/esp_rom/esp32c3/ld/esp32c3.rom.eco3.ld -T packages/ESP-IDF-latest/components/soc/esp32c3/ld/esp32c3.peripherals.ld -Wl,--wrap=_Unwind_SetEnableExceptionFdeSorting -Wl,--wrap=__register_frame_info_bases -Wl,--wrap=__register_frame_info -Wl,--wrap=__register_frame -Wl,--wrap=__register_frame_info_table_bases -Wl,--wrap=__register_frame_info_table -Wl,--wrap=__register_frame_table -Wl,--wrap=__deregister_frame_info_bases -Wl,--wrap=__deregister_frame_info -Wl,--wrap=_Unwind_Find_FDE -Wl,--wrap=_Unwind_GetGR -Wl,--wrap=_Unwind_GetCFA -Wl,--wrap=_Unwind_GetIP -Wl,--wrap=_Unwind_GetIPInfo -Wl,--wrap=_Unwind_GetRegionStart -Wl,--wrap=_Unwind_GetDataRelBase -Wl,--wrap=_Unwind_GetTextRelBase -Wl,--wrap=_Unwind_SetIP -Wl,--wrap=_Unwind_SetGR -Wl,--wrap=_Unwind_GetLanguageSpecificData -Wl,--wrap=_Unwind_FindEnclosingFunction -Wl,--wrap=_Unwind_Resume -Wl,--wrap=_Unwind_RaiseException -Wl,--wrap=_Unwind_DeleteException -Wl,--wrap=_Unwind_ForcedUnwind -Wl,--wrap=_Unwind_Resume_or_Rethrow -Wl,--wrap=_Unwind_Backtrace -Wl,--wrap=__cxa_call_unexpected -Wl,--eh-frame-hdr -Wl,--wrap=__gxx_personality_v0 -Wl,--cref -Wl,--defsym=IDF_TARGET_ESP32C3=0' CXXFLAGS = CFLAGS diff --git a/bsp/README.md b/bsp/README.md index 5558199b8af..11341b8a2ae 100644 --- a/bsp/README.md +++ b/bsp/README.md @@ -12,24 +12,7 @@ RT-THREAD bsp company list - STM32 - [stm32](stm32) series - NXP - - [lpc55sxx](lpc55sxx) series - - [imxrt](imxrt) series - - [frdm-k64f](frdm-k64f) - - [imx6sx](imx6sx) - - [imx6ul](imx6ul) - - [lpc824](lpc824) - - [lpc54608-LPCXpresso](lpc54608-LPCXpresso) - - [lpc54114-lite](lpc54114-lite) - - [lpc5410x](lpc5410x) - - [lpc43xx](lpc43xx) - - [lpc408x](lpc408x) - - [lpc2478](lpc2478) - - [lpc2148](lpc2148) - - [lpc178x](lpc178x) - - [lpc176x](lpc176x) - - [lpc1114](lpc1114) - - [xplorer4330](xplorer4330) - - [rv32m1_vega](rv32m1_vega) + - [nxp](nxp) series - Renesas - [renesas](renesas) series - [rx](rx) series @@ -170,4 +153,6 @@ RT-THREAD bsp company list - 京微雅格 - [CME_M7](CME_M7) - 好钜润 TIKY - - [tkm32F499](tkm32F499) \ No newline at end of file + - [tkm32F499](tkm32F499) +- Milk-V + - [cvitek](cvitek) diff --git a/bsp/Vango/v85xx/project.uvprojx b/bsp/Vango/v85xx/project.uvprojx index 871cd8c3546..6978750b61b 100644 --- a/bsp/Vango/v85xx/project.uvprojx +++ b/bsp/Vango/v85xx/project.uvprojx @@ -331,9 +331,9 @@ 0 - __STDC_LIMIT_MACROS, RT_USING_ARMLIBC, V85xx, USE_STDPERIPH_DRIVER, RT_USING_LIBC, __CLK_TCK=RT_TICK_PER_SECOND, __RTTHREAD__, USE_TARGET_DRIVER + __STDC_LIMIT_MACROS, __CLK_TCK=RT_TICK_PER_SECOND, RT_USING_ARMLIBC, V85xx, __RTTHREAD__, USE_TARGET_DRIVER, RT_USING_LIBC, USE_STDPERIPH_DRIVER - ..\..\..\components\libc\compilers\common\extension\fcntl\octal;.;drivers;..\..\..\libcpu\arm\cortex-m0;Libraries\CMSIS\Vango\V85xx\Include;Libraries\VangoV85xx_standard_peripheral\Include;..\..\..\libcpu\arm\common;Libraries\CMSIS;..\..\..\components\finsh;..\..\..\components\libc\posix\io\epoll;..\..\..\components\dfs\dfs_v1\filesystems\devfs;..\..\..\components\drivers\include;..\..\..\include;..\..\..\components\libc\posix\io\eventfd;applications;..\..\..\components\libc\posix\io\poll;..\..\..\components\drivers\include;..\..\..\components\libc\compilers\common\include;..\..\..\components\libc\compilers\common\extension;..\..\..\components\drivers\include;..\..\..\components\drivers\include;..\..\..\components\dfs\dfs_v1\include;..\..\..\components\libc\posix\ipc + Libraries\CMSIS;..\..\..\components\libc\compilers\common\include;..\..\..\components\libc\compilers\common\extension;..\..\..\components\libc\posix\ipc;..\..\..\components\drivers\include;..\..\..\components\drivers\smp_call;..\..\..\libcpu\arm\cortex-m0;drivers;.;..\..\..\components\drivers\phy;..\..\..\include;..\..\..\components\libc\posix\io\poll;Libraries\CMSIS\Vango\V85xx\Include;..\..\..\components\libc\compilers\common\extension\fcntl\octal;..\..\..\components\dfs\dfs_v1\include;..\..\..\components\drivers\include;..\..\..\components\dfs\dfs_v1\filesystems\devfs;..\..\..\components\finsh;applications;..\..\..\components\libc\posix\io\epoll;..\..\..\libcpu\arm\common;..\..\..\components\drivers\include;Libraries\VangoV85xx_standard_peripheral\Include;..\..\..\components\drivers\include;..\..\..\components\drivers\include;..\..\..\components\libc\posix\io\eventfd @@ -466,9 +466,47 @@ - completion.c + completion_comm.c 1 - ..\..\..\components\drivers\ipc\completion.c + ..\..\..\components\drivers\ipc\completion_comm.c + + + + + + __RT_IPC_SOURCE__ + + + + + + + + + + + completion_up.c + 1 + ..\..\..\components\drivers\ipc\completion_up.c + + + + + + __RT_IPC_SOURCE__ + + + + + + + + + + + condvar.c + 1 + ..\..\..\components\drivers\ipc\condvar.c @@ -599,9 +637,9 @@ - pin.c + dev_pin.c 1 - ..\..\..\components\drivers\pin\pin.c + ..\..\..\components\drivers\pin\dev_pin.c @@ -618,9 +656,9 @@ - serial.c + dev_serial.c 1 - ..\..\..\components\drivers\serial\serial.c + ..\..\..\components\drivers\serial\dev_serial.c @@ -640,9 +678,9 @@ Drivers - drv_gpio.c + board.c 1 - drivers\drv_gpio.c + drivers\board.c @@ -654,9 +692,9 @@ - board.c + drv_gpio.c 1 - drivers\board.c + drivers\drv_gpio.c @@ -667,6 +705,18 @@ devfs.c 1 ..\..\..\components\dfs\dfs_v1\filesystems\devfs\devfs.c + + + + + --c99 + + + + + + + @@ -674,6 +724,18 @@ dfs.c 1 ..\..\..\components\dfs\dfs_v1\src\dfs.c + + + + + --c99 + + + + + + + @@ -681,6 +743,18 @@ dfs_file.c 1 ..\..\..\components\dfs\dfs_v1\src\dfs_file.c + + + + + --c99 + + + + + + + @@ -688,6 +762,18 @@ dfs_fs.c 1 ..\..\..\components\dfs\dfs_v1\src\dfs_fs.c + + + + + --c99 + + + + + + + @@ -695,6 +781,18 @@ dfs_posix.c 1 ..\..\..\components\dfs\dfs_v1\src\dfs_posix.c + + + + + --c99 + + + + + + + @@ -702,16 +800,16 @@ Finsh - shell.c + cmd.c 1 - ..\..\..\components\finsh\shell.c + ..\..\..\components\finsh\cmd.c - msh.c + shell.c 1 - ..\..\..\components\finsh\msh.c + ..\..\..\components\finsh\shell.c @@ -723,9 +821,9 @@ - cmd.c + msh.c 1 - ..\..\..\components\finsh\cmd.c + ..\..\..\components\finsh\msh.c @@ -778,9 +876,9 @@ - idle.c + cpu_up.c 1 - ..\..\..\src\idle.c + ..\..\..\src\cpu_up.c @@ -797,9 +895,9 @@ - ipc.c + defunct.c 1 - ..\..\..\src\ipc.c + ..\..\..\src\defunct.c @@ -816,9 +914,9 @@ - irq.c + idle.c 1 - ..\..\..\src\irq.c + ..\..\..\src\idle.c @@ -835,9 +933,9 @@ - kstdio.c + ipc.c 1 - ..\..\..\src\klibc\kstdio.c + ..\..\..\src\ipc.c @@ -854,9 +952,9 @@ - kstring.c + irq.c 1 - ..\..\..\src\klibc\kstring.c + ..\..\..\src\irq.c @@ -1024,6 +1122,44 @@ + + klibc + + + rt_vsscanf.c + 1 + ..\..\..\src\klibc\rt_vsscanf.c + + + + + rt_vsnprintf_tiny.c + 1 + ..\..\..\src\klibc\rt_vsnprintf_tiny.c + + + + + kerrno.c + 1 + ..\..\..\src\klibc\kerrno.c + + + + + kstdio.c + 1 + ..\..\..\src\klibc\kstdio.c + + + + + kstring.c + 1 + ..\..\..\src\klibc\kstring.c + + + libcpu @@ -1059,191 +1195,191 @@ Vango_Lib - lib_wdt.c + lib_clk.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_wdt.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_clk.c - startup_target.S - 2 - Libraries\CMSIS\Vango\V85xx\Source\Keil5\startup_target.S + lib_pmu.c + 1 + Libraries\VangoV85xx_standard_peripheral\Source\lib_pmu.c - lib_i2c.c + lib_ana.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_i2c.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_ana.c - lib_cortex.c + lib_tmr.c 1 - Libraries\CMSIS\Vango\V85xx\Source\lib_cortex.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_tmr.c - lib_ana.c + lib_u32k.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_ana.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_u32k.c - lib_LoadNVR.c + lib_CodeRAM.c 1 - Libraries\CMSIS\Vango\V85xx\Source\lib_LoadNVR.c + Libraries\CMSIS\Vango\V85xx\Source\lib_CodeRAM.c - lib_comp.c + lib_lcd.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_comp.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_lcd.c - lib_misc.c + lib_wdt.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_misc.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_wdt.c - lib_tmr.c + lib_LoadNVR.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_tmr.c + Libraries\CMSIS\Vango\V85xx\Source\lib_LoadNVR.c - lib_iso7816.c + lib_i2c.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_iso7816.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_i2c.c - lib_adc_tiny.c + lib_gpio.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_adc_tiny.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_gpio.c - lib_CodeRAM.c + lib_comp.c 1 - Libraries\CMSIS\Vango\V85xx\Source\lib_CodeRAM.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_comp.c - lib_u32k.c + lib_pwm.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_u32k.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_pwm.c - lib_pwm.c + lib_adc.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_pwm.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_adc.c - lib_rtc.c + lib_uart.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_rtc.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_uart.c - lib_flash.c + lib_adc_tiny.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_flash.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_adc_tiny.c - lib_lcd.c + lib_flash.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_lcd.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_flash.c - lib_uart.c + lib_rtc.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_uart.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_rtc.c - lib_crypt.c - 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_crypt.c + startup_target.S + 2 + Libraries\CMSIS\Vango\V85xx\Source\Keil5\startup_target.S - system_target.c + lib_iso7816.c 1 - Libraries\CMSIS\Vango\V85xx\Source\system_target.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_iso7816.c - lib_spi.c + lib_dma.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_spi.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_dma.c - lib_pmu.c + lib_version.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_pmu.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_version.c - lib_clk.c + lib_spi.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_clk.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_spi.c - lib_dma.c + lib_misc.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_dma.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_misc.c - lib_version.c + lib_crypt.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_version.c + Libraries\VangoV85xx_standard_peripheral\Source\lib_crypt.c - lib_adc.c + lib_cortex.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_adc.c + Libraries\CMSIS\Vango\V85xx\Source\lib_cortex.c - lib_gpio.c + system_target.c 1 - Libraries\VangoV85xx_standard_peripheral\Source\lib_gpio.c + Libraries\CMSIS\Vango\V85xx\Source\system_target.c diff --git a/bsp/Vango/v85xxp/project.uvprojx b/bsp/Vango/v85xxp/project.uvprojx index 1af4617310e..4a67d9e9917 100644 --- a/bsp/Vango/v85xxp/project.uvprojx +++ b/bsp/Vango/v85xxp/project.uvprojx @@ -331,9 +331,9 @@ 0 - __STDC_LIMIT_MACROS, RT_USING_ARMLIBC, USE_STDPERIPH_DRIVER, RT_USING_LIBC, __CLK_TCK=RT_TICK_PER_SECOND, __RTTHREAD__, USE_TARGET_DRIVER, V85XXP + USE_TARGET_DRIVER, __RTTHREAD__, USE_STDPERIPH_DRIVER, __CLK_TCK=RT_TICK_PER_SECOND, __STDC_LIMIT_MACROS, RT_USING_ARMLIBC, RT_USING_LIBC, V85XXP - ..\..\..\libcpu\arm\cortex-m0;applications;Libraries\CMSIS;..\..\..\components\libc\compilers\common\extension\fcntl\octal;..\..\..\components\libc\compilers\common\include;drivers;.;..\..\..\components\finsh;..\..\..\components\drivers\include;..\..\..\libcpu\arm\common;..\..\..\components\dfs\dfs_v1\include;..\..\..\components\drivers\include;..\..\..\include;..\..\..\components\libc\posix\io\eventfd;..\..\..\components\libc\posix\io\poll;Libraries\VangoV85xxP_standard_peripheral\Include;..\..\..\components\drivers\include;..\..\..\components\libc\compilers\common\extension;..\..\..\components\drivers\include;..\..\..\components\libc\posix\io\epoll;Libraries\CMSIS\Vango\V85xxP\Include;..\..\..\components\libc\posix\ipc + ..\..\..\components\drivers\include;..\..\..\components\libc\posix\ipc;..\..\..\libcpu\arm\common;applications;..\..\..\components\drivers\include;..\..\..\include;drivers;..\..\..\components\drivers\phy;..\..\..\components\libc\compilers\common\include;Libraries\VangoV85xxP_standard_peripheral\Include;..\..\..\components\libc\compilers\common\extension;..\..\..\components\finsh;Libraries\CMSIS;..\..\..\components\dfs\dfs_v1\include;..\..\..\components\libc\posix\io\epoll;.;..\..\..\components\drivers\include;..\..\..\components\drivers\include;..\..\..\components\drivers\include;..\..\..\components\libc\compilers\common\extension\fcntl\octal;..\..\..\components\libc\posix\io\poll;Libraries\CMSIS\Vango\V85xxP\Include;..\..\..\components\drivers\smp_call;..\..\..\libcpu\arm\cortex-m0;..\..\..\components\libc\posix\io\eventfd @@ -466,9 +466,47 @@ - completion.c + completion_comm.c 1 - ..\..\..\components\drivers\ipc\completion.c + ..\..\..\components\drivers\ipc\completion_comm.c + + + + + + __RT_IPC_SOURCE__ + + + + + + + + + + + completion_up.c + 1 + ..\..\..\components\drivers\ipc\completion_up.c + + + + + + __RT_IPC_SOURCE__ + + + + + + + + + + + condvar.c + 1 + ..\..\..\components\drivers\ipc\condvar.c @@ -599,9 +637,9 @@ - pin.c + dev_pin.c 1 - ..\..\..\components\drivers\pin\pin.c + ..\..\..\components\drivers\pin\dev_pin.c @@ -618,9 +656,9 @@ - serial.c + dev_serial.c 1 - ..\..\..\components\drivers\serial\serial.c + ..\..\..\components\drivers\serial\dev_serial.c @@ -647,16 +685,16 @@ - drv_usart.c + board.c 1 - drivers\drv_usart.c + drivers\board.c - board.c + drv_usart.c 1 - drivers\board.c + drivers\drv_usart.c @@ -664,30 +702,78 @@ Filesystem - dfs_posix.c + dfs.c 1 - ..\..\..\components\dfs\dfs_v1\src\dfs_posix.c + ..\..\..\components\dfs\dfs_v1\src\dfs.c + + + + + --c99 + + + + + + + - dfs_fs.c + dfs_posix.c 1 - ..\..\..\components\dfs\dfs_v1\src\dfs_fs.c + ..\..\..\components\dfs\dfs_v1\src\dfs_posix.c + + + + + --c99 + + + + + + + - dfs.c + dfs_file.c 1 - ..\..\..\components\dfs\dfs_v1\src\dfs.c + ..\..\..\components\dfs\dfs_v1\src\dfs_file.c + + + + + --c99 + + + + + + + - dfs_file.c + dfs_fs.c 1 - ..\..\..\components\dfs\dfs_v1\src\dfs_file.c + ..\..\..\components\dfs\dfs_v1\src\dfs_fs.c + + + + + --c99 + + + + + + + @@ -695,23 +781,23 @@ Finsh - shell.c + msh.c 1 - ..\..\..\components\finsh\shell.c + ..\..\..\components\finsh\msh.c - msh.c + msh_parse.c 1 - ..\..\..\components\finsh\msh.c + ..\..\..\components\finsh\msh_parse.c - msh_parse.c + shell.c 1 - ..\..\..\components\finsh\msh_parse.c + ..\..\..\components\finsh\shell.c @@ -771,9 +857,9 @@ - idle.c + cpu_up.c 1 - ..\..\..\src\idle.c + ..\..\..\src\cpu_up.c @@ -790,9 +876,9 @@ - ipc.c + defunct.c 1 - ..\..\..\src\ipc.c + ..\..\..\src\defunct.c @@ -809,9 +895,9 @@ - irq.c + idle.c 1 - ..\..\..\src\irq.c + ..\..\..\src\idle.c @@ -828,9 +914,9 @@ - kstdio.c + ipc.c 1 - ..\..\..\src\klibc\kstdio.c + ..\..\..\src\ipc.c @@ -847,9 +933,9 @@ - kstring.c + irq.c 1 - ..\..\..\src\klibc\kstring.c + ..\..\..\src\irq.c @@ -1017,6 +1103,44 @@ + + klibc + + + kstring.c + 1 + ..\..\..\src\klibc\kstring.c + + + + + kstdio.c + 1 + ..\..\..\src\klibc\kstdio.c + + + + + rt_vsscanf.c + 1 + ..\..\..\src\klibc\rt_vsscanf.c + + + + + kerrno.c + 1 + ..\..\..\src\klibc\kerrno.c + + + + + rt_vsnprintf_tiny.c + 1 + ..\..\..\src\klibc\rt_vsnprintf_tiny.c + + + libcpu @@ -1052,93 +1176,93 @@ Vango_Lib - lib_adc_tiny.c + lib_adc.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_adc_tiny.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_adc.c - lib_uart.c + lib_iso7816.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_uart.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_iso7816.c - lib_wdt.c + lib_flash.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_wdt.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_flash.c - lib_lcd.c + lib_tmr.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_lcd.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_tmr.c - lib_adc.c - 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_adc.c + startup_target.S + 2 + Libraries\CMSIS\Vango\V85xxP\Source\Keil5\startup_target.S - lib_flash.c + lib_crypt.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_flash.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_crypt.c - lib_misc.c + lib_gpio.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_misc.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_gpio.c - lib_spi.c + lib_rtc.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_spi.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_rtc.c - lib_ana.c + lib_CodeRAM.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_ana.c + Libraries\CMSIS\Vango\V85xxP\Source\lib_CodeRAM.c - lib_tmr.c + lib_cortex.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_tmr.c + Libraries\CMSIS\Vango\V85xxP\Source\lib_cortex.c - lib_cortex.c + system_target.c 1 - Libraries\CMSIS\Vango\V85xxP\Source\lib_cortex.c + Libraries\CMSIS\Vango\V85xxP\Source\system_target.c - lib_cmp.c + lib_spi.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_cmp.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_spi.c - lib_crypt.c + lib_u32k.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_crypt.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_u32k.c @@ -1157,86 +1281,86 @@ - lib_clk.c + lib_misc.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_clk.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_misc.c - lib_gpio.c + lib_wdt.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_gpio.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_wdt.c - lib_pmu.c + lib_cmp.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_pmu.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_cmp.c - lib_u32k.c + lib_lcd.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_u32k.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_lcd.c - lib_i2c.c + lib_uart.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_i2c.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_uart.c - lib_LoadNVR.c + lib_adc_tiny.c 1 - Libraries\CMSIS\Vango\V85xxP\Source\lib_LoadNVR.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_adc_tiny.c - lib_rtc.c + lib_ana.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_rtc.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_ana.c - lib_iso7816.c + lib_pmu.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_iso7816.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_pmu.c - startup_target.S - 2 - Libraries\CMSIS\Vango\V85xxP\Source\Keil5\startup_target.S + lib_i2c.c + 1 + Libraries\VangoV85xxP_standard_peripheral\Source\lib_i2c.c - lib_CodeRAM.c + lib_clk.c 1 - Libraries\CMSIS\Vango\V85xxP\Source\lib_CodeRAM.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_clk.c - system_target.c + lib_version.c 1 - Libraries\CMSIS\Vango\V85xxP\Source\system_target.c + Libraries\VangoV85xxP_standard_peripheral\Source\lib_version.c - lib_version.c + lib_LoadNVR.c 1 - Libraries\VangoV85xxP_standard_peripheral\Source\lib_version.c + Libraries\CMSIS\Vango\V85xxP\Source\lib_LoadNVR.c diff --git a/bsp/acm32/acm32f0x0-nucleo/project.ewp b/bsp/acm32/acm32f0x0-nucleo/project.ewp index b14d36e28a8..d4ed48733df 100644 --- a/bsp/acm32/acm32f0x0-nucleo/project.ewp +++ b/bsp/acm32/acm32f0x0-nucleo/project.ewp @@ -356,24 +356,26 @@ @@ -1405,29 +1400,26 @@ CCIncludePath2 $PROJ_DIR$\. - $PROJ_DIR$\board\inc - $PROJ_DIR$\..\..\..\components\libc\compilers\common\extension\fcntl\octal - $PROJ_DIR$\..\..\..\libcpu\arm\cortex-m4 - $PROJ_DIR$\..\..\..\include - $PROJ_DIR$\..\..\..\components\libc\posix\io\eventfd - $PROJ_DIR$\..\..\..\components\libc\posix\io\poll - $PROJ_DIR$\..\libraries\AT32F423_Firmware_Library\drivers\inc - $PROJ_DIR$\..\..\..\components\libc\compilers\common\extension + $PROJ_DIR$\..\libraries\usbotg_library\inc $PROJ_DIR$\board - $PROJ_DIR$\..\libraries\rt_drivers + $PROJ_DIR$\..\..\..\components\libc\compilers\common\extension\fcntl\octal + $PROJ_DIR$\..\..\..\libcpu\arm\common + $PROJ_DIR$\..\..\..\components\finsh $PROJ_DIR$\..\..\..\components\drivers\include - $PROJ_DIR$\..\libraries\AT32F423_Firmware_Library\cmsis\cm4\device_support - $PROJ_DIR$\..\libraries\AT32F423_Firmware_Library\cmsis\cm4\core_support + $PROJ_DIR$\board\inc + $PROJ_DIR$\..\..\..\components\drivers\phy $PROJ_DIR$\..\..\..\components\libc\posix\io\epoll - $PROJ_DIR$\..\..\..\components\libc\posix\ipc - $PROJ_DIR$\..\..\..\components\drivers\smp_call - $PROJ_DIR$\..\..\..\components\libc\compilers\common\include - $PROJ_DIR$\..\..\..\components\finsh $PROJ_DIR$\..\libraries\rt_drivers\config - $PROJ_DIR$\..\libraries\usbotg_library\inc + $PROJ_DIR$\..\libraries\rt_drivers + $PROJ_DIR$\..\..\..\components\libc\compilers\common\include + $PROJ_DIR$\..\..\..\components\libc\posix\io\poll $PROJ_DIR$\applications - $PROJ_DIR$\..\..\..\components\drivers\phy - $PROJ_DIR$\..\..\..\libcpu\arm\common + $PROJ_DIR$\..\..\..\components\libc\compilers\common\extension + $PROJ_DIR$\..\..\..\libcpu\arm\cortex-m4 + $PROJ_DIR$\..\..\..\components\libc\posix\ipc + $PROJ_DIR$\..\..\..\components\libc\posix\io\eventfd + $PROJ_DIR$\..\..\..\components\drivers\smp_call + $PROJ_DIR$\..\..\..\include @@ -353,30 +352,27 @@ @@ -1404,30 +1399,27 @@ @@ -353,30 +352,27 @@ @@ -1404,30 +1399,27 @@ @@ -353,30 +352,27 @@ @@ -1404,30 +1399,27 @@ @@ -353,30 +352,27 @@ @@ -1404,30 +1399,27 @@ @@ -353,30 +352,27 @@ @@ -1404,30 +1399,27 @@ @@ -353,30 +352,27 @@ @@ -1404,30 +1399,27 @@ @@ -354,28 +353,25 @@ CCIncludePath2 $PROJ_DIR$\..\libraries\rt_drivers\config - $PROJ_DIR$\applications - $PROJ_DIR$\..\..\..\components\libc\posix\io\epoll - $PROJ_DIR$\..\..\..\components\drivers\smp_call - $PROJ_DIR$\..\..\..\components\drivers\include - $PROJ_DIR$\..\..\..\components\libc\compilers\common\extension - $PROJ_DIR$\..\..\..\components\finsh - $PROJ_DIR$\..\..\..\components\libc\posix\ipc - $PROJ_DIR$\..\..\..\components\libc\posix\io\eventfd - $PROJ_DIR$\..\..\..\components\libc\compilers\common\extension\fcntl\octal - $PROJ_DIR$\..\libraries\AT32M412_416_Firmware_Library\drivers\inc $PROJ_DIR$\..\..\..\libcpu\arm\cortex-m4 + $PROJ_DIR$\..\libraries\rt_drivers $PROJ_DIR$\board + $PROJ_DIR$\..\..\..\components\libc\compilers\common\extension $PROJ_DIR$\..\..\..\components\libc\posix\io\poll $PROJ_DIR$\..\..\..\components\libc\compilers\common\include - $PROJ_DIR$\board\inc - $PROJ_DIR$\..\..\..\include + $PROJ_DIR$\..\..\..\libcpu\arm\common + $PROJ_DIR$\..\..\..\components\libc\posix\ipc + $PROJ_DIR$\applications $PROJ_DIR$\. + $PROJ_DIR$\..\..\..\include $PROJ_DIR$\..\..\..\components\drivers\phy - $PROJ_DIR$\..\libraries\AT32M412_416_Firmware_Library\cmsis\cm4\device_support - $PROJ_DIR$\..\libraries\AT32M412_416_Firmware_Library\cmsis\cm4\core_support - $PROJ_DIR$\..\libraries\rt_drivers - $PROJ_DIR$\..\..\..\libcpu\arm\common + $PROJ_DIR$\..\..\..\components\drivers\smp_call + $PROJ_DIR$\board\inc + $PROJ_DIR$\..\..\..\components\libc\posix\io\eventfd + $PROJ_DIR$\..\..\..\components\drivers\include + $PROJ_DIR$\..\..\..\components\libc\compilers\common\extension\fcntl\octal + $PROJ_DIR$\..\..\..\components\finsh + $PROJ_DIR$\..\..\..\components\libc\posix\io\epoll @@ -1404,28 +1399,25 @@ CCIncludePath2 $PROJ_DIR$\..\libraries\rt_drivers\config - $PROJ_DIR$\applications - $PROJ_DIR$\..\..\..\components\libc\posix\io\epoll - $PROJ_DIR$\..\..\..\components\drivers\smp_call - $PROJ_DIR$\..\..\..\components\drivers\include - $PROJ_DIR$\..\..\..\components\libc\compilers\common\extension - $PROJ_DIR$\..\..\..\components\finsh - $PROJ_DIR$\..\..\..\components\libc\posix\ipc - $PROJ_DIR$\..\..\..\components\libc\posix\io\eventfd - $PROJ_DIR$\..\..\..\components\libc\compilers\common\extension\fcntl\octal - $PROJ_DIR$\..\libraries\AT32M412_416_Firmware_Library\drivers\inc $PROJ_DIR$\..\..\..\libcpu\arm\cortex-m4 + $PROJ_DIR$\..\libraries\rt_drivers $PROJ_DIR$\board + $PROJ_DIR$\..\..\..\components\libc\compilers\common\extension $PROJ_DIR$\..\..\..\components\libc\posix\io\poll $PROJ_DIR$\..\..\..\components\libc\compilers\common\include - $PROJ_DIR$\board\inc - $PROJ_DIR$\..\..\..\include + $PROJ_DIR$\..\..\..\libcpu\arm\common + $PROJ_DIR$\..\..\..\components\libc\posix\ipc + $PROJ_DIR$\applications $PROJ_DIR$\. + $PROJ_DIR$\..\..\..\include $PROJ_DIR$\..\..\..\components\drivers\phy - $PROJ_DIR$\..\libraries\AT32M412_416_Firmware_Library\cmsis\cm4\device_support - $PROJ_DIR$\..\libraries\AT32M412_416_Firmware_Library\cmsis\cm4\core_support - $PROJ_DIR$\..\libraries\rt_drivers - $PROJ_DIR$\..\..\..\libcpu\arm\common + $PROJ_DIR$\..\..\..\components\drivers\smp_call + $PROJ_DIR$\board\inc + $PROJ_DIR$\..\..\..\components\libc\posix\io\eventfd + $PROJ_DIR$\..\..\..\components\drivers\include + $PROJ_DIR$\..\..\..\components\libc\compilers\common\extension\fcntl\octal + $PROJ_DIR$\..\..\..\components\finsh + $PROJ_DIR$\..\..\..\components\libc\posix\io\epoll @@ -353,29 +352,26 @@ @@ -1403,29 +1398,26 @@