Gunar Schorcht
c93f0a70d4
tests/pkg/fatfs_vfs: replace external mtd0
declaration
...
Since the `extern mtd_dev_t *` declarations were removed from board definitions, `mtd_dev_get` has to be used instead.
2023-12-07 15:32:49 +01:00
Gunar Schorcht
1ad92d458f
tests/pkg/fatfs: replace external mtd0
declaration
...
Since the `extern mtd_dev_t *` declarations were removed from board definitions, `mtd_dev_get` has to be used instead.
2023-12-07 15:32:49 +01:00
Marian Buschsieweke
82d98ed377
examples, tests: update Makefile.ci for AVR8
...
Ran dist/tools/insufficient_memory for all AVR8 boards.
2023-12-01 19:37:05 +01:00
Marian Buschsieweke
6b30f5cd1b
tests: add nucleo-f030r8 to Makefile.ci where needed
2023-11-14 12:55:28 +01:00
Jan Mohr
0f27efb98d
tests/pkg/minmea: fixing RMC timestamp
2023-10-27 10:43:41 +03:00
Jan Mohr
bdb1bc3018
tests/pkg/minmea: exclude boards with small memory
2023-10-23 12:30:52 +02:00
Jan Mohr
d569cdf4f0
tests/pkg/minmea: adapting test file
2023-10-23 10:32:31 +02:00
Jan Mohr
1bfe45e785
tests/pkg/minmea: adding GGA, GSA and RMC sentences to test application
2023-10-23 10:32:31 +02:00
Marian Buschsieweke
edc43201db
tree-wide: fix typos in doc and comments
...
This should not change any generated binary
2023-10-16 12:17:48 +02:00
Martine Lenders
cb2287d616
tests/pkg/lwip: Add README.md
2023-09-27 10:40:06 +02:00
Lena Boeckmann
40902cd947
pkg/cryptoauthlib: Add PSA Wrappers
2023-08-31 14:38:50 +02:00
875d9a762d
tests/pkg/relic: skip CI testing with samr21-xpro and llvm toolchain
2023-08-24 14:00:07 +02:00
e2e9c0ccc8
tests/pkg/mcufont: Initial include of MCUFont test
2023-08-14 16:00:32 +02:00
Gunar Schorcht
db71529ef4
tests/pkg/lvgl_touch: increase main thread stack size for ESPs
...
ESPx SoC need more stack size for the main thread to avoid stack overflows.
2023-08-09 07:40:35 +02:00
Gunar Schorcht
2a87213ff4
tests/pkg/lvgl: increase main thread stack size for ESPs
...
ESPx SoC need more stack size for the main thread to avoid stack overflows.
2023-08-09 07:40:35 +02:00
Gunar Schorcht
4591cebeef
boards/sipeed-longan-nano-tft: blacklist in tests and examples
2023-08-06 12:56:36 +02:00
MrKevinWeiss
63f89b053c
tests/pkg/cayenne-lpp: Remove clang condition
...
As in the previous commit, the floats are handled the same clang or not.
2023-08-01 08:00:27 +02:00
MrKevinWeiss
96d76125b4
tests/pkg/lora-serialization: Remove clang condition
...
It seems like the differences between float handling in clang vs gnu are resolved.
This condition now makes tests fail so it should be removed...
2023-08-01 07:56:15 +02:00
Hugues Larrive
3c465836f2
examples and tests: add atmega8 to relevent Makefile.ci
...
using dist/tools/insufficient_memory/add_insufficient_memory_board.sh
2023-07-11 21:22:02 +02:00
Marian Buschsieweke
ff7f8ae2f0
cpu/msp430: reorganize code
...
RIOT supports two distinct families of the MSP430: The [MSP430 x1xx]
MCU family and the [MSP430 F2xx/G2xx] MCU family. For both incompatible
MCU families the code was located in the msp430fxyz folder, resulting
in case of the UART driver in particularly bizarre code looking roughly
like this:
#ifndef UART_USE_USCI
/* implementation of x1xx peripheral ... */
#else
/* implementation of F2xx/G2xx peripheral ... */
#endif
/* zero shared code between both variants */
This splits the peripheral drivers for USCI and USART serial IP blocks
into separate files and relocates everything in cpu/msp430, similar to
how cpu/stm32 is organized.
[MSP430 x1xx]: https://www.ti.com/lit/ug/slau049f/slau049f.pdf
[MSP430 F2xx/G2xx]: https://www.ti.com/lit/ug/slau144k/slau144k.pdf
2023-06-19 17:14:57 +02:00
Marian Buschsieweke
d28d4cdfa3
boards/olimex-msp430-h2618: add new board
2023-06-08 23:42:50 +02:00
Marian Buschsieweke
b084575aeb
tests/pkg/lvgl: minor style fix
...
CI should be happy again now.
2023-06-01 19:34:28 +02:00
Marian Buschsieweke
63ca70a564
tests/pkg/lvgl: avoid using floats
2023-06-01 19:34:10 +02:00
MrKevinWeiss
23b6d0b0ad
tests/*usb*: Fix USB kconfig model
2023-05-31 13:04:42 +02:00
609ba37b81
tests/pkg/libbase58: add Kconfig config
2023-05-19 15:40:57 +02:00
Marian Buschsieweke
e7d1c4abc0
boards/olimex-msp430-h1611: new board
2023-05-16 15:03:12 +02:00
c482090e1c
tests/pkg_cmsis-*: extend whitelisted boards
2023-05-14 21:08:29 +02:00
3d655dc28e
tests/pkg_cmsis-nn: adapt to use new common cmsis package
2023-05-14 21:08:28 +02:00
0f6d79d768
tests/pkg_cmsis-dsp: adapt to use new common cmsis package
2023-05-14 21:08:27 +02:00
984dba7564
treewide: fix path to external_board_dirs test in doc
2023-05-13 18:31:05 +02:00
ab3cfff3e5
tests: move lwip* tests to tests/pkg
2023-05-12 11:25:00 +02:00
f77e7c80c4
tests: move nimble_* tests to tests/pkg
2023-05-12 11:24:59 +02:00
bors[bot]
c7f750a880
Merge #19566 #19570
...
19566: tests: move sys related applications to their own tests/sys/ folder r=aabadie a=aabadie
19570: boards/p-l496g-cell02: fix UART_DEV(2) configuration r=aabadie a=gschorcht
### Contribution description
This PR fixes the configuration of `UART_DEV(2)`. RX and TX pin were reversed in configuration. The TX pin is connected to PB6 instead of PG10 and the RX pin is connected to PG10 instead of PB6, see [schematic](https://www.st.com/content/ccc/resource/technical/layouts_and_diagrams/schematic_pack/group2/f5/28/1b/e1/55/12/4d/3c/mb1261-cell02-b06-schematic/files/mb1261-cell02-b06-schematic.pdf/jcr:content/translations/en.mb1261-cell02-b06-schematic.pdf ), page 14.
### Testing procedure
The UART interface at STMOD+ or PMOD connector should work.
### Issues/PRs references
Co-authored-by: Alexandre Abadie <alexandre.abadie@inria.fr>
Co-authored-by: Gunar Schorcht <gunar@schorcht.net>
2023-05-10 13:02:19 +00:00
8a7ad8fcfe
tests/pkg/tinyusb_cdc_acm_stdio: fix symlink
2023-05-10 12:45:00 +02:00
6e0bad7026
tests/lua_loader: move to tests/pkg/lua_loader
2023-05-10 12:05:19 +02:00
Frankie A
e8f897016c
tests/pkg_lvgl_touch: Replace LittlevGL to LVGL
2023-05-08 15:00:54 +02:00
Frankie A
73d0a5c2d8
tests/pkg_lvgl: Replace LittlevGL to LVGL
2023-05-08 15:00:53 +02:00
07d2e1c228
treewide: replace remaining occurrences of tests/pkg_*
2023-05-06 07:55:03 +02:00
7ccf70ff04
tests: move pkg_ application to tests/pkg subdirectory
2023-05-06 07:55:01 +02:00