1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 10:12:45 +01:00

cpu/sam0_common/periph_gpio_ll: fix doc

Fix some copy-paste bugs in the doc.
This commit is contained in:
Marian Buschsieweke 2024-01-23 15:51:36 +01:00
parent 0a06b0c1d8
commit 807fcd7614
No known key found for this signature in database
GPG Key ID: 77AA882EC78084E6
2 changed files with 3 additions and 3 deletions

View File

@ -214,14 +214,14 @@ union gpio_conf_sam0 {
* @warning If the requested drive strength is not available, the
* closest fit supported will be configured instead.
*
* This value is ignored when @ref gpio_conf_nrf5x::state is configured
* This value is ignored when @ref gpio_conf_sam0::state is configured
* to @ref GPIO_INPUT or @ref GPIO_DISCONNECT.
*/
gpio_drive_strength_t drive_strength : 1;
/**
* @brief Initial value of the output
*
* Ignored if @ref gpio_conf_nrf5x::state is set to @ref GPIO_INPUT or
* Ignored if @ref gpio_conf_sam0::state is set to @ref GPIO_INPUT or
* @ref GPIO_DISCONNECT. If the pin was previously in a high impedance
* state, it is guaranteed to directly transition to the given initial
* value.

View File

@ -7,7 +7,7 @@
*/
/**
* @ingroup cpu_stm32
* @ingroup cpu_sam0_common
* @ingroup drivers_periph_gpio
* @{
*