Akshai M
11c2803bcf
drivers/include/at86rf215.h : Add Group
...
Add CT Params to netdev group in Config for Doxygen
2020-04-14 20:52:16 +05:30
Akshai M
007cd5bb26
drivers/include/at.h : Add Group
...
Add CT Params to misc group in Config for Doxygen
2020-04-14 20:52:16 +05:30
Akshai M
358d7eb616
drivers/adcxx1c_params.h : Add Group
...
Add CT Params to sensors group in Config for Doxygen
2020-04-14 20:52:16 +05:30
Akshai M
497a967a23
drivers/include/sx127x.h : Add group
...
Add to config_netdev group to Doxygen
2020-04-14 20:52:16 +05:30
Akshai M
80c6374cc4
drivers/include/mrf24j40.h : Modify group
...
Add to config_netdev group to Doxygen
2020-04-14 20:52:16 +05:30
Akshai M
bc65ffdcde
drivers/include/ethos.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
10d6b7a976
drivers/include/tmp00x.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
a6d7eab027
drivers/include/tcs37727.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
0ac93bfb07
drivers/include/sps30.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
462e321ec0
drivers/include/soft_spi.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
c63bdca3ab
drivers/include/slipdev.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
4333a9f299
drivers/include/rn2xx3.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
1d3c2c4320
drivers/include/pn532.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
4c4c9f0c2b
drivers/include/pir.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
f39b320b5d
drivers/include/opt3001.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
4744401bb5
drivers/include/mtd_sdcard.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
2405ca3721
drivers/include/mpl3115a2.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
b812772e40
drivers/include/motor_driver.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
56cb11344b
drivers/include/mag3110.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
5e2478b3c5
drivers/include/kw41zrf.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
4f31c40526
drivers/include/kw2xrf.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
dba177c8aa
drivers/include/ili9341.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
013c161e1c
drivers/include/hdc1000.h : Compile Configs
2020-04-14 20:52:16 +05:30
Akshai M
f15e479388
drivers/doc.txt : Add sub-groups
...
Added Compile Config subgroups for sensors, netdev, actuators,
storage,soft_periph and misc to Doxygen
2020-04-14 20:52:16 +05:30
benpicco
1c22ee8782
Merge pull request #13844 from maribu/msbiot
...
boards/msbiot: Use common stm32 serial/programmer settings
2020-04-14 13:54:58 +02:00
Leandro Lanzieri
b4655f6c91
Merge pull request #13848 from fjmolinas/pr_ccm_no_plaintext
...
sys/crypto/modes/ccm: handle input_len = 0
2020-04-14 10:49:54 +02:00
Marian Buschsieweke
54822ab5be
Merge pull request #13857 from benpicco/cpu/lpc2387/gpio-fix_port2
...
cpu/lpc2387: gpio: Fix interrupts on PORT2
2020-04-13 13:55:26 +02:00
Benjamin Valentin
cfe606b601
cpu/lpc2387: gpio: Don't discriminate between rising & falling pins
...
The `test_irq()` function does not discriminate between rising and
falling pins, so there is no need to handle them separately.
2020-04-12 21:31:42 +02:00
Benjamin Valentin
6233175f16
cpu/lpc2387: gpio: Fix interrupts on PORT2
...
The calculation of `_state_index` is broken for `port = 2`
_gpio_isr_map[n + (port<<1)];
Will not yield the right result. As a consequence, IRQs on Port 2
are not working.
The right thing here would be
_gpio_isr_map[n + (port ? 32 : 0)];
But we might just re-using the `_isr_map_entry()` function.
Also only iterate as many times as there are set interrupt bits.
2020-04-12 21:31:42 +02:00
Benjamin Valentin
58beead805
boards/mcb2388: define flank of the on-board button
...
Define the button flank for tests that use this define.
2020-04-12 21:08:46 +02:00
c68475eb0d
Merge pull request #13850 from miri64/xtimer/fix/now32-overflow
...
xtimer: set now pointer correctly in _update_short_timers() loop
2020-04-10 23:14:46 +02:00
Martine S. Lenders
085c62ecdc
xtimer_core: piggy-back style fixes
2020-04-10 12:42:32 +02:00
Martine S. Lenders
4aa4a17071
tests/xtimer: add regression test for long_start_time update bug
...
Co-Authored-By: Julian Holzwarth <julian.holzwarth@fu-berlin.de>
2020-04-10 12:42:24 +02:00
Francisco Molina
7a39e2e875
tests/sys_crypto/tests-crypto-modes-ccm: add test for input_len=0
2020-04-10 10:41:01 +02:00
Francisco Molina
8372286591
sys/crypto/modes/ccm: accept input_len=0
...
CCM may be used on messages with no plaintext data.
2020-04-10 10:41:01 +02:00
Martine S. Lenders
212fe15786
xtimer: set now pointer correctly in _update_short_timers() loop
...
This fixes `xtimer` to use `xtimer_now64()` instead of `xtimer_now()`
for updating the `*now` variable during the iteration in
`_update_short_timers()` function. The same function is used to
initialize `*now` in `_timer_callback()` below.
While using `xtimer_now()` in this iteration step does not hinder the
proper execution of all timers in the short term timers (for those the
`xtimer` module only looks at the `start_time` member, not the
`long_start_time` member) at least for the current long term time window
(I did not test higher cases), it sets the `long_start_time` member to 0
for all timers following in the list of timers after this iteration
step. However, external modules that rely on this to be correct,
e.g. evtimer [1], fail their calculations when trying to compare to
the current value to `xtimer_now64()`.
[1] https://github.com/RIOT-OS/RIOT/blob/11f3d68/sys/evtimer/evtimer.c#L118-L121
Co-Authored-By: Cenk Gündoğan <mail+dev@gundogan.net>
2020-04-10 00:02:33 +02:00
11f3d68887
Merge pull request #13847 from bergzand/pr/littlefs2/bump_2.2.1
...
littlefs2: bump to version 2.2.1
2020-04-09 16:14:40 +02:00
3625fa9b95
littlefs2: bump to version 2.2.1
2020-04-09 15:39:14 +02:00
benpicco
3b5067b5d0
Merge pull request #13845 from maribu/ws281x
...
drivers/ws281x: Fix dependencies & doc
2020-04-09 15:25:51 +02:00
Marian Buschsieweke
9efd47952e
drivers/ws281x: Extended doc
...
Point out that automatic backend selection is performed, when no backend is
selected.
2020-04-09 13:34:51 +02:00
Marian Buschsieweke
d3d2cdae8a
drivers/ws281x: Fix dependencies
...
arch_esp32 was missing in FEATURES_REQUIRED_ANY for the ws281x, resulting in
ESP32 boards incorrectly being reported as unsupported.
2020-04-09 13:30:18 +02:00
Marian Buschsieweke
4e60eb9dd5
Merge pull request #13843 from mtreffers/doc-fixes
...
Doc: fix typo and extend ws281x documentation
2020-04-09 13:21:45 +02:00
mtreffers
1ca28b8181
drivers/ws281x: fix documentation
...
extend ws281x documentation with usage for ESP32 and VT100
fix indendation
2020-04-09 10:22:39 +02:00
Marian Buschsieweke
c989205d8f
boards/msbiot: Use common stm32 serial/programmer settings
2020-04-09 09:57:45 +02:00
Francisco
3177784039
Merge pull request #13798 from jia200x/pr/at86rf2x_basic_mode
...
at86rf2xx: implement basic mode (v2)
2020-04-09 09:21:15 +02:00
Leandro Lanzieri
a06d9bbb66
Merge pull request #13315 from jia200x/pr/kconfig/ieee802154
...
ieee802154: Expose configurations to Kconfig
2020-04-08 19:34:55 +02:00
José Alamos
bb4e34cab4
Merge pull request #13314 from leandrolanzieri/pr/kconfig_migrate/drivers/mrf24j40
...
drivers/mrf24j40: Expose configurations to Kconfig
2020-04-08 19:29:13 +02:00
Jose Alamos
ab5418ebab
at86rf2xx: report CRC error in basic mode
2020-04-08 19:14:45 +02:00
Jose Alamos
d4b0aff8cf
at86rf2xx: implement basic mode
2020-04-08 19:14:45 +02:00
Jose Alamos
69eb3c7fe2
at86rf2xx: add basic mode PHY state
2020-04-08 19:14:44 +02:00