Skip to content
Snippets Groups Projects
  1. Apr 18, 2017
  2. Apr 13, 2017
  3. Apr 05, 2017
  4. Mar 15, 2017
    • Martine Lenders's avatar
      netdev2: rename to netdev and remove `gnrc_netdev` · 29842bb5
      Martine Lenders authored
      With some minor hand-edits I used the following chain of commands:
      
      ```sh
      git rm sys/include/net/gnrc/netdev.h
      git grep --name-only -i netdev2 | \
              xargs sed -i -e 's/^\(NETDEV\)2\(.*\)\( [("]\)/\1\2 \3/g' \
                           -e 's/\(netdev\)2\(.*\)\( \/\*\*<\)/\1\2 \3/I' \
                           -e 's/\(netdev\)2/\1/gI'
      git add -p
      git commit --amend
      git ls-tree --full-tree -r HEAD --name-only | \
              grep "netdev2" | xargs -I'{}' dirname '{}' | uniq | \
              grep "netdev2" | while read dir; do
                      new_dir="$(echo "$dir" | sed "s/netdev2/netdev/g")"
                      git mv -f "$dir" "$new_dir"
              done
      git commit --amend
      git ls-tree --full-tree -r HEAD --name-only | \
              grep "netdev2" | while read file; do
                      new_file="$(echo "$file" | sed "s/netdev2/netdev/g")"
                      git mv -f "$file" "$new_file"
              done
      git commit --amend
      git grep --name-only "\<drivers_netdev_netdev\>" | \
              xargs sed -i "s/\<drivers_netdev_netdev\>/drivers_netdev_api/g"
      git add -p
      git commit --amend
      ```
      29842bb5
  5. Jan 16, 2017
  6. Jan 14, 2017
  7. Jun 15, 2016
  8. Apr 08, 2016
  9. Mar 10, 2016
  10. Feb 05, 2016
  11. Dec 19, 2015
  12. Dec 15, 2015
  13. Dec 08, 2015
  14. Nov 24, 2015
  15. Nov 19, 2015
  16. Nov 17, 2015
  17. Nov 16, 2015
  18. Sep 03, 2015
  19. Aug 06, 2015
  20. May 28, 2015
  21. May 20, 2015
    • Lucas Jenss's avatar
      Improve naming of thread stacksize/priority constants · 426170b0
      Lucas Jenss authored
      As discussed in #2725, this commit renames a number of stacksize constants to
      better convey their intended usage. In addition, constants for thread priority
      are given a `THREAD_` prefix. Changes are:
      
      * KERNEL_CONF_STACKSIZE_PRINTF renamed to THREAD_EXTRA_STACKSIZE_PRINTF
      * KERNEL_CONF_STACKSIZE_DEFAULT renamed to THREAD_STACKSIZE_DEFAULT
      * KERNEL_CONF_STACKSIZE_IDLE renamed to THREAD_STACKSIZE_IDLE
      * KERNEL_CONF_STACKSIZE_MAIN renamed to THREAD_STACKSIZE_MAIN
      * Move thread stacksizes from kernel.h to thread.h, since the prefix changed
      * PRIORITY_MIN renamed to THREAD_PRIORITY_MIN
      * PRIORITY_IDLE renamed to THREAD_PRIORITY_IDLE
      * PRIORITY_MAIN renamed to THREAD_PRIORITY_MAIN
      * Move thread priorities from kernel.h to thread.h since the prefix has changed
      * MINIMUM_STACK_SIZE renamed to THREAD_STACKSIZE_MINIMUM for consistency
      426170b0
  22. May 19, 2015
  23. Oct 23, 2014
    • Oleg Hahm's avatar
      doc: beautify HTML documentation · c0bcac46
      Oleg Hahm authored
      * add logo
      * add description
      * use RIOT specific color scheme
      * add search functionality
      * remove broken custom header, footer, and style sheet
      c0bcac46
  24. Jul 20, 2014
  25. May 26, 2014
  26. Feb 18, 2014
  27. Feb 12, 2014
  28. Feb 11, 2014
  29. Jan 22, 2014
  30. Jan 21, 2014
  31. Jan 17, 2014
  32. Aug 15, 2013
  33. Mar 11, 2013
Loading