1. 06 1月, 2020 1 次提交
  2. 03 1月, 2020 3 次提交
  3. 02 1月, 2020 1 次提交
  4. 30 12月, 2019 1 次提交
  5. 27 12月, 2019 2 次提交
  6. 21 12月, 2019 1 次提交
  7. 20 12月, 2019 4 次提交
  8. 19 12月, 2019 1 次提交
    • D
      add kv fs component · febcf109
      daishengdong 提交于
      1. a true wear-leveling kv fs for norflash, especially optimize for some onchip norflash with "write once on one single write unit" like stm32l4, a true "no earse before write" flash algorithm.
      2. an "as less as possible" gc strategy, do best to save norflash's life.
      3. full "power down protection" support
      4. see "examples" of kv, project in "TencentOS_tiny_EVB_MX_Plus", with onchip flash and qspiflash sample.
      febcf109
  9. 18 12月, 2019 1 次提交
  10. 17 12月, 2019 1 次提交
  11. 16 12月, 2019 1 次提交
  12. 15 12月, 2019 1 次提交
  13. 28 11月, 2019 1 次提交
  14. 26 11月, 2019 2 次提交
  15. 25 11月, 2019 1 次提交
    • D
      a bugfix for mail queue and printf clipping switch · 96cf6207
      daishengdong 提交于
      1. add TOS_CFG_LIBC_PRINTF_EN
      1: enable printf to implement tos_kprintf
      when you call tos_kprintf(actually currently it's a MACRO rather than a function) , the libc will be invloved into the image, most of the time it means a larger image size.
      
      0: disable printf, means tos_kprintf is defined as an empty MACRO
      most of the time, means you will not get a log output from the uart(currently we donnot have a console yet) but a smaller image size.
      
      2. fix a bug of tos_mail_q and tos_priority_mail_q
      if we are post-ing a mail and there is[are] task[s] just pend-ing for the mail queue, the mail delivered to the pend-er will be a pointer, and probably it's a pointer to the local variable on the stack. Actually we should do a memcpy rather than a pointer assignment. for more details, see the patch.
      96cf6207
  16. 22 11月, 2019 1 次提交
  17. 21 11月, 2019 3 次提交
  18. 20 11月, 2019 2 次提交
  19. 19 11月, 2019 3 次提交
  20. 18 11月, 2019 2 次提交
  21. 17 11月, 2019 1 次提交
  22. 15 11月, 2019 5 次提交
  23. 14 11月, 2019 1 次提交