1. 09 3月, 2015 1 次提交
    • B
      Fix compile warning: · 0b5958d7
      Bright Pan 提交于
      	..\..\libcpu\arm\cortex-m3\context_rvds.S(207):
      	warning: A1581W: Added 2 bytes of padding at address 0xd6
      0b5958d7
  2. 11 9月, 2014 1 次提交
  3. 12 8月, 2014 1 次提交
  4. 31 7月, 2014 1 次提交
  5. 27 6月, 2014 1 次提交
  6. 08 4月, 2014 2 次提交
  7. 03 4月, 2014 1 次提交
  8. 11 1月, 2014 1 次提交
  9. 17 11月, 2013 2 次提交
  10. 04 11月, 2013 1 次提交
    • B
      Fix hardfault bug for gcc port · 06987e72
      Bright Pan 提交于
      for 2013-02-20 aozima commmit "port for gcc", but the commit is
      not tested,and the kernel is breakdown in context_gcc.S, the file
      is a copy from cortex-m3,but not port for cortex-m0, so i complete
      this port for aozima, test it in stm32f0discovery board ,
      and it works fine.
      06987e72
  11. 20 10月, 2013 4 次提交
  12. 22 9月, 2013 1 次提交
  13. 20 9月, 2013 1 次提交
  14. 21 7月, 2013 5 次提交
  15. 09 7月, 2013 1 次提交
  16. 24 6月, 2013 1 次提交
  17. 23 6月, 2013 3 次提交
  18. 22 6月, 2013 3 次提交
  19. 18 6月, 2013 1 次提交
  20. 16 6月, 2013 1 次提交
  21. 12 6月, 2013 2 次提交
  22. 05 6月, 2013 2 次提交
  23. 31 5月, 2013 3 次提交
    • G
      move libcpu/arm/rm48x50/ to libcpu/arm/cortex-r4 · e74befca
      Grissiom 提交于
      e74befca
    • G
      rm48x50: VFP lazy stacking · 24fc6e6e
      Grissiom 提交于
      You need to turn on RT_VFP_LAZY_STACKING in rtconfig.h. By default, RTT
      will turn on VFP for all threads and stack all the VFP registers. When
      doing lazy stacking, VFP will only be turned on for the thread who
      issued VFP instructions.
      
      Currently, if a thread turned on VFP, it cannot be turned off. RTT will
      never know what time the thread doesn't need VFP any more. The thread
      might could turn off the VFP for it self in proper time.
      24fc6e6e
    • G
      rm48x50: change STMFD/LDMFD to STMDB/LDMIA · 8bbfd45c
      Grissiom 提交于
      VFP instructions only have IA(Increment After)/DB(Decrement Before)
      mode. To keep consistency, just change STM/LDM to DB/IA accordingly.
      8bbfd45c