1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/core/lib/include
bors[bot] a272abb15d
Merge #19618 #19639 #19644 #19649 #19656
19618: cpu/stm32: fix riotboot settings for L4 and WB r=benpicco a=gschorcht

### Contribution description

This PR fixes the `riotboot` configuration for L4 and WB.

The family is not called `stm32l4` or `stm32wb` but `l4` and `wb`. That is, the `riotboot` configuration didn't work at all. Furthermore, a minimum `RIOTBOOT_LEN` of `0x2000` is required for L4.

Found when investigating the compilation errors for `bootloaders/riotboot_serial` in PR #19576.

### Testing procedure

1. Green CI.
2. Use the following commands:
    ```
    BOARD=nucleo-l496zg make -C tests/riotboot info-debug-variable-RIOTBOOT_HDR_LEN
    BOARD=p-nucleo-wb55 make -C tests/riotboot info-debug-variable-RIOTBOOT_HDR_LEN
    ```
    In master these commands give
    ```
    0x400
    ```
    With this PR these commands give
    ```
    0x200
    ```
    as expected.
3. Use the following commands:
    ```
    BOARD=nucleo-l496zg make -C tests/riotboot info-debug-variable-RIOTBOOT_LEN
    BOARD=p-nucleo-wb55 make -C tests/riotboot info-debug-variable-RIOTBOOT_LEN
    ```
    In master these commands give
    ```
    0x1000
    ```
    With this PR these commands give
    ```
    0x2000
    ```
    as expected.

### Issues/PRs references


19639: tests/net/gnrc_mac_timeout: add automated test r=aabadie a=aabadie



19644: gnrc_ipv6_nib: include RIO with all subnets in downstream RA r=benpicco a=benpicco



19649: gnrc_sixlowpan_iphc: prefix bits outside context must be zero r=benpicco a=benpicco



19656: gnrc/ipv6_auto_subnets: allow to configure minimal prefix length r=benpicco a=benpicco



Co-authored-by: Gunar Schorcht <gunar@schorcht.net>
Co-authored-by: Alexandre Abadie <alexandre.abadie@inria.fr>
Co-authored-by: Benjamin Valentin <benjamin.valentin@ml-pa.com>
2023-05-23 20:02:58 +00:00
..
macros core: move macros/math.h to core/lib/include/macros 2023-05-02 14:02:15 +02:00
assert.h Merge #19156 #19174 2023-01-19 15:38:47 +00:00
bitarithm.h core/bitarithm: add bitarithm_clzb() 2023-05-23 16:15:25 +02:00
cib.h core: split out library code 2022-03-09 21:43:05 +01:00
clist.h core: split out library code 2022-03-09 21:43:05 +01:00
compiler_hints.h core/compiler_hints: add may_be_zero() 2023-05-23 17:46:39 +02:00
container.h core/lib: split kernel defines by its concerns 2022-11-11 13:41:33 +01:00
debug.h debug: add DEBUG_BREAKPOINT() macro 2023-04-27 13:19:17 +02:00
irq.h cpu/cortexm_common: measure time spent with IRQ disabled 2022-11-24 21:27:20 +01:00
kernel_defines.h core/lib: split kernel defines by its concerns 2022-11-11 13:41:33 +01:00
kernel_init.h core/init: add early_init() 2023-01-08 22:25:10 +01:00
list.h core: split out library code 2022-03-09 21:43:05 +01:00
log.h core/lib: add doxygen for LOG_* macros 2022-03-10 10:15:14 +01:00
modules.h core/lib: split kernel defines by its concerns 2022-11-11 13:41:33 +01:00
panic.h core: Treat stack overflows as an unrecoverable error 2022-08-12 05:26:22 +02:00
priority_queue.h core: split out library code 2022-03-09 21:43:05 +01:00
ringbuffer.h core: split out library code 2022-03-09 21:43:05 +01:00
riot_version.h core/lib: split kernel defines by its concerns 2022-11-11 13:41:33 +01:00
rmutex.h core: split out library code 2022-03-09 21:43:05 +01:00
thread_config.h core: split out library code 2022-03-09 21:43:05 +01:00
xfa.h core/lib: drop read only XFA's const volatile modifiers 2023-05-04 10:53:08 +02:00