45c839dc98
19407: cpu/stm32/periph: Implement GPIO LL for STM32F1 without IRQ support (yet) r=gschorcht a=maribu ### Contribution description This implements GPIO LL support for the STM32F1 in the first commit. IRQ support is added with https://github.com/RIOT-OS/RIOT/pull/19412. This sneaks in a second commit replacing the `expect()` calls in `tests/periph_gpio_ll` with a trivial five-liner that doesn't `panic()`, so that stdio output will still be delivered on high level stdio implementations. The tests provides a lot of useful output to aid debugging, so its a great usability improvement if the test makes sure to actually deliver that output. ### Testing procedure <details><summary><code>make -C tests/periph_gpio_ll BOARD=nucleo-f103rb flash term</code></summary> ``` 2023-03-17 18:55:09,188 # Help: Press s to start test, r to print it is ready s 2023-03-17 18:55:10,299 # START 2023-03-17 18:55:10,307 # main(): This is RIOT! (Version: 2023.04-devel-683-g9c3812-cpu/stm32/periph/gpio_ll) 2023-03-17 18:55:10,309 # Test / Hardware Details: 2023-03-17 18:55:10,310 # ======================== 2023-03-17 18:55:10,311 # Cabling: 2023-03-17 18:55:10,313 # (INPUT -- OUTPUT) 2023-03-17 18:55:10,315 # P2.10 (PC10) -- P2.2 (PC2) 2023-03-17 18:55:10,318 # P2.12 (PC12) -- P2.3 (PC3) 2023-03-17 18:55:10,322 # Number of pull resistor values supported: 1 2023-03-17 18:55:10,325 # Number of drive strengths supported: 1 2023-03-17 18:55:10,328 # Number of slew rates supported: 3 2023-03-17 18:55:10,330 # Valid GPIO ports: 2023-03-17 18:55:10,332 # - PORT 0 (PORT A) 2023-03-17 18:55:10,333 # - PORT 1 (PORT B) 2023-03-17 18:55:10,335 # - PORT 2 (PORT C) 2023-03-17 18:55:10,336 # - PORT 3 (PORT D) 2023-03-17 18:55:10,338 # - PORT 4 (PORT E) 2023-03-17 18:55:10,338 # 2023-03-17 18:55:10,341 # Testing gpio_port_pack_addr() 2023-03-17 18:55:10,343 # ============================= 2023-03-17 18:55:10,343 # 2023-03-17 18:55:10,344 # All OK 2023-03-17 18:55:10,344 # 2023-03-17 18:55:10,346 # Testing gpip_ng_init() 2023-03-17 18:55:10,348 # ====================== 2023-03-17 18:55:10,348 # 2023-03-17 18:55:10,354 # Testing is_gpio_port_num_valid() is true for PORT_OUT and PORT_IN: 2023-03-17 18:55:10,354 # 2023-03-17 18:55:10,358 # Testing input configurations for PIN_IN_0: 2023-03-17 18:55:10,361 # Support for input with pull up: yes 2023-03-17 18:55:10,366 # state: in, pull: up, schmitt trigger: off, value: on 2023-03-17 18:55:10,369 # Support for input with pull down: yes 2023-03-17 18:55:10,374 # state: in, pull: down, schmitt trigger: off, value: off 2023-03-17 18:55:10,378 # Support for input with pull to bus level: no 2023-03-17 18:55:10,383 # Support for floating input (no pull resistors): yes 2023-03-17 18:55:10,388 # state: in, pull: none, schmitt trigger: off, value: off 2023-03-17 18:55:10,388 # 2023-03-17 18:55:10,392 # Testing output configurations for PIN_OUT_0: 2023-03-17 18:55:10,397 # Support for output (push-pull) with initial value of LOW: yes 2023-03-17 18:55:10,401 # state: out-pp, slew: slowest, value: off 2023-03-17 18:55:10,404 # Output is indeed LOW: yes 2023-03-17 18:55:10,408 # state: out-pp, slew: slowest, value: on 2023-03-17 18:55:10,411 # Output can be pushed HIGH: yes 2023-03-17 18:55:10,417 # Support for output (push-pull) with initial value of HIGH: yes 2023-03-17 18:55:10,420 # state: out-pp, slew: slowest, value: on 2023-03-17 18:55:10,424 # Output is indeed HIGH: yes 2023-03-17 18:55:10,430 # Support for output (open drain with pull up) with initial value of LOW: no 2023-03-17 18:55:10,437 # Support for output (open drain with pull up) with initial value of HIGH: no 2023-03-17 18:55:10,443 # Support for output (open drain) with initial value of LOW: yes 2023-03-17 18:55:10,449 # state: out-od, slew: slowest, pull: none, schmitt trigger: off, value: off 2023-03-17 18:55:10,452 # Output is indeed LOW: yes 2023-03-17 18:55:10,458 # Support for output (open drain) with initial value of HIGH: yes 2023-03-17 18:55:10,465 # state: out-od, slew: slowest, pull: none, schmitt trigger: off, value: on 2023-03-17 18:55:10,470 # state: in, pull: down, schmitt trigger: off, value: off 2023-03-17 18:55:10,474 # Output can indeed be pulled LOW: yes 2023-03-17 18:55:10,478 # state: in, pull: up, schmitt trigger: off, value: on 2023-03-17 18:55:10,483 # Output can indeed be pulled HIGH: yes 2023-03-17 18:55:10,488 # Support for output (open source) with initial value of LOW: no 2023-03-17 18:55:10,494 # Support for output (open source) with initial value of HIGH: no 2023-03-17 18:55:10,501 # Support for output (open source with pull up) with initial value of HIGH: no 2023-03-17 18:55:10,508 # Support for output (open source with pull up) with initial value of LOW: no 2023-03-17 18:55:10,511 # Support for disconnecting GPIO: yes 2023-03-17 18:55:10,515 # Output can indeed be pulled LOW: yes 2023-03-17 18:55:10,519 # Output can indeed be pulled HIGH: yes 2023-03-17 18:55:10,519 # 2023-03-17 18:55:10,523 # Testing Reading/Writing GPIO Ports 2023-03-17 18:55:10,526 # ================================== 2023-03-17 18:55:10,526 # 2023-03-17 18:55:10,529 # testing initial value of 0 after init 2023-03-17 18:55:10,531 # ...OK 2023-03-17 18:55:10,535 # testing setting both outputs_optional simultaneously 2023-03-17 18:55:10,537 # ...OK 2023-03-17 18:55:10,541 # testing clearing both outputs_optional simultaneously 2023-03-17 18:55:10,543 # ...OK 2023-03-17 18:55:10,547 # testing toggling first output (0 --> 1) 2023-03-17 18:55:10,548 # ...OK 2023-03-17 18:55:10,552 # testing toggling first output (1 --> 0) 2023-03-17 18:55:10,553 # ...OK 2023-03-17 18:55:10,557 # testing toggling second output (0 --> 1) 2023-03-17 18:55:10,558 # ...OK 2023-03-17 18:55:10,562 # testing toggling second output (1 --> 0) 2023-03-17 18:55:10,563 # ...OK 2023-03-17 18:55:10,569 # testing setting first output and clearing second with write 2023-03-17 18:55:10,570 # ...OK 2023-03-17 18:55:10,575 # testing setting second output and clearing first with write 2023-03-17 18:55:10,576 # ...OK 2023-03-17 18:55:10,580 # All input/output operations worked as expected 2023-03-17 18:55:10,580 # 2023-03-17 18:55:10,580 # 2023-03-17 18:55:10,582 # TEST SUCCEEDED 2023-03-17 18:55:10,588 # { "threads": [{ "name": "main", "stack_size": 1536, "stack_used": 456 }]} ``` </details> <details><summary><code>make -C tests/bench_periph_gpio_ll BOARD=nucleo-f103rb flash term</code></summary> ``` 2023-03-17 18:55:42,192 # Help: Press s to start test, r to print it is ready s 2023-03-17 18:55:44,616 # START 2023-03-17 18:55:44,624 # main(): This is RIOT! (Version: 2023.04-devel-683-g9c3812-cpu/stm32/periph/gpio_ll) 2023-03-17 18:55:44,624 # 2023-03-17 18:55:44,626 # Benchmarking GPIO APIs 2023-03-17 18:55:44,628 # ====================== 2023-03-17 18:55:44,628 # 2023-03-17 18:55:44,632 # estimating loop overhead for compensation 2023-03-17 18:55:44,635 # ----------------------------------------- 2023-03-17 18:55:44,642 # 4168 us for 50000 iterations 2023-03-17 18:55:44,642 # 2023-03-17 18:55:44,647 # periph/gpio: Using 2x gpio_set() and 2x gpio_clear() 2023-03-17 18:55:44,651 # --------------------------------------------------- 2023-03-17 18:55:44,706 # 50000 iterations took 45840 us (50008 us uncompensated) 2023-03-17 18:55:44,713 # Two square waves pins at 1090750 Hz ( 999840 Hz uncompensated) 2023-03-17 18:55:44,719 # ~66 CPU cycles per square wave period (~72 cycles uncompensated) 2023-03-17 18:55:44,719 # :'-( 2023-03-17 18:55:44,719 # 2023-03-17 18:55:44,724 # periph/gpio_ll: Using gpio_ll_set() and gpio_ll_clear() 2023-03-17 18:55:44,729 # ------------------------------------------------------- 2023-03-17 18:55:44,738 # 50000 iterations took 695 us (4863 us uncompensated) 2023-03-17 18:55:44,745 # Two square waves pins at 71942446 Hz ( 10281719 Hz uncompensated) 2023-03-17 18:55:44,750 # ~1 CPU cycles per square wave period (~7 cycles uncompensated) 2023-03-17 18:55:44,751 # :-D 2023-03-17 18:55:44,751 # 2023-03-17 18:55:44,755 # periph/gpio: Using 4x gpio_toggle() 2023-03-17 18:55:44,757 # ----------------------------------- 2023-03-17 18:55:44,965 # 50000 iterations took 198646 us (202814 us uncompensated) 2023-03-17 18:55:44,972 # Two square waves pins at 251704 Hz ( 246531 Hz uncompensated) 2023-03-17 18:55:44,977 # ~286 CPU cycles per square wave period (~292 cycles uncompensated) 2023-03-17 18:55:44,978 # :'-( 2023-03-17 18:55:44,978 # 2023-03-17 18:55:44,982 # periph/gpio_ll: Using 2x gpio_ll_toggle() 2023-03-17 18:55:44,985 # ----------------------------------------- 2023-03-17 18:55:45,010 # 50000 iterations took 15972 us (20140 us uncompensated) 2023-03-17 18:55:45,017 # Two square waves pins at 3130478 Hz ( 2482621 Hz uncompensated) 2023-03-17 18:55:45,023 # ~23 CPU cycles per square wave period (~29 cycles uncompensated) 2023-03-17 18:55:45,023 # :'-( 2023-03-17 18:55:45,023 # 2023-03-17 18:55:45,026 # periph/gpio: Using 4x gpio_write() 2023-03-17 18:55:45,029 # ---------------------------------- 2023-03-17 18:55:45,097 # 50000 iterations took 58345 us (62513 us uncompensated) 2023-03-17 18:55:45,103 # Two square waves pins at 856971 Hz ( 799833 Hz uncompensated) 2023-03-17 18:55:45,109 # ~84 CPU cycles per square wave period (~90 cycles uncompensated) 2023-03-17 18:55:45,109 # :'-( 2023-03-17 18:55:45,110 # 2023-03-17 18:55:45,113 # periph/gpio_ll: Using 2x gpio_ll_write() 2023-03-17 18:55:45,117 # ---------------------------------------- 2023-03-17 18:55:45,128 # 50000 iterations took 2777 us (6945 us uncompensated) 2023-03-17 18:55:45,135 # Two square waves pins at 18005041 Hz ( 7199424 Hz uncompensated) 2023-03-17 18:55:45,141 # ~4 CPU cycles per square wave period (~10 cycles uncompensated) 2023-03-17 18:55:45,141 # :-) 2023-03-17 18:55:45,141 # 2023-03-17 18:55:45,141 # 2023-03-17 18:55:45,142 # TEST SUCCEEDED 2023-03-17 18:55:45,149 # { "threads": [{ "name": "main", "stack_size": 1536, "stack_used": 448 }]} ``` </details> ### Issues/PRs references None Co-authored-by: Marian Buschsieweke <marian.buschsieweke@ovgu.de> |
||
---|---|---|
.. | ||
backtrace | ||
bench_msg_pingpong | ||
bench_mutex_pingpong | ||
bench_periph_gpio_ll | ||
bench_runtime_coreapis | ||
bench_sched_nop | ||
bench_sizeof_coretypes | ||
bench_sys_atomic_utils | ||
bench_sys_base64 | ||
bench_thread_flags_pingpong | ||
bench_thread_yield_pingpong | ||
bench_timers | ||
bench_xtimer | ||
bench_xtimer_load | ||
bench_ztimer | ||
bitarithm_timings | ||
blob | ||
bloom_bytes | ||
board_microbit | ||
build_system_cflags_spaces | ||
build_system_utils | ||
buttons | ||
c11_atomics_cpp_compat | ||
can_trx | ||
candev | ||
cb_mux | ||
cb_mux_bench | ||
cond_order | ||
congure_abe | ||
congure_quic | ||
congure_reno | ||
congure_test | ||
conn_can | ||
cortexm_common_ldscript | ||
cpp11_condition_variable | ||
cpp11_mutex | ||
cpp11_thread | ||
cpp_ctors | ||
cpp_exclude | ||
cpp_ext | ||
cpu_avr8_xmega_drivers | ||
cpu_cortexm_address_check | ||
cpu_efm32_drivers | ||
cpu_efm32_features | ||
dbgpin | ||
deferred_yield_higher | ||
devfs | ||
disp_dev | ||
driver_ad7746 | ||
driver_adcxx1c | ||
driver_ads101x | ||
driver_adt7310 | ||
driver_adxl345 | ||
driver_aip31068 | ||
driver_apa102 | ||
driver_apds99xx | ||
driver_apds99xx_full | ||
driver_at | ||
driver_at24cxxx | ||
driver_at24mac | ||
driver_at25xxx | ||
driver_at30tse75x | ||
driver_at86rf2xx | ||
driver_at86rf2xx_aes | ||
driver_at86rf215 | ||
driver_ata8520e | ||
driver_atwinc15x0 | ||
driver_bh1750 | ||
driver_bh1900nux | ||
driver_bme680 | ||
driver_bmp180 | ||
driver_bmx055 | ||
driver_bmx280 | ||
driver_bq2429x | ||
driver_cc110x | ||
driver_cc2420 | ||
driver_cc2538_rf | ||
driver_ccs811 | ||
driver_ccs811_full | ||
driver_cst816s | ||
driver_dac_dds | ||
driver_dcf77 | ||
driver_dfplayer | ||
driver_dht | ||
driver_dose | ||
driver_ds18 | ||
driver_ds75lx | ||
driver_ds1307 | ||
driver_ds3231 | ||
driver_ds3234 | ||
driver_dsp0401 | ||
driver_dynamixel | ||
driver_edbg_eui | ||
driver_enc28j60 | ||
driver_encx24j600 | ||
driver_epd_bw_spi | ||
driver_epd_bw_spi_disp_dev | ||
driver_esp_eth | ||
driver_ethos | ||
driver_feetech | ||
driver_ft5x06 | ||
driver_fxos8700 | ||
driver_gp2y10xx | ||
driver_grove_ledbar | ||
driver_hd44780 | ||
driver_hdc1000 | ||
driver_hih6130 | ||
driver_hm330x | ||
driver_hmc5883l | ||
driver_hsc | ||
driver_hts221 | ||
driver_ili9341 | ||
driver_ina2xx | ||
driver_ina3221 | ||
driver_io1_xplained | ||
driver_ir_nec | ||
driver_isl29020 | ||
driver_isl29125 | ||
driver_itg320x | ||
driver_jc42 | ||
driver_kw2xrf | ||
driver_l3g4200d | ||
driver_l3gxxxx | ||
driver_lc709203f | ||
driver_lis2dh12 | ||
driver_lis3dh | ||
driver_lis3mdl | ||
driver_lm75 | ||
driver_lpd8808 | ||
driver_lpsxxx | ||
driver_lsm6dsl | ||
driver_lsm303dlhc | ||
driver_ltc4150 | ||
driver_mag3110 | ||
driver_matrix_keypad | ||
driver_mcp47xx | ||
driver_mfrc522 | ||
driver_mhz19 | ||
driver_mma8x5x | ||
driver_mma7660 | ||
driver_motor_driver | ||
driver_mpl3115a2 | ||
driver_mpu9x50 | ||
driver_mq3 | ||
driver_mrf24j40 | ||
driver_my9221 | ||
driver_netdev_common | ||
driver_nrf24l01p_lowlevel | ||
driver_nrf24l01p_ng | ||
driver_nrf802154 | ||
driver_nrfmin | ||
driver_nvram_spi | ||
driver_opt3001 | ||
driver_pca9633 | ||
driver_pca9685 | ||
driver_pcd8544 | ||
driver_pcf857x | ||
driver_ph_oem | ||
driver_pir | ||
driver_pn532 | ||
driver_pulse_counter | ||
driver_qmc5883l | ||
driver_rn2xx3 | ||
driver_sam0_eth | ||
driver_scd30 | ||
driver_sdcard_spi | ||
driver_sdp3x | ||
driver_sds011 | ||
driver_seesaw_soil | ||
driver_servo | ||
driver_sgp30 | ||
driver_sht1x | ||
driver_sht2x | ||
driver_sht3x | ||
driver_shtcx | ||
driver_si70xx | ||
driver_si114x | ||
driver_si1133 | ||
driver_sm_pwm_01c | ||
driver_soft_spi | ||
driver_soft_uart | ||
driver_sps30 | ||
driver_srf02 | ||
driver_srf04 | ||
driver_srf08 | ||
driver_st7735 | ||
driver_stm32_eth | ||
driver_stmpe811 | ||
driver_sx126x | ||
driver_sx127x | ||
driver_sx1280 | ||
driver_tcs37727 | ||
driver_tmp00x | ||
driver_tps6274x | ||
driver_tsl2561 | ||
driver_tsl4531x | ||
driver_vcnl40x0 | ||
driver_veml6070 | ||
driver_vl6180x | ||
driver_w5100 | ||
driver_ws281x | ||
driver_xbee | ||
eepreg | ||
embunit | ||
emcute | ||
entropy_source | ||
event_periodic_callback | ||
event_source | ||
event_thread_shared | ||
event_threads | ||
event_wait_timeout | ||
event_wait_timeout_ztimer | ||
event_ztimer | ||
events | ||
evtimer_mbox | ||
evtimer_msg | ||
evtimer_underflow | ||
external_board_dirs | ||
external_board_native | ||
external_module_dirs | ||
external_pkg_dirs | ||
fault_handler | ||
float | ||
fmt_print | ||
frac-config | ||
gcoap_dns | ||
gcoap_fileserver | ||
gnrc_dhcpv6_client | ||
gnrc_dhcpv6_client_6lbr | ||
gnrc_dhcpv6_client_stateless | ||
gnrc_dhcpv6_relay | ||
gnrc_gomach | ||
gnrc_ipv6_ext | ||
gnrc_ipv6_ext_frag | ||
gnrc_ipv6_ext_opt | ||
gnrc_ipv6_fwd_w_sub | ||
gnrc_ipv6_nib | ||
gnrc_ipv6_nib_6ln | ||
gnrc_ipv6_nib_dns | ||
gnrc_lorawan | ||
gnrc_lorawan_11 | ||
gnrc_lwmac | ||
gnrc_mac_timeout | ||
gnrc_ndp | ||
gnrc_netif | ||
gnrc_netif_ieee802154 | ||
gnrc_netif_ipv6_wait_for_global_address | ||
gnrc_rpl | ||
gnrc_rpl_p2p | ||
gnrc_rpl_srh | ||
gnrc_sixlowpan | ||
gnrc_sixlowpan_frag | ||
gnrc_sixlowpan_frag_minfwd | ||
gnrc_sixlowpan_frag_sfr | ||
gnrc_sixlowpan_frag_sfr_congure | ||
gnrc_sixlowpan_frag_sfr_congure_impl | ||
gnrc_sixlowpan_iphc_w_vrb | ||
gnrc_sock_async_event | ||
gnrc_sock_dns | ||
gnrc_sock_dodtls | ||
gnrc_sock_ip | ||
gnrc_sock_neterr | ||
gnrc_sock_tcp | ||
gnrc_sock_udp | ||
gnrc_tcp | ||
gnrc_tx_sync | ||
gnrc_udp | ||
heap_cmd | ||
ieee802154_hal | ||
ieee802154_security | ||
ieee802154_submac | ||
irq | ||
irq_cpp | ||
irq_disable_restore | ||
isr_yield_higher | ||
kconfig | ||
kconfig_features | ||
l2util | ||
leds | ||
libc_newlib | ||
log_color | ||
log_printfnoformat | ||
lua_loader | ||
lwip | ||
lwip_sock_ip | ||
lwip_sock_tcp | ||
lwip_sock_udp | ||
malloc | ||
malloc_thread_safety | ||
mcuboot | ||
memarray | ||
minimal | ||
mpu_noexec_ram | ||
mpu_stack_guard | ||
msg_avail | ||
msg_queue_capacity | ||
msg_queue_print | ||
msg_send_receive | ||
msg_try_receive | ||
mtd_at24cxxx | ||
mtd_at25xxx | ||
mtd_flashpage | ||
mtd_mapper | ||
mtd_raw | ||
mutex_cancel | ||
mutex_order | ||
mutex_unlock_and_sleep | ||
nanocoap_cli | ||
netdev_test | ||
netstats_l2 | ||
netstats_neighbor | ||
netutils | ||
nimble_autoconn_ccnl | ||
nimble_autoconn_gnrc | ||
nimble_autoconn_gnrc_ext | ||
nimble_esp_wifi_coexist | ||
nimble_ext_adv | ||
nimble_l2cap | ||
nimble_l2cap_server | ||
nimble_netif_ext | ||
nimble_rpble_gnrc | ||
nimble_rpble_gnrc_ext | ||
nimble_statconn_gnrc | ||
nimble_statconn_gnrc_ext | ||
od | ||
pbkdf2 | ||
periph_adc | ||
periph_backup_ram | ||
periph_cpuid | ||
periph_dac | ||
periph_dma | ||
periph_eeprom | ||
periph_flashpage | ||
periph_flashpage_unittest | ||
periph_gpio | ||
periph_gpio_arduino | ||
periph_gpio_ll | ||
periph_hwrng | ||
periph_i2c | ||
periph_ltdc | ||
periph_pm | ||
periph_ptp_clock | ||
periph_ptp_timer | ||
periph_pwm | ||
periph_qdec | ||
periph_rtc | ||
periph_rtt | ||
periph_rtt_min | ||
periph_spi | ||
periph_spi_dma | ||
periph_timer | ||
periph_timer_periodic | ||
periph_timer_short_relative_set | ||
periph_uart | ||
periph_uart_mode | ||
periph_uart_nonblocking | ||
periph_vbat | ||
periph_wdt | ||
phydat_dump | ||
phydat_unix | ||
pipe | ||
pkg_arduino_adafruit_sensor | ||
pkg_arduino_sdi_12 | ||
pkg_c25519 | ||
pkg_cayenne-lpp | ||
pkg_cifra | ||
pkg_cmsis-dsp | ||
pkg_cmsis-nn | ||
pkg_cn-cbor | ||
pkg_corejson | ||
pkg_cryptoauthlib_compare_sha256 | ||
pkg_cryptoauthlib_internal-tests | ||
pkg_edhoc_c | ||
pkg_elk | ||
pkg_emlearn | ||
pkg_etl | ||
pkg_fatfs | ||
pkg_fatfs_vfs | ||
pkg_fff | ||
pkg_flashdb_mtd | ||
pkg_flashdb_vfs | ||
pkg_flatbuffers | ||
pkg_hacl | ||
pkg_heatshrink | ||
pkg_jsmn | ||
pkg_libb2 | ||
pkg_libbase58 | ||
pkg_libcose | ||
pkg_libcose_encrypt | ||
pkg_libfixmath | ||
pkg_libfixmath_unittests | ||
pkg_libhydrogen | ||
pkg_libschc | ||
pkg_littlefs | ||
pkg_littlefs2 | ||
pkg_lora-serialization | ||
pkg_lvgl | ||
pkg_lvgl_touch | ||
pkg_lz4 | ||
pkg_mbedtls | ||
pkg_micro-ecc | ||
pkg_micro-ecc-with-hwrng | ||
pkg_microcoap | ||
pkg_minmea | ||
pkg_monocypher | ||
pkg_nanocbor | ||
pkg_nanopb | ||
pkg_nanors | ||
pkg_openwsn | ||
pkg_openwsn_sock_udp | ||
pkg_qcbor | ||
pkg_qdsa | ||
pkg_qr-code-generator | ||
pkg_relic | ||
pkg_semtech-loramac | ||
pkg_spiffs | ||
pkg_tflite-micro | ||
pkg_tiny-asn1 | ||
pkg_tinycbor | ||
pkg_tinycrypt | ||
pkg_tinydtls_sock_async | ||
pkg_tinyusb_cdc_acm_stdio | ||
pkg_tinyusb_cdc_msc | ||
pkg_tinyusb_netdev | ||
pkg_tinyvcdiff | ||
pkg_tweetnacl | ||
pkg_u8g2 | ||
pkg_ubasic | ||
pkg_ucglib | ||
pkg_umorse | ||
pkg_utensor | ||
pkg_uzlib | ||
pkg_wolfcrypt-ed25519-verify | ||
pkg_wolfssl | ||
pkg_yxml | ||
posix_semaphore | ||
posix_sleep | ||
prng_sha1prng | ||
prng_sha256prng | ||
progress_bar | ||
ps_schedstatistics | ||
pthread | ||
pthread_barrier | ||
pthread_cleanup | ||
pthread_condition_variable | ||
pthread_cooperation | ||
pthread_flood | ||
pthread_rwlock | ||
pthread_tls | ||
puf_sram | ||
riotboot | ||
riotboot_flashwrite | ||
riotboot_hdr | ||
rmutex | ||
rmutex_cpp | ||
rng | ||
rust_libs | ||
rust_minimal | ||
saul | ||
saul_drivers | ||
sched_change_priority | ||
sched_testing | ||
sema | ||
senml_cbor | ||
senml_phydat | ||
senml_saul | ||
shell | ||
shell_ble | ||
shell_lock | ||
slip | ||
sntp | ||
sock_udp_aux | ||
socket_zep | ||
ssp | ||
stdin | ||
stm32_bootloader | ||
struct_tm_utility | ||
suit_manifest | ||
sys_architecture | ||
sys_arduino | ||
sys_arduino_analog | ||
sys_arduino_lib | ||
sys_atomic_utils | ||
sys_atomic_utils_unittests | ||
sys_crypto | ||
sys_crypto_aes_ccm | ||
sys_fido2_ctap | ||
sys_ptrtag | ||
sys_sched_round_robin | ||
sys_sema_inv | ||
sys_stdio_semihosting | ||
test_tools | ||
thread_basic | ||
thread_cooperation | ||
thread_exit | ||
thread_flags | ||
thread_flags_xtimer | ||
thread_float | ||
thread_flood | ||
thread_msg | ||
thread_msg_block_race | ||
thread_msg_block_w_queue | ||
thread_msg_block_wo_queue | ||
thread_msg_bus | ||
thread_msg_seq | ||
thread_priority_inversion | ||
thread_race | ||
thread_stack_alignment | ||
thread_zombie | ||
touch_dev | ||
trace | ||
trickle | ||
turo | ||
turo_txt | ||
unittests | ||
usbus | ||
usbus_board_reset | ||
usbus_cdc_acm_stdio | ||
usbus_cdc_ecm | ||
usbus_hid | ||
usbus_msc | ||
vfs_default | ||
vfs_iterate_mount | ||
vfs_plus_stdio | ||
warn_conflict | ||
xfa | ||
xtimer_drift | ||
xtimer_hang | ||
xtimer_longterm | ||
xtimer_msg | ||
xtimer_msg_receive_timeout | ||
xtimer_mutex_lock_timeout | ||
xtimer_now32_overflow | ||
xtimer_now64_continuity | ||
xtimer_now_irq | ||
xtimer_overhead | ||
xtimer_periodic_wakeup | ||
xtimer_remove | ||
xtimer_reset | ||
xtimer_rmutex_lock_timeout | ||
xtimer_usleep | ||
xtimer_usleep_short | ||
ztimer64_msg | ||
ztimer_msg | ||
ztimer_mutex_lock_timeout | ||
ztimer_ondemand_benchmark | ||
ztimer_overhead | ||
ztimer_periodic | ||
ztimer_rmutex_lock_timeout | ||
ztimer_underflow | ||
ztimer_xsec | ||
.gitignore | ||
Makefile.boards.netif | ||
Makefile.tests_common | ||
README.md | ||
riot_logo.h | ||
test_print_stack_usage.config | ||
test_utils.config |
Running and creating tests
There are a number of tests included in RIOT. They are located in the tests folder. These tests allow basic functionality to be verified as well as provide an example of usage.
Running automated tests
Some tests can be performed automatically. The test automation scripts are
defined in the <test_application>/tests/
folder. They are written in python
and interact through the serial (typically UART) with the test application code running on a
board to do the validation. It is recommended to flash the board with the
test just before running it because some platforms cannot be reset while
testing.
Running single test
From the test application directory run:
BOARD=<board_of_your_choice> make flash test
An automated way of knowing if a test is available is to execute the 'test/available' target from the test application directory. It executes without error if tests run by 'make test' are present.
make test/available
Running all test for particular board
If you would like execute all tests for given board, you could use dedicated
script compile_and_test_for_board.py
Go to main RIOT directory and execute command:
./dist/tools/compile_and_test_for_board/compile_and_test_for_board.py . <board_of_your_choice> --with-test-only --jobs=4
More details concerning other available parameters provided by this tool can be found in README.md file and directly in compile_and_test_for_board.py script.
Running tests that require a preliminary manual configuration
Some tests need active monitoring or manual setup steps but still have some
automated scripts. The test automation scripts are defined in the
<test_application>/tests-with-config/
folder.
For running them, follow the setup or analysis documentation and use the
test-with-config
target.
Running tests that require root privileges
Some tests require root privileges to launch their automated script. In this
case, the test automation scripts are defined in the
<test_application>/tests-as-root/
folder.
For running them, follow the setup or analysis documentation and use the
test-as-root
target.
Cleaning intermediate files
After test execution intermediate files are not automatically deleted. Execution of multiple tests, especially all for particular board could generate many files. For example, after execution of all test for stm32f469i-disco board (more than 230 tests) around 7.5 GB of intermediate files are created.
There are few methods for cleaning intermediate files.
If you would like to clean intermediate file only for particular board you should go to main RIOT directory and execute one from these commands:
./dist/tools/compile_and_test_for_board/compile_and_test_for_board.py . <board_of_your_choice> --compile-targets clean
or
make BOARD=<board_of_your_choice> clean
If you would like to clean intermediate files for all boards go to main RIOT directory and use this command.
@warning This command cleans all local files, for example, pkg downloads and locally generared docs.
make distclean
Implementing automated tests
The goal is to be able to run all tests in a sequential way for as many targets as possible.
As some board can't be reset without a manual trigger tests should be implemented
with some kind of synchronization
. This can be done in two ways:
- use
test_utils_interactive_sync
when uart input/output does not need to be disabled for the test. This is enabled by default. - set up the test in a loop so the test script will be able so sync with some kind of start condition in the test.
The module for the first option is test_utils_interactive_sync
and is set as a
default module in Makefile.tests_common
. It can be disabled by setting in the
application makefile DISABLE_MODULE += test_utils_interactive_sync
. The python
test script will adapt to it automatically.
When using the shell
module, test_utils_interactive_sync
will use the shell
itself to synchronize, and will not use test_utils_interactive_sync();
function
to synchronize. Some times you will want to synchronize before the start of the
script and use test_utils_interactive_sync();
function (e.g.:
tests/ps_schedstatistics). For these cases
you can disable test_utils_interactive_sync_shell
module in the application
Makefile
: DISABLE_MODULE += test_utils_interactive_sync_shell
.
Automated Tests Guidelines
When using pexpect
$
is useless for matching the end of a line, instead use
\r\n
(pexpect end-of-line).
Beware of +
and *
at the end of patterns. These patterns will always get
a minimal match (non-greedy).(pexpect end-of-patterns)
This can be an issue when matching groups and using the matched groups to verify
some kind of behavior since *
could return an empty match and +
only a subset.
This is especially prevalent since printf()
is buffered so the output might not
arrive in a single read to pexpect
.
To avoid this make sure to match a non-ambiguous character at the end of the
pattern like \r\n
, \s
, \)
, etc..
don't:
child.expect(r'some string: (\d+)')
do:
child.expect(r'some string: (\d+)\r\n')
child.expect(r'some string: (\d+)\s')
child.expect(r'some string: (\d+) ,')
Use expect() instead of assert()
In order to make a test application functional in all cases, use expect()
instead of assert()
. The former works like the latter, but will still be
compiled in if NDEBUG
is defined. This is useful to keep a test application
working even when compiling with -DNDEBUG, allowing for the code-under-test to
be compiled with that flag. Otherwise, the application would force compiling
all tested code with assertions enabled.
expect()
is defined in the header test_utils/expect.h
.
Interaction through the uart
Tests implemented with testrunner
use the cleanterm
target that
provides an interaction without adding extra text output or input handling.
It can currently be expected to have unmodified line based interaction with the
board.
The expected behavior is verified with the test in tests/test_tools
.
Tests cannot rely on having on all boards and terminal programs:
- unbuffered input
- allowing sending special characters like
ctrl+c/ctrl+d