1. 05 4月, 2023 1 次提交
  2. 01 4月, 2023 1 次提交
  3. 31 3月, 2023 1 次提交
  4. 23 3月, 2023 1 次提交
  5. 22 3月, 2023 2 次提交
  6. 20 3月, 2023 3 次提交
  7. 19 3月, 2023 1 次提交
  8. 17 3月, 2023 2 次提交
  9. 08 2月, 2023 1 次提交
  10. 16 1月, 2023 1 次提交
    • L
      add some apm32 bsp and fix apm32f0/apm32f1 gcc startup assembly file bug and... · 2da43feb
      luobeihai 提交于
      add some apm32 bsp and fix apm32f0/apm32f1 gcc startup assembly file bug and fix apm32 drv_eth.c bug (#6855)
      
      * add some apm32 bsp and fix apm32f0/apm32f4 gcc startup assembly file bug and fix drv_eth.c bug
      
      * fix apm32f103xe-minibroard and apm32f407ig-minibroard link.lds file error
      
      * replace apm32f051r8-evalboard picture
      
      * fix apm32f1 gcc assembly startup file suffix name
      
      * renamed startup_apm32f10x_md.s/startup_apm32f10x_hd.s file and modify apm32f103xe-minibroard/board SConscript file
      2da43feb
  11. 13 1月, 2023 1 次提交
  12. 09 1月, 2023 2 次提交
  13. 05 1月, 2023 1 次提交
  14. 12 12月, 2022 1 次提交
    • mysterywolf's avatar
      [rtdef] use lower-case to define attributes (#6728) · 99bdf978
      mysterywolf 提交于
      * [rtdef] rename RT_WEAK attribute as rt_weak
      
      * [rtdef] rename RT_USED attribute as rt_used
      
      * [rtdef] rename RT_SECTION attribute as rt_section
      
      * [rtdef] rename ALIGN attribute as rt_align
      
      * [legacy] add RT_USED ALIGN RT_SECTION RT_WEAK as legacy support
      99bdf978
  15. 06 9月, 2022 1 次提交
    • X
      [bsp][APM32][APM32F407VGT6] (#6377) · d321e524
      xuhonghao 提交于
      使用APM32F407VGT6芯片发现shell命令行无法接收命令,解决shell命令行输入问题
      
      将board.c中的:
      GPIO_ConfigStruct.mode = GPIO_MODE_IN;
      GPIO_ConfigStruct.pupd = GPIO_PUPD_UP;
      修改为:
      GPIO_ConfigStruct.mode = GPIO_MODE_AF;
      GPIO_ConfigStruct.pupd = GPIO_PUPD_NOPULL;
      
      使用APM32F407VGT6测试成功
      d321e524
  16. 16 8月, 2022 2 次提交
  17. 01 8月, 2022 1 次提交
  18. 27 7月, 2022 2 次提交
  19. 09 6月, 2022 3 次提交
  20. 20 4月, 2022 1 次提交
  21. 29 3月, 2022 1 次提交
  22. 28 3月, 2022 1 次提交
  23. 21 3月, 2022 1 次提交
  24. 08 3月, 2022 2 次提交
    • A
      update readme picture name (#5644) · 0569add5
      andychen329 提交于
      update readme picture name
      0569add5
    • S
      本次PR涉及①BSP驱动新增②F103库更新③GCC、IAR适配及MDK更新④README文件及由更新驱动引起的脚本改动。 (#5638) · fb61c796
      stevetong459 提交于
      * 本次提交包括①BSP驱动新增②F103库更新③GCC、IAR适配及MDK更新④README文件及由更新驱动引起的脚本改动。
      详情如下:
      一、BSP驱动新增
      这是本次PR的主要目的,现新增了如下BSP驱动:
      ADC、DAC、RTC、PWM、HWTIMER、I2C、SPI和WDT等八个驱动文件。
      二、F103库更新:
      本次提交使用2022年3月初极海官网发布的最新F103库,主要增加了版权声明、USB驱动及其他代码调整。
      三、编译器适配:
      1、新增GCC编译支持,在ENV工具下编译能成功且输出的bin文件能够使开发板闪灯。
      2、新增IAR工程支持。
      3、由F103的SDK更新,MDK的工程也进行了相应更新。
      四、其他
      1、README文件做了修改,加入了scons编译后的jlink下载说明和官网链接。
      2、Kconfig、SConscript脚本根据驱动更新做了修改。
      
      * 格式化代码(AStyle + Formatting)
      
      * 增加BSP APM版权声明
      
      * 在ci添加当前bsp的路径,以能够验证gcc能否正常编译
      
      * 路径的“\”改为“/”
      fb61c796
  25. 26 1月, 2022 1 次提交
  26. 09 1月, 2022 1 次提交
  27. 30 12月, 2021 1 次提交
  28. 17 12月, 2021 2 次提交
    • mysterywolf's avatar
      [posix] POSIX standard implementation for PSE51 (#5384) · 6369e895
      mysterywolf 提交于
      * [posix] POSIX standard implementation for PSE51
      
      - add some posix's interfaces that we haven't before.
      - these PR have passed the interface definition test across gcc platfrom;
      - have tested base on qemu-a9 and stm32h750-art-pi.
      
      * [newlib] only enable POSIX.1-1990
      
      * update projects
      6369e895
    • L
      [update] CFLAGS · b0f6c2fb
      liukangcc 提交于
      b0f6c2fb
  29. 16 12月, 2021 1 次提交
    • 还_没_想_好's avatar
      分离内存分配接口与内存分配算法 (#5175) · d724eed9
      还_没_想_好 提交于
      * [kernel][mem] Multiple instances of small memory allocation algorithm
      
      * [kernel][mem] Change small memory management algorithm memory header flag
      
      * [kernel][mem] Fix assertion problem
      
      * [kernel][slab] Multiple instances of slab memory management algorithm
      
      * [kernel][memheap] Remove rt_malloc/rt_free/rt_realloc and other related memory interfaces
      
      * [kernel][mem] Clean up memory space of small memory management objects
      
      * [kernel][kservice] Add memory application interface and thread protection interface
      
      * [kernel][kservice] Fix function return value problem
      
      * [kernel][memheap] Optimize memheaptrace print
      
      * [kernel][memheap] Support best mode
      
      * [kernel][memory] Remove semaphore lock
      
      * [kernel][memheap] Add locked flag
      
      * [kernel][memory] Support malloc memory in interrupt
      
      * [kernel][memheap] Add 'memheapcheck' cmd
      
      * [kernel][mem] Fix failure to request full memory
      
      * [kernel][memheap] Fix compilation warning
      
      * [kernel][mem] Fix mem realloc ASSERT
      
      * [examples][testcases] Add small mem testcase
      
      * [examples][mem_tc] Modify test memory size
      
      * [examples][testcases] Add slab memory management algorithm test case
      
      * [examples][testcases] fix small memory management algorithm test case
      
      * [kernel][memory] Adjusting memory allocation algorithm object definition and interface
      
      * [kernel][memory] Fix compilation warning
      
      * [examples][utest] Fix mem test case
      
      * [examples][utest] fix slab test case
      
      * [utest][testcases] Shorten test time
      
      * [kernel][memory] Formatting code
      
      * [examples][utest] Adjust test run time
      
      * [examples][utest] Formatting code
      
      * [bsp] update all rtconfig.h
      d724eed9