benpicco
29ca1e0f52
Merge pull request #1142 from benpicco/fix_oonf_build
...
fix buildtest with oonf_api
9 years ago
benpicco
ce33d5e2eb
Merge pull request #1046 from benpicco/fix_routing
...
fix forwarding packets when ndp_get_ll_address() returns NULL
9 years ago
Benjamin Valentin
8ec8b3f100
net/ip: fix wrong double negative in the comments
9 years ago
Benjamin Valentin
143b6560da
net/ip: apply workaround to fix IP forwarding
...
When sending a packet a workaround is applied when ndp_get_ll_address() returns NULL as is's not implemented properly yet.
The same should happen when a packet is forwarded as it's dropped otherwise.
9 years ago
Benjamin Valentin
a2dec64b67
fix buildtest with oonf_api
...
Don't try to checkout oonf_api if it's already present
9 years ago
Ludwig Ortmann
58d1047f26
Merge pull request #1141 from LudwigOrtmann/msba2-term
...
make/msba2-common: allow TERMPROG override
9 years ago
Ludwig Ortmann
cffda42f87
make/msba2-common: allow TERMPROG override
9 years ago
Ludwig Ortmann
862e943d55
Merge pull request #1071 from LudwigOrtmann/issue_1068
...
examples/default: add README.md
9 years ago
Ludwig Ortmann
1eca41456f
examples/default: add README.md
...
Fixes #1068
9 years ago
Christian Mehlis
adeae5eced
Merge pull request #1132 from jan-schreib/master
...
Removed unreachable code and fixed a typo.
9 years ago
Martine Lenders
51c3cfa570
Merge pull request #1134 from kaspar030/pseudoterm_license
...
msba2: add pseudoterm license
9 years ago
Kaspar Schleiser
f8bbabd201
msba2: add pseudoterm license
9 years ago
Jan S
e7cf6bf745
removed unreachable code
9 years ago
Jan S
350e34f924
typo fix
9 years ago
René Kijewski
5abf504085
Merge pull request #1122 from Kijewski/ps-SCHEDSTATISTICS
...
shell:ps: SCHEDSTATISTICS cols only if needed
9 years ago
Hauke Petersen
dd69e16c41
Merge pull request #507 from haukepetersen/core_cpu_interface
...
Introduced a cleaned-up cpu/core interface
9 years ago
Hauke Petersen
608afc4777
Introduced a cleaned-up cpu/core interface
...
- Included a collection of cpu-dependent headers in core/include/arch
- Extracted all interfaces that need to be implemented for a cpu
- Created a mapping between those interfaces and the old ones
- added flag for disabling arch interface
- added missing state to lpm_arch interface
- added arch interface for reboot
- fixed newline issues that were pointed out
- documentation fixes to cpu-core interface
9 years ago
Ludwig Ortmann
d4051fe696
Merge pull request #1126 from LudwigOrtmann/issue-1125
...
make/native: remove -gc flag
9 years ago
Ludwig Ortmann
e4e3ef4daf
make/native: remove -gc flag
...
Yields warning on OSX.
Uncertain why it was there in the first place.
Fixes #1125
9 years ago
René Kijewski
6a0053fbc8
shell:ps: SCHEDSTATISTICS cols only if needed
9 years ago
René Kijewski
4aabf8f1de
Merge pull request #1072 from Kijewski/issue-1070
...
Add readme for the hello-world example
9 years ago
Christian Mehlis
f1ce664dcf
Merge pull request #1116 from Kijewski/ccnl-warnings
...
ccnl: remove type warning
9 years ago
Christian Mehlis
2a37308a10
Merge pull request #1081 from mehlis/ccnl-config-remove
...
ccnl: remove unused config module
9 years ago
Christian Mehlis
246a6c73d2
Merge pull request #1084 from mehlis/ccnl-debug
...
ccnl: extra debug statements
9 years ago
René Kijewski
af2215b5d3
Merge pull request #1114 from Kijewski/add_UNREACHABLE
...
core/cpu: put __builtin_unreachable() into one place
9 years ago
René Kijewski
6f3d0871aa
core/cpu: put __builtin_unreachable() into one place
9 years ago
René Kijewski
ca21d9e8f0
Add readme for the hello-world example
...
Closes #1070 .
9 years ago
René Kijewski
5879ccbcd3
Merge pull request #1117 from BytesGalore/add_missing_pthread_cv_header
...
sys:posix:pthread added missing `pthread_cond.h` to `pthread.h`
9 years ago
Martin Landsmann
61b0331980
added `pthread_cond.h` to `pthread.h`
...
adjusted `test_pthread_condition_variable\main.c` includes reflecting the above change
9 years ago
René Kijewski
b8419d48d9
ccnl: remove type warning
9 years ago
Thomas Eichinger
1dedfc60aa
Merge pull request #920 from haukepetersen/fcpu_to_board
...
core/cpu/board: moved F_CPU define to board
9 years ago
Martine Lenders
48d2ad285b
Merge pull request #872 from OlegHahm/rpl_route_shell_command
...
sys: net: rpl: added RPL route shell command
9 years ago
Hauke Petersen
7545eff784
core/cpu/board: moved F_CPU define to board
9 years ago
Hauke Petersen
cef93bd6ef
Merge pull request #971 from haukepetersen/periph_gpio_fix
...
drivers: fixes to the low-level GPIO driver
9 years ago
Hauke Petersen
7b96e488ff
drivers: fixes to the low-level GPIO driver
...
- fixed doxygen comments
- added GPIO_UNDEFINED value
- added return values to all functions
9 years ago
Oleg Hahm
3ede45eb2b
Merge pull request #983 from OlegHahm/core_doxygen_update
...
core: documentation: updated, improved, and completed doxygen comments
9 years ago
René Kijewski
35492617c8
Merge pull request #1097 from Kijewski/gettimeofday-warning
...
arm_common: no needless `_gettimeofday()` warning
9 years ago
René Kijewski
d19e885fb9
arm_common: no needless `_gettimeofday()` warning
...
The `arm_common` syscalls implement `_gettimeofday()` for the benefit of
newlib. The syscall call only work if the `rtc` module or the `vtimer`
modules is transcluded. If neither module is used, a warning is printed
by means of `#warning`.
This warning is useless if the user does not invoke `gettimeofday()`.
Further this warning prevents the use of `-Werror`.
This PR puts the function in its own file, that will only be linked if
it was used. And if the function was used, then a link time error occur
if neither `rtc` nor `vtimer` was transcluded.
9 years ago
Oleg Hahm
750b237f8d
Merge pull request #1099 from Kijewski/issue-1011
...
sys: rename ringbuffer functions
9 years ago
Oleg Hahm
13c615ac17
documentation: fixed doxygen for schedstats
9 years ago
Oleg Hahm
6e27e1cdbb
bitarithm: remove unused macros
9 years ago
Oleg Hahm
81fe4b6afc
documentation: extend description for CONST attribute
9 years ago
Oleg Hahm
5a63f3ab1c
core: documentation: fixed typo in license header
9 years ago
Oleg Hahm
50c9d2da90
core: documentation: replaced task w/ thread
9 years ago
Oleg Hahm
2d338feac4
core: documentation: fixed bitarithm documentation
9 years ago
Oleg Hahm
25a2122f83
core: documentation: updated, improved, and completed doxygen comments
9 years ago
Oleg Hahm
cace4b42f6
Merge pull request #1092 from BytesGalore/fix_print_format_warnings_test_thread_msg
...
test:test_thread_msg fixed Wformat warnings
9 years ago
Oleg Hahm
0018e3a181
shell: added RPL route shell command
9 years ago
René Kijewski
f23dab96d2
sys: rename ringbuffer functions
...
Closes #1011 .
9 years ago
Martine Lenders
7c7e24fe53
Merge pull request #801 from Kijewski/makefile-no-usemodule-dups
...
Make: Automatically remove dups in `$(USEMODULE)`
9 years ago