From e88b64d68b58f99ef5a79c8f083f120101d854b2 Mon Sep 17 00:00:00 2001 From: AnnsAnn Date: Wed, 17 Sep 2025 17:54:41 +0200 Subject: [PATCH] sys/arduino: update guide references Co-authored-by: crasbe --- sys/arduino/doc.txt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/sys/arduino/doc.txt b/sys/arduino/doc.txt index 71ed93ef76..501e6e46f7 100644 --- a/sys/arduino/doc.txt +++ b/sys/arduino/doc.txt @@ -93,10 +93,14 @@ * the standard C++ lib (feature `libstdcpp`) is not required. * * As a minimum requirement, the features `arduino_pins` is a hard dependency. - * See @ref iomaps-mapping-gpio what a board needs to provide this. + * See [Digital Pins](https://guide.riot-os.org/misc/io_mapping_and_shields/#digital-pins + * what a board needs to provide this. * - * Additional mappings for analog pins (see @ref iomaps-mapping-adc) and PWM - * pins (see @ref iomaps-mapping-pwm) is required to be able to use + * Additional mappings for analog pins + * (see [Analog Pins](https://guide.riot-os.org/misc/io_mapping_and_shields/#analog-pins)) + * and PWM pins + * (see [PWM Pins](https://guide.riot-os.org/misc/io_mapping_and_shields/#pwm-pins)) + * is required to be able to use * `analogRead()` and `analogWrite()`. * * See also @ref iomaps on how a board can provide more I/O mappings and even