Akshai M
60170971bd
net/l2filter : Update documentation
2020-07-22 00:26:09 +05:30
Akshai M
9bed3c64e9
net/l2filter : Expose configurations to Kconfig
...
Co-authored-by: Leandro Lanzieri <leandro.lanzieri@haw-hamburg.de>
2020-07-22 00:26:09 +05:30
Akshai M
caab4cd8c5
net/l2filter : Move 'L2FILTER_LISTSIZE' to 'CONFIG_'
2020-07-22 00:26:09 +05:30
Akshai M
0d52f81935
net/l2filter : Move 'L2FILTER_ADDR_MAXLEN' to 'CONFIG_'
2020-07-22 00:26:09 +05:30
Leandro Lanzieri
418157a8f1
examples/cord_epsim: default to first interface when not specified
...
Now sock_udp_str2ep is used to parse the address.
2020-07-21 19:04:24 +02:00
Cenk Gündoğan
43d2de0885
Merge pull request #14569 from fjmolinas/pr_tests_trickle_msg_queue
...
tests/trickle: add message queue
2020-07-21 18:42:19 +02:00
Benjamin Valentin
464dc63f08
cpu/arm7_common: add __ARM_FEATURE_CLZ feature test
...
The feature test macro should work on all ARM CPUs supported by gcc.
2020-07-21 16:03:59 +02:00
Benjamin Valentin
74bbb87f78
tests/bitarithm_timings: add bitarithm_test_and_clear() to the test
2020-07-21 16:03:59 +02:00
Benjamin Valentin
a8904edd7d
core/bitarithm: add bitarithm_test_and_clear()
2020-07-21 16:03:59 +02:00
ec487138bf
Merge pull request #14566 from fjmolinas/pr_test_periph_gpio_pin
...
tests/periph_gpio: allow specifying port under test
2020-07-21 15:22:30 +02:00
185f703c23
Merge pull request #14163 from aabadie/pr/cpu/stm32g0
...
cpu/stm32g0: add basic support + add nucleo-g070rb board
2020-07-21 14:53:59 +02:00
Francisco Molina
194d3192fc
tests/trickle: add message queue
...
Add a message queue in case main thread is not yet waiting for the
message when it gets sent.
2020-07-21 14:19:55 +02:00
b7219d68f4
Merge pull request #12428 from benpicco/native_poll
...
native/async_read: use poll() instead of select()
2020-07-21 14:01:32 +02:00
Francisco Molina
92d2a727f5
tests/periph_gpio: allow specifying port under test
2020-07-21 13:19:14 +02:00
Akshai M
bcb42e2166
mac/types.h : Remove ifndef for 'GNRC_MAC_TYPE_GET_DUTYCYCLE'
...
Removed ifndef guards for GNRC_MAC_TYPE_GET_DUTYCYCLE as its
an IPC message type and is also not intended as a configuration.
2020-07-21 16:36:27 +05:30
ed3ff6ed34
tests: exclude nucleo-f070rb where it doesn't fit in memory
2020-07-21 12:45:25 +02:00
5ccbaada02
examples: exclude nucleo-g070rb where the firmware doesn't fit in memory
2020-07-21 12:45:25 +02:00
54fe59d0ba
boards/nucleo-g070rb: add support
2020-07-21 12:45:25 +02:00
8272541b44
boards/common/stm32: add common code for stm32g0
2020-07-21 12:45:25 +02:00
fc1d642113
cpu/cortexm_init: add specific case for stm32g0 svcall irq
2020-07-21 12:45:25 +02:00
dada52ecd2
cpu/stm32: add stm32g0 support
2020-07-21 12:45:25 +02:00
8c50212a8d
pkg/stm32cmsis: add version for g0 family
2020-07-21 12:35:42 +02:00
0b549c6e0c
Merge pull request #14152 from aabadie/pr/pkg/stm32cube
...
pkg/stm32cmsis: retrieve STM32 CMSIS header from a package
2020-07-21 12:27:19 +02:00
47e2885f80
cpu/native: async_read: add native_async_read_add_int_handler()
...
fcntl(fd, F_SETOWN, getpid()); doesn't seem to work on Linux
to get generate a signal when an event on the GPIO fd occurs.
So fall back to the same method as on OS X and call poll() in
a child process.
2020-07-21 11:50:18 +02:00
a274ea45fc
cpu/native: async_read: rewrite select() call to poll()
...
select() can not listen to POLLPRI events which are used by the
Kernel's GPIO API.
In preparation for that, rewrite async_read() to use poll() instead
of select().
2020-07-21 11:50:18 +02:00
ea8183aac8
Merge pull request #14559 from bergzand/pr/sched/idle_do_while
...
core/sched: tiny logic optimization in idle case
2020-07-21 11:50:09 +02:00
2d74651237
sched: Clear context_switch_request after potential idle sleep
...
An interrupt serviced during the idle sleep can re-request a context
switch while the scheduler is already going to switch contexts after the
idle sleep. Thi sched_context_switch_request should thus be cleared
after the idle sleep and not before where it could be modified during
the idle sleep and get out of sync.
2020-07-21 11:27:08 +02:00
0eb66a429f
cortexm_common: Clear PendSV request after idle sleep
...
The PendSV interrupt is used to request a scheduling operation. An
interrupt during the idle sleep can re-request the PendSV interrupt,
while the PendSV is still busy scheduling the next thread. This clears
the request after sleep to prevent triggering an extra PendSV interrupt
after the current PendSV handler finished.
2020-07-21 11:23:49 +02:00
e1b810b613
core/sched: tiny logic optimization in idle case
...
In the case that the no_thread_idle feature is active, the
runqueue_bitcache is checked twice in the case no thread is available to
schedule. This changes the inner while loop to a do-while loop to save
one check from the initial loop iteration, saving a cycle or so in the
idle case.
2020-07-20 23:26:47 +02:00
Francisco
e8a8d12d96
Merge pull request #14511 from aabadie/pr/ci/build_system_check_makefile_features
...
ci/build_system_check: improve check for features only provided in Makefile.features
2020-07-20 15:28:15 +02:00
Francisco
14e232dd43
Merge pull request #14386 from aabadie/pr/drivers/makefile_dep
...
drivers: add driver specific Makefile.dep
2020-07-20 15:27:50 +02:00
0c86b72ed6
drivers/Makefile.dep: remove global dependency resolution
...
Only keep the dependency resolution for drivers declared as pseudo-modules
2020-07-20 14:32:16 +02:00
304bce3724
drivers: configure per driver dependency resolution
2020-07-20 14:32:16 +02:00
54d51bb098
Makefile.dep: include per driver Makefile.dep if used and exist
2020-07-20 14:32:16 +02:00
b7f2ad8d76
ci/build_system_check: improve check for features provided in Makefile.features
...
- Take into account potential spaces at the beginning of a line
- Check all Makefile.<something> files, not only the ones in boards and cpus
2020-07-20 13:06:05 +02:00
f013be5507
Merge pull request #14497 from aabadie/pr/drivers/makefile_dep_cleanup
...
drivers/Makefile.dep: remove inappropriate use of FEATURES_PROVIDED for rtt_rtc
2020-07-20 13:04:59 +02:00
3222984cb9
Merge pull request #14549 from bergzand/pr/filesystem/check_cleanup
...
examples/filesystem: Cleanup filesystem/mtd check
2020-07-18 17:08:28 +02:00
benpicco
4fb1e17508
Merge pull request #14454 from trickeydan/usb-cdc-ecm-example
...
Add USB Ethernet support to GNRC Border Router example
2020-07-18 15:58:44 +02:00
Martine Lenders
e5d692babe
Merge pull request #14493 from miri64/netopt/cleanup/rm-LINK_CONNECTED
...
netopt: remove deprecated alias NETOPT_LINK_CONNECTED
2020-07-17 22:35:46 +02:00
Martine Lenders
bb07c1889f
Merge pull request #14507 from JannesVolkens/someip_hdr
...
sys/include/net: Add SOME/IP header
2020-07-17 22:35:06 +02:00
Dan Trickey
2c3987def0
examples/gnrc_border_router: add CDC-ECM uplink
...
Optionally executes pyterm from CDC-ECM start_network.sh
The shell script exits and cleans up instantly unless there is a
blocking program running at the end. Users can supply a serial port to
display in pyterm, or alternatively just wait if it is a "headless"
deployment.
2020-07-17 21:34:56 +01:00
87d8124d88
Merge pull request #14536 from HendrikVE/pca9633_fix_copy_pasta
...
drivers/pca9633: fix wrong enum name
2020-07-17 21:03:25 +02:00
dc1d8d55d6
Merge pull request #14551 from aabadie/pr/sys/ztimer_irq_include
...
sys/ztimer: fix missing include for periph_rtt submodule
2020-07-17 21:02:37 +02:00
5c3c22f31c
Merge pull request #14489 from benpicco/libc_conflict
...
drivers/tests: rename private read() and sleep() functions to avoid conflicts with libc
2020-07-17 20:44:02 +02:00
87ba0d5b28
Merge pull request #14406 from aabadie/pr/pkg/jerryscript_update
...
pkg/jerryscript: bump to version 2.3.0
2020-07-17 20:28:21 +02:00
fa2c8b01f4
sys/ztimer: fix missing include for periph_rtt submodule
2020-07-17 20:10:27 +02:00
3aaf7ed5f3
pkg/jerryscript: remove unnecessary CFLAGS
2020-07-17 20:03:15 +02:00
d820570782
pkg/jerryscript: improve Makefile logic
...
drop useless libjerry target and use regular files targets. This prevents re-running the sub-make when the required archives are already generated
2020-07-17 20:03:15 +02:00
51cda0d2ad
pkg/jerryscript: adapt CMake options
...
Add the possibility to set JERRY_STACK to prevent stack overflows due to recursion, JERRY_GC_LIMIT to the maximum allowed heap usage increase until triggering the next garbage collection and JERRY_GC_MARK_LIMIT to adjust the maximum recursion depth during the GC mark phase
2020-07-17 20:03:15 +02:00
7b6bd1a026
pkg/jerryscript: bump to version 2.3.0
2020-07-17 20:03:15 +02:00