1. 20 10月, 2022 1 次提交
  2. 19 10月, 2022 2 次提交
  3. 18 10月, 2022 3 次提交
  4. 17 10月, 2022 6 次提交
  5. 16 10月, 2022 1 次提交
  6. 15 10月, 2022 4 次提交
  7. 13 10月, 2022 1 次提交
  8. 12 10月, 2022 5 次提交
  9. 11 10月, 2022 10 次提交
  10. 10 10月, 2022 4 次提交
  11. 09 10月, 2022 3 次提交
    • X
      bug fix · 80f495de
      xiaoguang_ma 提交于
      When detecting all SDIO devices fails, it is also necessary to return information
      80f495de
    • wannomore's avatar
      [bsp][c28x] add driver for GPIO and improve pwm's driver (#6493) · 7c122cca
      wannomore 提交于
      1. 增加PWM模块的配置kconfig代码
      2. 调整目录结构,新增c28x文件夹,将原有tms320f28379的porting移动至c28x文件夹下,通用设备驱动移动至c28x/libraries下
      3. 增加gpio驱动代码以及外部中断触发驱动代码
      
      目前已经在tms320f28379上通过测试
      7c122cca
    • 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