1. 15 5月, 2014 6 次提交
  2. 05 5月, 2014 1 次提交
  3. 27 4月, 2014 1 次提交
  4. 25 4月, 2014 7 次提交
  5. 20 4月, 2014 2 次提交
  6. 16 4月, 2014 2 次提交
  7. 15 4月, 2014 1 次提交
  8. 14 4月, 2014 1 次提交
  9. 13 4月, 2014 1 次提交
  10. 12 4月, 2014 6 次提交
  11. 11 4月, 2014 1 次提交
  12. 10 4月, 2014 6 次提交
    • B
      Merge pull request #260 from grissiom/logtrace-next · 279f2cb9
      Bernard Xiong 提交于
      Logtrace next
      279f2cb9
    • G
      logtrace: add log_session_lvl · 299cccfb
      Grissiom 提交于
      log_session_lvl is suitable for performance critical places where in
      most cases, the log is turned off by level. If the session is const and
      the level is greater than session->lvl, the whole function will be
      optimized out.
      299cccfb
    • G
      logtrace: add const modifier to the APIs · 12728bcd
      Grissiom 提交于
      Compiler may do more optimization when the parameter is const.
      12728bcd
    • B
      Merge pull request #254 from weety/Branch_usb · abcef00c
      Bernard Xiong 提交于
      [USB]fix rt_usbd_set_config() BUG which set the USB device to configurat...
      abcef00c
    • G
      scons: no need to set RTT_ROOT as Repository · 81b284b3
      Grissiom 提交于
      In SCons manual:
      
      =================
      In order to inform the C compiler about the repositories,  SCons will
      add appropriate -I flags to the compilation commands for each directory
      in the $CPPPATH list. So if we add the current directory to the
      construction environment $CPPPATH like so:
      
          env = Environment(CPPPATH = ['.'])
          env.Program('hello.c')
          Repository('/usr/repository1')
      
      Then re-executing SCons yields:
      
          % scons -Q
          cc -o hello.o -c -I. -I/usr/repository1 hello.c
          cc -o hello hello.o
      =================
      
      The additional include directory is definitely not what we want. Just
      remove the additional Repository line.
      81b284b3
    • G
      scons: seperate the BSP build with the kernel build · a03816ef
      Grissiom 提交于
      BSPs could have their own components/ etc. If they point to the same
      folder, SCons would find the wrong source code to compile.
      a03816ef
  13. 09 4月, 2014 3 次提交
  14. 08 4月, 2014 2 次提交