1. 03 1月, 2023 3 次提交
  2. 02 1月, 2023 5 次提交
  3. 01 1月, 2023 1 次提交
  4. 30 12月, 2022 5 次提交
  5. 29 12月, 2022 3 次提交
  6. 28 12月, 2022 3 次提交
  7. 27 12月, 2022 1 次提交
    • H
      [bsp][ch32v307]适配RT-duino框架 (#6669) · 59f10fd7
      hg0720 提交于
      为ch32v307适配rt-duino,支持pwm、gpio、uart、iic,暂不支持 spi。
      已在ch32v307评估板测试。
      测试内容包括串口打印、呼吸灯、AHT10温湿度读取等。
      59f10fd7
  8. 26 12月, 2022 11 次提交
  9. 25 12月, 2022 1 次提交
  10. 23 12月, 2022 2 次提交
  11. 22 12月, 2022 4 次提交
    • mysterywolf's avatar
      [sensor] draft new sensor-hal framework (#6746) · 262392a6
      mysterywolf 提交于
      * [sensor] new sensor framework
      针对老版本sensor框架的诸多不合理设计进行重构
      之前的PR中已经重构了浮点数相关的问题
      本次PR主要围绕sensor的整体架构予以重构,对过于理想化的参数和模式予以删除
      * [sensor] 增加can modbus总线类型
      * [stm32l745] 完善sensor对接
      * [sensor] fix the onchip ID print
      262392a6
    • L
      [ch32]对接了rt_hw_context_switch_interrupt接口 (#6749) · c930b4f6
      linshire 提交于
      * 对接了rt_hw_context_switch_interruptC(rt_ubase_t from, rt_ubase_t to, rt_thread_t from_thread, rt_thread_t to_thread)接口
      
      * Update libcpu/risc-v/ch32v1/cpuport.c
      Co-authored-by: mysterywolf's avatarMan, Jianting (Meco) <920369182@qq.com>
      c930b4f6
    • Z
      [stm32f1] 对于RTC-Alarm进行添加STM32F1宏控制 (#6765) · f4323f20
      Zxy 提交于
      并确认并列出已经在什么情况或板卡上进行了测试。
      And confirm in which case or board has been tested. -->
      STM32F103ZET6
      
      为什么提交这份PR (why to submit this PR)
      使用STM32F103ZET6的RTC的Alarm功能出现问题,按照原本的驱动代码编译会报错。
      
      你的解决方案是什么 (what is your solution)
      修改底层驱动drv_rtc.c文件,将报错的几个结构体给注释掉即可。
      
      在什么测试环境下测试通过 (what is the test environment)
      rtstudio下对STM32F103ZET6进行测试并且成功运行Alarm功能
      f4323f20
    • [arduino][stm32f427-robomaster-a] : 对接RTduino (#6767) · eec9d4f5
      螺丝松掉的人 提交于
      * [arduino][stm32f427-robomaster-a] : 对接RTduino
      
      * Update README.md
      
      * Update pins_arduino.c
      Co-authored-by: mysterywolf's avatarMan, Jianting (Meco) <920369182@qq.com>
      eec9d4f5
  12. 21 12月, 2022 1 次提交
    • mysterywolf's avatar
      [kenel] add static name for rt_object (#6422) · 061af7b0
      mysterywolf 提交于
      增加静态object 名字,用户可以根据内存实际使用情况决定使用动态还是静态。适用于资源极度受限的情况下使用。该功能在RT-Thread完整版本中不常用,主要用于RT-Thread Nano,以缩减对内存的占用。由于没有动态拼接支持,在静态名字下,空闲线程的名字在多核时将命名成相同的名字。
      061af7b0