1. 15 11月, 2022 1 次提交
  2. 05 11月, 2022 1 次提交
  3. 26 10月, 2022 1 次提交
  4. 20 10月, 2022 1 次提交
  5. 17 10月, 2022 1 次提交
  6. 16 10月, 2022 2 次提交
  7. 15 10月, 2022 1 次提交
  8. 09 10月, 2022 1 次提交
    • F
      remove unused code to improve speed · e80facfd
      Frank Buss 提交于
      The RT_ASSERT(obj != object) line is only compiled for debug mode.
      But the rt_enter/exit_critical causes the compiler not to optimize
      at least these 2 calls, even if it could optimize out the whole loop,
      because the rt_list_entry function has no side effect, and RT_ASSET
      is a no-operation in release mode. So this patch fixes this:
      - no warnings anymore
      - better speed in release mode
      e80facfd
  9. 27 9月, 2022 1 次提交
  10. 20 9月, 2022 2 次提交
  11. 07 9月, 2022 1 次提交
    • mysterywolf's avatar
      [kernel][version] 采用新的版本宏定义 · ce16945c
      mysterywolf 提交于
      版本控制规范:https://semver.org/
      
      目前的版本子号不是很规范,其中RT_VERSION甚至和VS那边造成了冲突
      ```c
      /* RT-Thread version information */
      #define RT_VERSION                      4L              /**< major version number */
      #define RT_SUBVERSION                   1L              /**< minor version number */
      #define RT_REVISION                     1L              /**< revise version number */
      ```
      
      参考ESP32:
      ```c
      /** Major version number (X.x.x) */
      #define ESP_ARDUINO_VERSION_MAJOR   2
      /** Minor version number (x.X.x) */
      #define ESP_ARDUINO_VERSION_MINOR   0
      /** Patch version number (x.x.X) */
      #define ESP_ARDUINO_VERSION_PATCH   3
      ```
      
      建议改成:
      ```c
      /* Major version number (X.x.x) */
      #define RT_VERSION_MAJOR   4
      /* Minor version number (x.X.x) */
      #define RT_VERSION_MINOR   2
      /* Patch version number (x.x.X) */
      #define RT_VERSION_PATCH   0
      ```
      ce16945c
  12. 02 9月, 2022 1 次提交
  13. 01 9月, 2022 1 次提交
  14. 31 8月, 2022 2 次提交
  15. 30 8月, 2022 1 次提交
    • wannomore's avatar
      tms320f28379d fix init (#6343) · b11cb41a
      wannomore 提交于
      解决 tms320f28379d bsp 启动的问题。主要改动如下。
      
      修正context.s中汇编代码错误。在旧版的代码中,操作数为32位而汇编命令却使用了针对16位数据的命令MOV,导致程序在某些情况无法正常启动线程。
      由于C28x的平台下,SP只支持16bit寻址,所以用于线程空间存放的heap以及ebss段都需要放在低16位的空间,针对这个问题修改了CMD文件。此外还增加基于CMD文件基于RAM的支持,方便调试。
      新增rtdef.h中RT_SECTION,RT_USED,ALIGN和RT_WEAK的定义。旧版bsp中这些定义为空,导致INIT_EXPORT注册的函数失效。
      修改程序启动代码,在程序入口直接调用原生启动代码
      以上改动在LAUNCHXL-F28379D 通过了测试。
      b11cb41a
  16. 28 8月, 2022 1 次提交
  17. 25 8月, 2022 2 次提交
  18. 21 8月, 2022 1 次提交
    • Y
      [bsp][tms320f28379d] Fix compile ti (#6254) · b43f0e72
      Yunjie Gu 提交于
      * compile_ok
      
      Issues fixed:
      (1) update .config: select FINSH_USING_SYMTAB
      (2) add rt_size_t in rtconfig_project.h
      (3) fix finsh problems of using sym table
      (4) update .project to include ipc source codes.
      Todo list:
      (1) automate the build source selection of ccs and reconcile it with scons
      
      * change compiler
      
      * msh can run now
      
      the key step is to swap the order of rt_interrupt_nest -- and RT_OBJECT_HOOK_CALL(rt_interrupt_leave_hook,()) in irq.c. This is an improvised solution and an issue has been raised.
      
      * Update 2837x_FLASH_lnk_cpu1.cmd
      
      The original one is also fine. Just to make it more rigorous since FSymTab is in data section.
      
      * update readme.md
      
      Complier selection and maintainer update.
      Co-authored-by: wannomore's avatarYuQi <qiyu_sjtu@163.com>
      b43f0e72
  19. 16 8月, 2022 1 次提交
  20. 15 8月, 2022 1 次提交
  21. 08 8月, 2022 1 次提交
  22. 03 8月, 2022 1 次提交
  23. 29 6月, 2022 1 次提交
  24. 22 6月, 2022 1 次提交
  25. 13 6月, 2022 1 次提交
  26. 08 6月, 2022 1 次提交
  27. 02 6月, 2022 1 次提交
  28. 28 5月, 2022 1 次提交
  29. 18 5月, 2022 1 次提交
  30. 29 4月, 2022 4 次提交
  31. 21 4月, 2022 1 次提交
  32. 20 4月, 2022 2 次提交