mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
f1c57b21ec
The tests overrides the target all to be tested by the CI. All the instructions how to use it are in README.md The test is successful if the image boots and displays information about the image and running slot. Co-authored-by: Federico Pellegrin <fede@evolware.org> |
||
---|---|---|
.. | ||
main.c | ||
Makefile | ||
README.md |
RIOT bootloader test
This is a basic example how to use RIOT bootloader in your embedded application.
This test should foremost give you an overview how to use riotboot:
-
make all
build the test using the target riotboot, which generates a binary file of the application with a header on top of it, used by the bootloader to recognise a bootable image. -
make riotboot/flash
creates the binary files and flashes both riotboot and the RIOT image with headers included. This should boot as a normal application.
In this test two modules riot_hdr
and slot_util
are used to showcase
the access to riotboot shared functions.