1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
Commit Graph

11593 Commits

Author SHA1 Message Date
Joakim Nohlgård
c2b20f1f27 cpu/cc2538: Cast enum to unsigned int for comparison 2016-06-01 16:42:15 +02:00
Joakim Nohlgård
eff01f21f8 cpu/cc26x0: Cast gpio_t to unsigned int for comparison 2016-06-01 16:40:28 +02:00
Joakim Nohlgård
abca77beb0 cpu/cc2538: Cast enum to unsigned int for comparison 2016-06-01 16:39:55 +02:00
Joakim Nohlgård
92370e846d sys/cpp11-compat: Add braces around mutex initializer
Fixes Clang warning/error:

    In file included from .../riot/sys/cpp11-compat/thread.cpp:26:
    In file included from .../riot/sys/cpp11-compat/include/riot/thread.hpp:39:
    .../riot/sys/cpp11-compat/include/riot/mutex.hpp:47:45: error:
     suggest braces around initialization of subobject [-Werror,-Wmissing-braces]
      inline constexpr mutex() noexcept : m_mtx{0} {}
                                                ^
                                                {}
    1 error generated.
2016-06-01 16:21:18 +02:00
Joakim Nohlgård
73739cb7c8 cpu/cortexm_common: Remove register keyword from variables
register is deprecated when building C++11 code and removed in C++17,
using it will cause build failures with C++ and -Werror. The register
hint keyword is likely ignored in GCC anyway.
2016-06-01 16:18:57 +02:00
Joakim Nohlgård
9ad9f400e6 cpu/cortexm_common: Remove register keyword from variables
register is deprecated when building C++11 code and removed in C++17,
using it will cause build failures with C++ and -Werror. The register
hint keyword is likely ignored in GCC anyway.
2016-06-01 16:12:38 +02:00
Cenk Gündoğan
4a70299d6a Merge pull request #5300 from cgundogan/pr/gnrc_rpl/without_validation
gnrc_rpl: validation configurable on compile-time
2016-06-01 14:10:55 +02:00
Peter Kietzmann
cd66ac0091 Merge pull request #5477 from aabadie/bmp_180_saul
drivers/bmp180: add saul adaptation
2016-06-01 13:09:58 +02:00
4a595d7b19 drivers/bmp180: add saul adaptation 2016-06-01 11:15:01 +02:00
Oleg Hahm
d6663d950c Merge pull request #5446 from Yonezawa-T2/native_select_timeout
native: add timeout for select. Fixes #5442
2016-06-01 09:36:18 +02:00
Cenk Gündoğan
0613c8faf4 gnrc_rpl: validation configurable on compile-time 2016-06-01 09:07:55 +02:00
Cenk Gündoğan
25baea1e50 gnrc_rpl: separate validation from msg handling 2016-06-01 09:05:24 +02:00
Cenk Gündoğan
2f9a37a624 gnrc_rpl: move len macros to header file 2016-06-01 09:05:24 +02:00
Cenk Gündoğan
a10151d5f0 Merge pull request #5440 from cgundogan/pr/auto_init/rpl
auto_init: initialize gnrc_rpl
2016-06-01 07:59:41 +02:00
Yonezawa-T2
3c16e8426f native: add timeout for select. Fixes #5442 2016-06-01 12:31:19 +09:00
Peter Kietzmann
e12830caa4 Merge pull request #5297 from aeneby/netopt_ack_req
Implement NETOPT_ACK_REQ configuration option.
2016-06-01 01:10:10 +02:00
Peter Kietzmann
8cf11d3206 Merge pull request #5404 from miri64/pkg/enh/lwip-mld
lwip: introduce MLD as pseudo-module and deactivate by default
2016-06-01 00:59:02 +02:00
Aaron Sowry
63a87fb639 Implement NETOPT_ACK_REQ configuration option.
Allows setting the acknowledgement request bit of 802.15.14
headers via netdev.
2016-06-01 10:11:28 +12:00
Peter Kietzmann
a81a7cea44 Merge pull request #5482 from brummer-simon/random-init-by-seed
Added random_init_by_array(uint32_t init_key[], int key_length) ...
2016-06-01 00:02:38 +02:00
Oleg Hahm
5ed98da18a Merge pull request #5324 from cgundogan/pr/trickle/enhance
trickle: uses random.h and includes some enhancements
2016-05-31 23:36:35 +02:00
Oleg Hahm
595dec37ae Merge pull request #5465 from OlegHahm/ccnl_local_producer
pkg ccn-lite: callbacks for on-the-fly content creation
2016-05-31 23:17:59 +02:00
Oleg Hahm
d1d1c4ee6d Merge pull request #5377 from miri64/shell/fix/icmpv6-cmd-cast
shell: commands: ping6: fix operator order for casting
2016-05-31 22:56:37 +02:00
Cenk Gündoğan
5534738df8 examples: auto-initialize RPL for gnrc_networking 2016-05-31 22:13:32 +02:00
Cenk Gündoğan
e33011248f gnrc_rpl: doc: add note about auto-initialization 2016-05-31 22:13:32 +02:00
Cenk Gündoğan
1b4607ab43 auto_init: initialize gnrc_rpl 2016-05-31 22:13:32 +02:00
Joakim Nohlgård
e2c9fee917 cpu/Makefile.include.llvm: Try harder to find C++ and C headers from cross-GCC 2016-05-31 22:03:04 +02:00
Joakim Nohlgård
275b366825 Makefile.base: Add separate CXXINCLUDES for C++ specific header directories 2016-05-31 22:03:04 +02:00
Joakim Nohlgård
e4ad8d6beb cpu/Makefile.include.llvm: Use libstdc++ headers for C++ support 2016-05-31 22:03:04 +02:00
Martine Lenders
eff89c56ef tests: add comment about exclusion of MLD in lwIP app 2016-05-31 21:40:40 +02:00
Oleg Hahm
6deac1d64e Merge pull request #5329 from kaspar030/add_makefile_for_host_tools
make: add makefile for host tools
2016-05-31 21:25:47 +02:00
Martine Lenders
c313c26dbb Merge pull request #5444 from OlegHahm/msg_send_receive_fix
core: msg_send_receive if receiver is not ready
2016-05-31 20:45:57 +02:00
Martine Lenders
9d854b088a Merge pull request #5456 from OlegHahm/pkg_tlsf_left_shift
pkg tlsf: undefined left-shifting of neg. values
2016-05-31 20:18:53 +02:00
Simon Brummer
5e20cd9b67 Added random_init_by_array to tinymt32 wrapper 2016-05-31 20:12:24 +02:00
Oleg Hahm
dc7d191748 core: msg_send_receive if receiver is not ready 2016-05-31 20:06:35 +02:00
Cenk Gündoğan
6ee680d1f2 Merge pull request #5478 from cgundogan/pr/rpl_p2p/fix
rpl_p2p: rm non-existing fib flag
2016-05-31 19:58:19 +02:00
Emmanuel Baccelli
58745f973c Merge pull request #5483 from emmanuelsearch/readme-update
Readme update
2016-05-31 19:38:53 +02:00
718b7d8109 Merge pull request #5481 from chrysn-pull-requests/ps-flag-names
sys: ps: display waiting for flags
2016-05-31 19:25:15 +02:00
Emmanuel Baccelli
3a4ba91e20 Update README.md
addressed comments
2016-05-31 19:23:35 +02:00
chrysn
e348a8df80 PS: Display waiting for flags
This adds support for the recently introduced thread flags mechanism to
the `ps` module; while previously it would show a thread in state
"(null)" when it is blocked on thread_flags_wait_any or
thread_flags_wait_all, it now shoes the state "bl anyfl" or "bl allfl",
respectively. The labels are kept that short to not mess with the
fixed-width layout.
2016-05-31 18:27:14 +02:00
Martine Lenders
a3a02a09be shell: commands: ping6: fix operator order for casting 2016-05-31 18:04:19 +02:00
Emmanuel Baccelli
72adc99fbf Update README.md
wordsmithing around non-viral term
2016-05-31 15:25:04 +02:00
Cedric Adjih
292f4bc1ee boards/iotlab-a8-m3: initial implementation 2016-05-31 14:52:49 +02:00
Martine Lenders
a6df844555 Merge pull request #5461 from PeterKietzmann/adapt_defaul_short_address
drivers/802154: improve setting of default short address
2016-05-31 13:58:36 +02:00
PeterKietzmann
ed470e11f8 drivers/kw2xrf: improve default short address 2016-05-31 13:12:57 +02:00
Emmanuel Baccelli
652ba6a39e Update README
Used some reworked umbrella text from latest release notes to provide more synthetic information upfront (as this README is the first thing people read on GitHub).
2016-05-31 13:10:51 +02:00
Cenk Gündoğan
5c42d430ec rpl_p2p: rm non-existing fib flag 2016-05-31 11:03:19 +02:00
0c4b760f11 sys/shell: fix build issue when deactivating shell echo (iotlab) 2016-05-29 14:21:11 +02:00
Oleg Hahm
e443d3a0ff pkg tlsf: undefined left-shifting of neg. values 2016-05-27 14:49:15 +02:00
Oleg Hahm
16daabbcfb Merge pull request #5418 from OlegHahm/tlsf_stats
pkg tlsf: statistics
2016-05-27 14:06:15 +02:00
Oleg Hahm
1777409472 ps: add heap statistics for TLSF (if enabled) 2016-05-27 13:48:06 +02:00