From 0ef07e5215c1750919208b45d6e28e7de5d6fb61 Mon Sep 17 00:00:00 2001 From: Radoslav Gerganov Date: Thu, 24 Nov 2022 17:05:00 +0200 Subject: [PATCH] Fix the description of stdio_flush() (#1095) Closes #1094 --- src/rp2_common/pico_stdio/include/pico/stdio.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/rp2_common/pico_stdio/include/pico/stdio.h b/src/rp2_common/pico_stdio/include/pico/stdio.h index 87c245a..ebae386 100644 --- a/src/rp2_common/pico_stdio/include/pico/stdio.h +++ b/src/rp2_common/pico_stdio/include/pico/stdio.h @@ -57,13 +57,8 @@ typedef struct stdio_driver stdio_driver_t; */ bool stdio_init_all(void); -/*! \brief Initialize all of the present standard stdio types that are linked into the binary. +/*! \brief Flushes any buffered output. * \ingroup pico_stdio - * - * Call this method once you have set up your clocks to enable the stdio support for UART, USB - * and semihosting based on the presence of the respective libraries in the binary. - * - * \see stdio_uart, stdio_usb, stdio_semihosting */ void stdio_flush(void);