Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge with Riot Master #1

Merged
merged 1,151 commits into from
Apr 22, 2016
Merged

Merge with Riot Master #1

merged 1,151 commits into from
Apr 22, 2016
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Mar 30, 2016

  1. Merge pull request #5204 from OTAkeys/include_stdint

    sys/include: include stdint in uart_stdio.h
    OlegHahm committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    2db2d1f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    076a49b View commit details
    Browse the repository at this point in the history
  3. Merge pull request #4835 from authmillenon/netdev2_test/feat/init

    netdev2_test: initial import
    PeterKietzmann committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    dcafbb8 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #5202 from kaspar030/pkg_add_jsmn

    pkg: add jsmn minimal JSON parser
    kaspar030 committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    dc1616b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    036e7f2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    46143c6 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    412b363 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    410f44f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    5431df6 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9b8417f View commit details
    Browse the repository at this point in the history
  11. Merge pull request #5208 from kaspar030/fix_ethos_compile

    drivers: ethos: fix compile errors
    miri64 committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    c5dc5b2 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #5200 from kaspar030/optimize_thread_flags

    core: thread_flags: optimize thread_flags_wait_one, fix doxygen
    miri64 committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    3ddff58 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #3551 from authmillenon/pkg/port/lwip

    lwIP: Initial import
    miri64 committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    4dbc26f View commit details
    Browse the repository at this point in the history
  14. emb6: initial import

    miri64 committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    aecb8ef View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    518f645 View commit details
    Browse the repository at this point in the history
  16. emb6: add netdev2 wrapper

    miri64 committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    0b0d3b1 View commit details
    Browse the repository at this point in the history
  17. emb6: add conn_udp wrapper

    miri64 committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    0ab8aae View commit details
    Browse the repository at this point in the history
  18. z1: Fix UART pin assignment

    Joelfp committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    28d0097 View commit details
    Browse the repository at this point in the history
  19. tests: add emb6 test

    miri64 committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    43f7f55 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    b1c06be View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    58a12e5 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    a833d83 View commit details
    Browse the repository at this point in the history
  23. Merge pull request #3851 from kaspar030/make_messaging_optional

    core: make messaging optional
    OlegHahm committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    c09190b View commit details
    Browse the repository at this point in the history
  24. Merge pull request #4819 from Lotterleben/microcoap_example_copper_fix

    microcoap_server: make app fully work with Copper
    OlegHahm committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    0e3a9c6 View commit details
    Browse the repository at this point in the history
  25. udoo: fix LED macro

    miri64 committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    0f9dec9 View commit details
    Browse the repository at this point in the history
  26. Merge pull request #5211 from kaspar030/ethos_fixes

    drivers: ethos: misc fixes
    OlegHahm committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    4f17d2b View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2016

  1. native: add UART driver based on /dev/tty

    uart0 functionality is removed by #3164. This patch implements periph/uart,
    rather than deprecated uart0, using /dev/tty.
    To use with netdev2_tap simultaneously, this patch adds asynchronus read system
    and modifies netdev2_tap to use it.
    
    A TTY device is specified on command line with -c (COM) option, since -t was
    used by the old implementation.
    
    This patch also implements empty GPIO driver needed by the xbee driver.
    Yonezawa-T2 committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    79d3389 View commit details
    Browse the repository at this point in the history
  2. netdev2_tap: continue reading even if no spaces left in pktbuf

    On OS X, `netdev2_tap` suspends monitoring file descriptor until `_recv` is
    called. If no spaces in left in pktbuf, `gnrc_netdev2_eth` does not call `_recv`
    that results in deadlock.
    
    With this commit, `gnrc_netdev2_eth` calls `_recv` with NULL buffer and non-zero
    length parameter, that indicates the driver to drop frame and resume working.
    Yonezawa-T2 committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    c4bc424 View commit details
    Browse the repository at this point in the history
  3. sys/newlib: Fix function definitions to match newlib prototypes

    Joakim Nohlgård committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    be8cf8b View commit details
    Browse the repository at this point in the history
  4. Merge pull request #5214 from gebart/pr/newlib-prototype-fixes

    sys/newlib: Fix function definitions to match newlib prototypes
    OlegHahm committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    d699ff1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a41efb6 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #5210 from gtrpucp/BOARD_Z1_FIX_UART

    Board z1: Fix UART pin assignment
    miri64 committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    dd0fe60 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #4443 from Yonezawa-T2/native_tty_uart

    native: add UART driver based on /dev/tty
    kYc0o committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    ecf7b46 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    dcda44e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    20d6ead View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4ea6d26 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    62de9c9 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    cc0e94f View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    0620028 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #4949 from jia200x/nucleo-f072

    board: added support for nucleo f072
    haukepetersen committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    02df871 View commit details
    Browse the repository at this point in the history
  15. Merge pull request #5216 from authmillenon/tests/fix/i4372

    tests: xtimer_msg_receive_timeout: initialize values
    kaspar030 committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    757d461 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    c3f7186 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    29e7ea4 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    7d151f2 View commit details
    Browse the repository at this point in the history
  19. Merge pull request #4713 from authmillenon/pkg/port/emb6

    pkg: initial import of emb6 stack
    miri64 committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    8ab89c4 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2016

  1. Merge pull request #5220 from kaspar030/ethos_name_fix

    dist: ethos: fix usage string
    Joakim Nohlgård committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    b5497c3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5059 from kaspar030/unify_asm_keyword

    unify usage of inline assembly keywords
    kaspar030 committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    39984de View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9a4df61 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f5fb3bf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    af8f404 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #5226 from haukepetersen/fix_xbee_debug

    drivers/xbee: fixed missing newline in DEBUG
    haukepetersen committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    124ee42 View commit details
    Browse the repository at this point in the history
  7. make: don't print some test commands

    When invoking make with QUIET=0 these test are printed to stdout, which
    could be confusing.
    Toon Stegen committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    0221e6d View commit details
    Browse the repository at this point in the history
  8. make: clean up output

    Remove space at begginning or error output line.
    Toon Stegen committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    f3ccc3b View commit details
    Browse the repository at this point in the history
  9. Merge pull request #5215 from haukepetersen/fix_telosb_baudrate

    boards/telosb: changed default baudrate to 9600
    cgundogan committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    9f764cf View commit details
    Browse the repository at this point in the history
  10. Merge pull request #5225 from OTAkeys/fix_make_prints

    make: fix make output when QUIET=0
    cgundogan committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    a74a61b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    36a7d29 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #5131 from jia200x/newlib_makefile_fix

    Makefile: Newlib: Added pattern to NEWLIB_INCLUDE_PATTERN
    cgundogan committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    909c018 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #5219 from kaspar030/fix_pkg_minusB_build

    make: pkg: remove pkg source dir before checkout
    miri64 committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    d9dd1f5 View commit details
    Browse the repository at this point in the history
  14. boards/arduino-mega: Changes in Arduino pin mapping

    The MCU pins was not correctly mapped to Arduino pins.
    Updated the mapping so that MCU pins respons to the correct Arduino pins.
    pdNor committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    c8f51e2 View commit details
    Browse the repository at this point in the history
  15. Merge pull request #5194 from pdNor/arduino_mega_pins

    boards/arduino-mega2560: updated arduino pin mapping
    kYc0o committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    ceab9bd View commit details
    Browse the repository at this point in the history
  16. drivers: si70xx: fixed left shift compiler warning for 16bit platforms

    Signed-off-by: malo <malo@25cmsquare.io>
    malosek committed Apr 1, 2016
    Configuration menu
    Copy the full SHA
    86eb928 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2016

  1. gnrc_sixlowpan_iphc.c: handle forwarded GNRC_NETTYPE_IPV6 packet

    jfischer-no authored and Joakim Nohlgård committed Apr 2, 2016
    Configuration menu
    Copy the full SHA
    f405891 View commit details
    Browse the repository at this point in the history
  2. fib: use return constants for universal_address_compare()

    BytesGalore authored and BytesGalore committed Apr 2, 2016
    Configuration menu
    Copy the full SHA
    2bbd2d1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d25fb8a View commit details
    Browse the repository at this point in the history
  4. fib: removed obsolete check for default route match

    BytesGalore authored and BytesGalore committed Apr 2, 2016
    Configuration menu
    Copy the full SHA
    8589e8f View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2016

  1. Merge pull request #5222 from BytesGalore/fib_use_universal_address_r…

    …eturn_values
    
    fib: use return constants for `universal_address_compare()`
    Lotterleben committed Apr 3, 2016
    Configuration menu
    Copy the full SHA
    5f6cc67 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    900528b View commit details
    Browse the repository at this point in the history
  3. drivers enc28j60: correctly initialize netstats

    Driver's netstats should be initialize in init, not isr...
    OlegHahm committed Apr 3, 2016
    Configuration menu
    Copy the full SHA
    4ba7392 View commit details
    Browse the repository at this point in the history
  4. drivers encx24j600: introduce netstats

    This driver was missing netstats completely so far.
    OlegHahm committed Apr 3, 2016
    Configuration menu
    Copy the full SHA
    aa043a5 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5236 from OlegHahm/netstats_fixes

    netstats: several fixes
    OlegHahm committed Apr 3, 2016
    Configuration menu
    Copy the full SHA
    1b635e1 View commit details
    Browse the repository at this point in the history
  6. driver: assure required buffer size

    The cpuid buffer is also used as a temporary buffer to store the EUI-64 of the transceiver, so we need to make sure that it is always big enough.
    May be padded with zeroes for smaller CPUIDs.
    OlegHahm committed Apr 3, 2016
    Configuration menu
    Copy the full SHA
    6f58862 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2016

  1. Configuration menu
    Copy the full SHA
    a59e100 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5239 from OlegHahm/cpuid_smaller_8

    driver: assure required buffer size
    OlegHahm committed Apr 4, 2016
    Configuration menu
    Copy the full SHA
    53f33c4 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5242 from OlegHahm/eliminate_ieee802154_literals

    ieee802154: replace literals for lengths by macros
    miri64 committed Apr 4, 2016
    Configuration menu
    Copy the full SHA
    4d46a5f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    416b975 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3260638 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e0b475b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0169ec3 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #5243 from OlegHahm/at86rf2xx_memset

    drivers 802154: use memset for eui64 padding
    miri64 committed Apr 4, 2016
    Configuration menu
    Copy the full SHA
    05b1968 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6ce6bb6 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2016

  1. Merge pull request #5235 from basilfx/feature/jlink_serial

    dist: jlink: flash mcu based on serial number
    OlegHahm committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    3b07949 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5245 from OlegHahm/at86rf2xx_netstats_ifdef

    at86rf2xx: fix netstats_l2 ifdef
    Kijewski committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    f742839 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5246 from OlegHahm/netstats_l2_test

    tests: add compile test for netstats_l2
    OlegHahm committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    8ed19f5 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2016

  1. sys/newlib: Update _read_r and _write_r to match newlib prototypes in…

    … reent.h
    Joakim Nohlgård committed Apr 6, 2016
    Configuration menu
    Copy the full SHA
    bc5eded View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5249 from gebart/pr/newlib-readwrite-prototypes

    sys/newlib: Update _read_r and _write_r to match newlib prototypes in reent.h
    OlegHahm committed Apr 6, 2016
    Configuration menu
    Copy the full SHA
    5b38659 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6bebc9d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d9d5d88 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1ac0ab6 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e8c97c5 View commit details
    Browse the repository at this point in the history
  7. cpu/cortex-m: Enable STKALIGN to make the Cortex-M keep the stack 8 b…

    …yte aligned on 4 byte aligned stack pointers
    DipSwitch committed Apr 6, 2016
    Configuration menu
    Copy the full SHA
    b6140f1 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2016

  1. Configuration menu
    Copy the full SHA
    1c73e7a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9e4c08d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    23b75c4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9652aa3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c95fb05 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2016

  1. drivers/saul: Fix typo in documentation

    Joakim Nohlgård committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    1f645cf View commit details
    Browse the repository at this point in the history
  2. Makefile.pseudomodules: Sort pseudomodule list

    Joakim Nohlgård committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    734892d View commit details
    Browse the repository at this point in the history
  3. sys/saul: Add analog inputs to SAUL via periph/adc

    Joakim Nohlgård committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    50b48c2 View commit details
    Browse the repository at this point in the history
  4. boards/mulle: Add SAUL ADC parameters

    Joakim Nohlgård committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    99deb32 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5254 from haukepetersen/opt_atmega_timer

    cpu/atmega2560: reworked timer implementation
    haukepetersen committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    553d18a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1367df0 View commit details
    Browse the repository at this point in the history
  7. at86rf2xx: introduce pending TX counter

    This counter is necessary for the current concept to tell the driver when to return to idle after sending.
    OlegHahm committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    252baec View commit details
    Browse the repository at this point in the history
  8. Merge pull request #5253 from haukepetersen/fix_make_radiodeps

    make: moved driver deps to drivers/Makefile.deps
    OlegHahm committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    bec329c View commit details
    Browse the repository at this point in the history
  9. Merge pull request #5261 from OlegHahm/at86rf2xx_pending_TX

    at86rf2xx: introduce pending TX counter
    OlegHahm committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    e2cb553 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #5256 from DipSwitch/pr/fix_cortex_initialization

    cpu/cortex-m: Enable STKALIGN to make the Cortex-M keep the stack 8 byte aligned
    haukepetersen committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    acf9bf7 View commit details
    Browse the repository at this point in the history
  11. doc: fix typo

    miri64 committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    8c52d3e View commit details
    Browse the repository at this point in the history
  12. Merge pull request #5266 from authmillenon/doc/fix/typos

    doc: fix typo
    OlegHahm committed Apr 8, 2016
    Configuration menu
    Copy the full SHA
    040ad55 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    889adc1 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    4d9ac9e View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    018b3b4 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    ef25f32 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    8a07982 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2016

  1. Merge pull request #5272 from cgundogan/pr/seq/enhance

    seq: bitwise and instead of mod
    miri64 committed Apr 9, 2016
    Configuration menu
    Copy the full SHA
    7cc2a91 View commit details
    Browse the repository at this point in the history
  2. cib: doc fix

    cgundogan committed Apr 9, 2016
    Configuration menu
    Copy the full SHA
    2adc0ea View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1c45c50 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    627b80e View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5277 from authmillenon/netopt/doc/fix-typo

    netopt: fix typo in documentation
    miri64 committed Apr 9, 2016
    Configuration menu
    Copy the full SHA
    91685e3 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #5276 from authmillenon/netdev2/doc/event_cb-ref

    netdev2: fix event_callback references
    kaspar030 committed Apr 9, 2016
    Configuration menu
    Copy the full SHA
    d171c96 View commit details
    Browse the repository at this point in the history
  7. drivers: si70xx: fixed si70xx_measure return value calculation on 16b…

    …it platforms
    
    Signed-off-by: malo <malo@25cmsquare.io>
    malosek committed Apr 9, 2016
    Configuration menu
    Copy the full SHA
    b9705c8 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    dc8f55d View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2016

  1. Configuration menu
    Copy the full SHA
    3f021d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2f21c62 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5284 from cgundogan/pr/core/thread_flags_superflu…

    …ous_include
    
    core/thread_flags: remove superfluous bitarithm.h include
    kaspar030 committed Apr 10, 2016
    Configuration menu
    Copy the full SHA
    4b748fc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6df58ac View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5285 from kYc0o/gnrc_netdev2_ieee802154_debug

    gnrc_netdev2_ieee802154.c: increase buffer
    cgundogan committed Apr 10, 2016
    Configuration menu
    Copy the full SHA
    8c4003f View commit details
    Browse the repository at this point in the history
  6. Merge pull request #5191 from malosek/inet_csum_16bit_fix

    sys: net: crosslayer: fixed inet csum for 16bit platforms
    kYc0o committed Apr 10, 2016
    Configuration menu
    Copy the full SHA
    82696da View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    c0790aa View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2016

  1. Merge pull request #5288 from cgundogan/pr/gnrc_sixlowpan/debug

    gnrc_sixlowpan_ctx: use correct member for ctx id in debug
    cgundogan committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    e212513 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5275 from cgundogan/pr/cib/doc_fix

    cib: doc fix
    cgundogan committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    aa15ec5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    57e9a25 View commit details
    Browse the repository at this point in the history
  4. cpu/lm4f120: fix ADC pin mapping

    fix GPIO pin mapping for ADC_0
    
    Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
    dkm committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    788f9f9 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #4863 from gebart/pr/saul-adc

    SAUL: Add periph/adc support
    haukepetersen committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    7c02c61 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f570576 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9b01c6d View commit details
    Browse the repository at this point in the history
  8. Merge pull request #5289 from cgundogan/pr/at86rf2xx_netdev/fix

    at86rf2xx_netdev: fix broken pending_tx handling
    OlegHahm committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    70a2d68 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #5292 from OlegHahm/thread_prio_doc_enhancement

    doc: a note about creating threads w/ same prio
    OlegHahm committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    b505053 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #5264 from dkm/pr/adc

    cpu/lm4f120: fix ADC pin mapping
    OlegHahm committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    987f719 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    4fb07a8 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    e17045e View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    2ec71c9 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    ce16c24 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    ee37ea9 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    e4a92a6 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    2cd2194 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    d33423b View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    376b564 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    2783344 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    3344815 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    228d642 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    7c9703b View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    0725d3e View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    8f2e1d2 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    eea62a7 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    edb5f08 View commit details
    Browse the repository at this point in the history
  28. Merge pull request #5255 from kaspar030/fix_encx24j600

    drivers: misc fixes for encx24j600
    haukepetersen committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    3ae9fd9 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    cd04690 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    7714133 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    4e8834a View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    54413ec View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    4275e18 View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    af96279 View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    21edec4 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    41e0db4 View commit details
    Browse the repository at this point in the history
  37. Merge pull request #5262 from DipSwitch/pr/fix_struct_naming

    cleanup: Remove ambigious _t postfixes in struct names
    kaspar030 committed Apr 11, 2016
    Configuration menu
    Copy the full SHA
    44db7bb View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2016

  1. Merge pull request #4938 from LudwigKnuepfer/pr/fletcher-unittest

    unittests: add fletcher* tests
    Joakim Nohlgård committed Apr 12, 2016
    Configuration menu
    Copy the full SHA
    690b505 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #4725 from kaspar030/ethos_br_hack

    simplified border router setup
    haukepetersen committed Apr 12, 2016
    Configuration menu
    Copy the full SHA
    5fe57b4 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2016

  1. Merge pull request #5231 from malosek/si70xx_driver_fix

    drivers: si70xx: fixed left shift compiler warning for 16bit platforms
    haukepetersen committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    df574d6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cf5e4c8 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5240 from basilfx/feature/si70xx_improvements

    drivers: si70xx: result bugfixes
    OlegHahm committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    5269017 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    592558f View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5250 from yogo1212/multiboot_doxy

    boards/multiboot: close doxy group
    Kijewski committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    340e3ff View commit details
    Browse the repository at this point in the history
  6. Merge pull request #5224 from haukepetersen/fix_periph_undef

    drivers/periph: fixed UNDEF values to UINT_MAX
    kYc0o committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    e6d15f2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    25935bf View commit details
    Browse the repository at this point in the history
  8. Merge pull request #5308 from haukepetersen/fix_dri_makedep_dhtfeature

    drivers/Makefile.dep: fixed FEATURE_REQ assignments
    OlegHahm committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    6c817c8 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #5306 from kaspar030/fix_gnrc_ipv6_netif_is_wired

    sys: net: gnrc: fix IS_WIRED netopt call
    DipSwitch committed Apr 13, 2016
    Configuration menu
    Copy the full SHA
    f2c320d View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2016

  1. Configuration menu
    Copy the full SHA
    6d7f3ae View commit details
    Browse the repository at this point in the history
  2. Merge pull request #4996 from kYc0o/br_readme

    examples/gnrc_border_router: Add ethos and start_network.sh to README.md
    kYc0o committed Apr 14, 2016
    Configuration menu
    Copy the full SHA
    998c4ab View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5124 from locicontrols/fixes

    cpu/cc2538: fix build errors when UART1 or the 32 kHz crystal is enabled
    kYc0o committed Apr 14, 2016
    Configuration menu
    Copy the full SHA
    699410e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e48079f View commit details
    Browse the repository at this point in the history
  5. dist/ethos: fixed compile warnings

    - checking return values of each write() call
    - chack return value of system() call
    haukepetersen committed Apr 14, 2016
    Configuration menu
    Copy the full SHA
    78f212c View commit details
    Browse the repository at this point in the history
  6. Merge pull request #5317 from haukepetersen/fix_ethos_compileerrors

    dist/ethos: fixed compile warnings
    kaspar030 committed Apr 14, 2016
    Configuration menu
    Copy the full SHA
    e6d90e3 View commit details
    Browse the repository at this point in the history
  7. SAMD21/GPIO driver: Add missing interrupts

    Baptiste committed Apr 14, 2016
    Configuration menu
    Copy the full SHA
    0215b08 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2d8c3b4 View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2016

  1. Merge pull request #5251 from cgundogan/pr/pkg/openwsn

    pkg/openwsn: prevent build loop
    haukepetersen committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    26ce9cd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    190c144 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e2fe3cc View commit details
    Browse the repository at this point in the history
  4. Merge pull request #5323 from haukepetersen/add_saul_unittest

    test: added unittests for the SAUL registry
    haukepetersen committed Apr 15, 2016
    Configuration menu
    Copy the full SHA
    0aa0eba View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2016

  1. Configuration menu
    Copy the full SHA
    ccb4521 View commit details
    Browse the repository at this point in the history
  2. core: assert correct msq queue size on creation

    The return value was never checked. Hence, this runtime check was rather
    pointless. Better assert the correct size during development.
    OlegHahm committed Apr 17, 2016
    Configuration menu
    Copy the full SHA
    bb35913 View commit details
    Browse the repository at this point in the history
  3. Revert "doc: mandatory netif snip for gnrc_ipv6 receive()"

    This reverts commit f15e038.
    miri64 committed Apr 17, 2016
    Configuration menu
    Copy the full SHA
    9789eb2 View commit details
    Browse the repository at this point in the history
  4. Revert "gnrc ipv6: replace check by assert"

    This reverts commit 856e1ee.
    miri64 committed Apr 17, 2016
    Configuration menu
    Copy the full SHA
    d64b922 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5283 from kaspar030/make_msg_use_list

    core: msg: use new list instead of priority_queue
    miri64 committed Apr 17, 2016
    Configuration menu
    Copy the full SHA
    85dfed3 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #5295 from OlegHahm/msg_init_queue_assert

    core: assert correct msq queue size on creation
    OlegHahm committed Apr 17, 2016
    Configuration menu
    Copy the full SHA
    8690a88 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #5320 from cgundogan/pr/shell/icmpv6_without_nc

    shell: icmpv6_echo: guard call to *_nc_still_reachable
    miri64 committed Apr 17, 2016
    Configuration menu
    Copy the full SHA
    f90b607 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #5313 from kYc0o/cc2538dk_small_uart_fix

    boards/cc2538dk: fix wrong UART CTS and RTS pins
    kYc0o committed Apr 17, 2016
    Configuration menu
    Copy the full SHA
    4f3a40f View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2016

  1. Configuration menu
    Copy the full SHA
    4f864b0 View commit details
    Browse the repository at this point in the history
  2. xbee: fixed broadcast header

    Destination address is at tx_buf[5] and tx_buf[6] rather than tx_buf[4] and
    tx_buf[5].
    
    Broadcast header is overridden by following code mistakenly.
    Yonezawa-T2 committed Apr 18, 2016
    Configuration menu
    Copy the full SHA
    bea5eac View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f86bf8c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1750e1b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    963f8a4 View commit details
    Browse the repository at this point in the history
  6. cpu: add CC26x0-family

    yogo1212 committed Apr 18, 2016
    Configuration menu
    Copy the full SHA
    475fb6f View commit details
    Browse the repository at this point in the history
  7. boards: add cc2650stk

    yogo1212 committed Apr 18, 2016
    Configuration menu
    Copy the full SHA
    cc95476 View commit details
    Browse the repository at this point in the history
  8. cpu/cc26x0: cpu_clock_init() implementation

    Florent-Valéry authored and yogo1212 committed Apr 18, 2016
    Configuration menu
    Copy the full SHA
    15066e0 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fc668c4 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    3b240ff View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    c898505 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #5310 from locicontrols/xtimer-soc

    sys/xtimer: eliminate XTIMER_SHIFT_ON_COMPARE
    kaspar030 committed Apr 18, 2016
    Configuration menu
    Copy the full SHA
    1191725 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #5330 from authmillenon/gnrc_rpl/fix/non-stack-ll

    gnrc_rpl: use non-stack variable for link-local matching
    cgundogan committed Apr 18, 2016
    Configuration menu
    Copy the full SHA
    7b8e2d5 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    5a6fcbc View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2016

  1. Configuration menu
    Copy the full SHA
    8481d85 View commit details
    Browse the repository at this point in the history
  2. xbee: changed default channel from 0x1A to 0x17 to support XBee-PRO

    XBee supports channels 0x0B-0x1A while XBee-PRO supports only 0x0C-0x17.
    Yonezawa-T2 committed Apr 19, 2016
    Configuration menu
    Copy the full SHA
    67c3ab8 View commit details
    Browse the repository at this point in the history
  3. xbee: disable short address when the address length is set to 8

    XBee sends short address even for `API_ID_TX_LONG_ADDR` if short address is
    enabled. This results in check sum error of ICMPv6 since the IP address is
    computed based on long address on the sender side while it is computed based on
    short address on the receiver side.
    Yonezawa-T2 committed Apr 19, 2016
    Configuration menu
    Copy the full SHA
    66dd84e View commit details
    Browse the repository at this point in the history
  4. xbee: fixed that _set_addr destructed given address.

    `_set_addr` is called from `xbee_init` with lower bytes of the long address.
    If `_set_addr` destructs the given address, the long address is also destructed.
    Yonezawa-T2 committed Apr 19, 2016
    Configuration menu
    Copy the full SHA
    a6ae7c8 View commit details
    Browse the repository at this point in the history
  5. xbee: add packet filtering to emulate non-transitive network.

    When debugging multihop wireless network, it is useful to emulate non-transitive
    network, that is, node A can communicate with B and B can communicate with C,
    but A cannot communicate with C directly.
    
    If `XBEE_DENIED_ADDRESSES`, which is an array of XBee long addresses, is
    defined, packets from those addresses are dropped silently.
    
    Example:
    CFLAGS += "-DXBEE_DENIED_ADDRESSES={ 0x02, 0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0x02, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11 }"
    Yonezawa-T2 committed Apr 19, 2016
    Configuration menu
    Copy the full SHA
    15ecee4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    eb7cc30 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4042239 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #4445 from Yonezawa-T2/fix_xbee

    xbee: fixed several bugs
    kYc0o committed Apr 19, 2016
    Configuration menu
    Copy the full SHA
    f968ea0 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #4734 from Yonezawa-T2/xbee_resp_timeout

    xbee: add timeout for AT command response (fixes #4731)
    kYc0o committed Apr 19, 2016
    Configuration menu
    Copy the full SHA
    724276e View commit details
    Browse the repository at this point in the history
  10. Merge pull request #4675 from yogo1212/cc2650stk_pr

    board-support: cc2650stk
    haukepetersen committed Apr 19, 2016
    Configuration menu
    Copy the full SHA
    c0f76f2 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #5232 from gebart/pr/jfischer-nhc-fix

    gnrc_sixlowpan_iphc.c: handle forwarded GNRC_NETTYPE_IPV6 packet
    OlegHahm committed Apr 19, 2016
    Configuration menu
    Copy the full SHA
    5d65d59 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    55e8961 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #5044 from cgundogan/pr/gnrc/enable_iphc_nhc

    gnrc_sixlowpan: enable NHC by default
    miri64 committed Apr 19, 2016
    Configuration menu
    Copy the full SHA
    7f2f833 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #5315 from bapclenet/samd21/gpio_PA27

    SAMD21/GPIO driver: Add missing interrupts
    haukepetersen committed Apr 19, 2016
    Configuration menu
    Copy the full SHA
    fbb144f View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    39043b5 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    eb6eed6 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2016

  1. Configuration menu
    Copy the full SHA
    84a9ddb View commit details
    Browse the repository at this point in the history
  2. native: assert that the pktbuf is big enough

    Rationale: the netdev2_tap Ethernet driver for native requires to temporarily store at least a maximum sized Ethernet frame.
    OlegHahm committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    3f1c2e1 View commit details
    Browse the repository at this point in the history
  3. gnrc_minimal: remove workaround for native

    The workaround for the pktbuf size is not longer needed, since native itself assures a big enough buffer.
    Using a neighbor cache size of 1 is mandatory for all platforms when compiling pedantically.
    OlegHahm committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    26cf46c View commit details
    Browse the repository at this point in the history
  4. Merge pull request #5360 from authmillenon/gnrc_sixlowpan_iphc/fix/si…

    …gnage
    
    gnrc_sixlowpan_iphc: fix comparison signage
    kaspar030 committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    01650a4 View commit details
    Browse the repository at this point in the history
  5. gnrc_ndp: don't let addresses timeout

    This is a temporary quick-fix for #5122 to not have GUAs removed on an
    interface.
    It solves the issue by both not letting the registration run out on the router
    and by not letting the lifetime of an auto-configured address expire.
    miri64 committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    8968b76 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #5353 from haukepetersen/fix_samd21_pb27

    cpu/samd21: fix ISR mapping for PB27
    kYc0o committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    25356df View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6dbb515 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4ace701 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #5309 from authmillenon/gnrc_ndp/fix/gua-hack

    gnrc_ndp: don't let addresses timeout
    kYc0o committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    d071b2a View commit details
    Browse the repository at this point in the history
  10. Merge pull request #5229 from OlegHahm/pktbuf_minimal_check

    netdev ethernet: deal with too small packet buffer
    miri64 committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    c24e91d View commit details
    Browse the repository at this point in the history
  11. Merge pull request #5356 from DipSwitch/pr/fix_cc2538_spi_compile_war…

    …ning
    
    cpu/cc2538/spi: Fix compiler warning of possible uninitialized variable
    kYc0o committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    591b0ab View commit details
    Browse the repository at this point in the history
  12. Merge pull request #5342 from authmillenon/tools/fix/ethos-relative

    tools: ethos: allow `start_network.sh` script to run from anywhere
    kYc0o committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    a42525a View commit details
    Browse the repository at this point in the history
  13. Merge pull request #5270 from authmillenon/core/fix/mutex-debug

    core: allow DEBUG in mutex.c to run without DEVELHELP
    haukepetersen committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    f977654 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #5352 from authmillenon/gnrc_netdev/doc/add-deprec…

    …ation
    
    gnrc_netdev: add deprecation note
    miri64 committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    452fc91 View commit details
    Browse the repository at this point in the history
  15. at86rf2xx: fix option setting

    miri64 committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    7b78775 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    0fa5b81 View commit details
    Browse the repository at this point in the history
  17. Merge pull request #5227 from authmillenon/at86rf2xx/fix/set

    at86rf2xx: fix option setting
    miri64 committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    cedf7d8 View commit details
    Browse the repository at this point in the history
  18. drivers/xbee: encryption support

    add encryption to drivers
    
    fix new line at the end of file
    
    add shell command for enable encryption and set encryption key on a given device
    
    modify _net_if_set_encrypt_key to support any key length
    
    modify _net_if_set_encrypt_key to support any key length of the key
    
    modify blank line
    
    fix ace before tab in indent
    
    fix ace before tab indent
    
    fix ace before tab indent an error
    
    fix trailing white space
    
    drivers/xbee: encryption support
    
    add encryption to drivers
    
    fix new line at the end of file
    
    add shell command for enable encryption and set encryption key on a given device
    
    modify _net_if_set_encrypt_key to support any key length
    
    modify _net_if_set_encrypt_key to support any key length of the key
    
    modify blank line
    
    fix ace before tab in indent
    
    fix ace before tab indent
    
    fix ace before tab indent an error
    
    fix trailing white space
    
    modify drivers/xbee/xbee.c
    
    fix white spaces on xbee.c
    
    Update xbee encryption driver
    
    white line at end xbee.h
    
    fix error
    
    fix sc_netif.c
    
    fix rebase master interactive
    
    drivers/xbee: encryption support
    
    add encryption to drivers
    
    fix new line at the end of file
    
    add shell command for enable encryption and set encryption key on a given device
    
    modify _net_if_set_encrypt_key to support any key length
    
    modify _net_if_set_encrypt_key to support any key length of the key
    
    modify blank line
    
    fix ace before tab in indent
    
    fix ace before tab indent
    
    fix ace before tab indent an error
    
    fix trailing white space
    
    drivers/xbee: encryption support
    
    add encryption to drivers
    
    fix new line at the end of file
    
    add shell command for enable encryption and set encryption key on a given device
    
    modify _net_if_set_encrypt_key to support any key length
    
    modify _net_if_set_encrypt_key to support any key length of the key
    
    modify blank line
    
    fix ace before tab in indent
    
    fix ace before tab indent
    
    fix ace before tab indent an error
    
    fix trailing white space
    
    modify drivers/xbee/xbee.c
    
    fix white spaces on xbee.c
    
    Update xbee encryption driver
    
    white line at end xbee.h
    
    fix error
    
    fix rebase  conflict 4
    
    fix same missing in patches changes
    
    fix ascii to hex index parser
    
    fix syntax rules
    
    fix syntax issue 2
    
    add _netopt_strmap NETOPT_ENCRYPTION e NETOPT_ENCRYPTION_KEY
    
    fix trailng white spaces
    FrancescoErmini committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    9fa4684 View commit details
    Browse the repository at this point in the history
  19. Merge pull request #4435 from thomaseichinger/pr/mulle_serial_port_osx

    boards/mulle: mulle boards' serial port is derived from its serial nr
    kYc0o committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    ac724f0 View commit details
    Browse the repository at this point in the history
  20. make: bail out if there are spaces in the path

    If we use `rm -r(f)` then we should make sure that we don't delete
    random directory trees because there was a whitespace in the path.
    Kijewski committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    e71e60e View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    1593bf4 View commit details
    Browse the repository at this point in the history
  22. Merge pull request #5221 from Kijewski/rm-rf-safe

    make: bail out if there are spaces in the path
    cgundogan committed Apr 20, 2016
    Configuration menu
    Copy the full SHA
    8a85725 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2016

  1. Merge pull request #2842 from FrancescoErmini/drivers_xbee_encryption

    drivers/xbee: add optional AES encryption support
    Yonezawa-T2 committed Apr 21, 2016
    Configuration menu
    Copy the full SHA
    3e70191 View commit details
    Browse the repository at this point in the history
  2. make: disable NHC

    cgundogan committed Apr 21, 2016
    Configuration menu
    Copy the full SHA
    196ec2f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5385 from cgundogan/pr/disable_nhc

    make: disable NHC
    haukepetersen committed Apr 21, 2016
    Configuration menu
    Copy the full SHA
    77cf00b View commit details
    Browse the repository at this point in the history