Select one of the symbols to view example projects that use it.
 
Outline
#define _PICO_STDIO_H
#include "pico.h"
#define PICO_STDOUT_MUTEX
#define PICO_STDIO_ENABLE_CRLF_SUPPORT
#define PICO_STDIO_DEFAULT_CRLF
#define PICO_STDIO_STACK_BUFFER_SIZE
#define PICO_STDIO_DEADLOCK_TIMEOUT_MS
#define PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS
#include <stdarg.h>
stdio_driver
stdio_init_all();
stdio_deinit_all();
stdio_flush();
stdio_getchar_timeout_us(uint32_t);
getchar_timeout_us(uint32_t)
stdio_set_driver_enabled(stdio_driver_t *, bool);
stdio_filter_driver(stdio_driver_t *);
stdio_set_translate_crlf(stdio_driver_t *, bool);
stdio_putchar_raw(int);
putchar_raw(int)
stdio_puts_raw(const char *);
puts_raw(const char *)
stdio_set_chars_available_callback(void (*)(void *), void *);
stdio_get_until(char *, int, absolute_time_t);
stdio_put_string(const char *, int, bool, bool);
stdio_getchar();
stdio_putchar(int);
stdio_puts(const char *);
stdio_vprintf(const char *, va_list);
stdio_printf(const char *, ...);
Files
loading...
SourceVuRaspberry Pi Pico SDK and ExamplesPicoSDKsrc/rp2_common/pico_stdio/include/pico/stdio.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * Copyright (c) 2020 Raspberry Pi (Trading) Ltd. * * SPDX-License-Identifier: BSD-3-Clause *//* ... */ #ifndef _PICO_STDIO_H #define _PICO_STDIO_H /** \file stdio.h * \defgroup pico_stdio pico_stdio * \brief Customized stdio support allowing for input and output from UART, USB, semi-hosting etc * * Note the API for adding additional input output devices is not yet considered stable *//* ... */ #include "pico.h" // PICO_CONFIG: PICO_STDOUT_MUTEX, Enable/disable mutex around stdout, type=bool, default=1, group=pico_stdio #ifndef PICO_STDOUT_MUTEX #define PICO_STDOUT_MUTEX 1 #endif // PICO_CONFIG: PICO_STDIO_ENABLE_CRLF_SUPPORT, Enable/disable CR/LF output conversion support, type=bool, default=1, group=pico_stdio #ifndef PICO_STDIO_ENABLE_CRLF_SUPPORT #define PICO_STDIO_ENABLE_CRLF_SUPPORT 1 #endif // PICO_CONFIG: PICO_STDIO_DEFAULT_CRLF, Default for CR/LF conversion enabled on all stdio outputs, type=bool, default=1, depends=PICO_STDIO_ENABLE_CRLF_SUPPORT, group=pico_stdio #ifndef PICO_STDIO_DEFAULT_CRLF #define PICO_STDIO_DEFAULT_CRLF 1 #endif // PICO_CONFIG: PICO_STDIO_STACK_BUFFER_SIZE, Define printf buffer size (on stack)... this is just a working buffer not a max output size, min=0, max=512, default=128, group=pico_stdio #ifndef PICO_STDIO_STACK_BUFFER_SIZE #define PICO_STDIO_STACK_BUFFER_SIZE 128 #endif // PICO_CONFIG: PICO_STDIO_DEADLOCK_TIMEOUT_MS, Time after which to assume stdio_usb is deadlocked by use in IRQ and give up, type=int, default=1000, group=pico_stdio #ifndef PICO_STDIO_DEADLOCK_TIMEOUT_MS #define PICO_STDIO_DEADLOCK_TIMEOUT_MS 1000 #endif // PICO_CONFIG: PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS, Directly replace common stdio functions such as putchar from the C-library to avoid pulling in lots of c library code for simple output, type=bool, default=1, advanced=true, group=pico_stdio #ifndef PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS #define PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS 1 #endif #ifdef __cplusplus extern "C" { #endif #include <stdarg.h> typedef struct stdio_driver stdio_driver_t; /*! \brief Initialize all of the present standard stdio types that are linked into the binary. * \ingroup pico_stdio * * Call this method once you have set up your clocks to enable the stdio support for UART, USB, * semihosting, and RTT based on the presence of the respective libraries in the binary. * * When stdio_usb is configured, this method can be optionally made to block, waiting for a connection * via the variables specified in \ref stdio_usb_init (i.e. \ref PICO_STDIO_USB_CONNECT_WAIT_TIMEOUT_MS) * * \return true if at least one output was successfully initialized, false otherwise. * \see stdio_uart, stdio_usb, stdio_semihosting, stdio_rtt *//* ... */ bool stdio_init_all(void); /*! \brief Deinitialize all of the present standard stdio types that are linked into the binary. * \ingroup pico_stdio * * This method currently only supports stdio_uart and stdio_semihosting * * \return true if all outputs was successfully deinitialized, false otherwise. * \see stdio_uart, stdio_usb, stdio_semihosting, stdio_rtt *//* ... */ bool stdio_deinit_all(void); /*! \brief Flushes any buffered output. * \ingroup pico_stdio *//* ... */ void stdio_flush(void); /*! \brief Return a character from stdin if there is one available within a timeout * \ingroup pico_stdio * * \param timeout_us the timeout in microseconds, or 0 to not wait for a character if none available. * \return the character from 0-255 or PICO_ERROR_TIMEOUT if timeout occurs *//* ... */ int stdio_getchar_timeout_us(uint32_t timeout_us); /*! \brief Alias for \ref stdio_getchar_timeout_us for backwards compatibility * \ingroup pico_stdio *//* ... */ static inline int getchar_timeout_us(uint32_t timeout_us) { return stdio_getchar_timeout_us(timeout_us); }{ ... } /*! \brief Adds or removes a driver from the list of active drivers used for input/output * \ingroup pico_stdio * * \note this method should always be called on an initialized driver and is not re-entrant * \param driver the driver * \param enabled true to add, false to remove *//* ... */ void stdio_set_driver_enabled(stdio_driver_t *driver, bool enabled); /*! \brief Control limiting of output to a single driver * \ingroup pico_stdio * * \note this method should always be called on an initialized driver * * \param driver if non-null then output only that driver will be used for input/output (assuming it is in the list of enabled drivers). * if NULL then all enabled drivers will be used *//* ... */ void stdio_filter_driver(stdio_driver_t *driver); /*! \brief control conversion of line feeds to carriage return on transmissions * \ingroup pico_stdio * * \note this method should always be called on an initialized driver * * \param driver the driver * \param translate If true, convert line feeds to carriage return on transmissions *//* ... */ void stdio_set_translate_crlf(stdio_driver_t *driver, bool translate); /*! \brief putchar variant that skips any CR/LF conversion if enabled * \ingroup pico_stdio *//* ... */ int stdio_putchar_raw(int c); /*! \brief Alias for \ref stdio_putchar_raw for backwards compatibility * \ingroup pico_stdio *//* ... */ static inline int putchar_raw(int c) { return stdio_putchar_raw(c); }{ ... } /*! \brief puts variant that skips any CR/LF conversion if enabled * \ingroup pico_stdio *//* ... */ int stdio_puts_raw(const char *s); /*! \brief Alias for \ref stdio_puts_raw for backwards compatibility * \ingroup pico_stdio *//* ... */ static inline int puts_raw(const char *s) { return stdio_puts_raw(s); }{ ... } /*! \brief get notified when there are input characters available * \ingroup pico_stdio * * \param fn Callback function to be called when characters are available. Pass NULL to cancel any existing callback * \param param Pointer to pass to the callback *//* ... */ void stdio_set_chars_available_callback(void (*fn)(void*), void *param); /*! \brief Waits until a timeout to reard at least one character into a buffer * \ingroup pico_stdio * * This method returns as soon as input is available, but more characters may * be returned up to the end of the buffer. * * \param buf the buffer to read into * \param len the length of the buffer * \return the number of characters read or PICO_ERROR_TIMEOUT * \param until the time after which to return PICO_ERROR_TIMEOUT if no characters are available *//* ... */ int stdio_get_until(char *buf, int len, absolute_time_t until); /*! \brief Prints a buffer to stdout with optional newline and carriage return insertion * \ingroup pico_stdio * * This method returns as soon as input is available, but more characters may * be returned up to the end of the buffer. * * \param s the characters to print * \param len the length of s * \param newline true if a newline should be added after the string * \param cr_translation true if line feed to carriage return translation should be performed * \return the number of characters written *//* ... */ int stdio_put_string(const char *s, int len, bool newline, bool cr_translation); /*! \brief stdio_getchar Alias for \ref getchar that definitely does not go thru the implementation * in the standard C library even when \ref PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS == 0 * * \ingroup pico_stdio *//* ... */ int stdio_getchar(void); /*! \brief stdio_getchar Alias for \ref putchar that definitely does not go thru the implementation * in the standard C library even when \ref PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS == 0 * * \ingroup pico_stdio *//* ... */ int stdio_putchar(int); /*! \brief stdio_getchar Alias for \ref puts that definitely does not go thru the implementation * in the standard C library even when \ref PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS == 0 * * \ingroup pico_stdio *//* ... */ int stdio_puts(const char *s); /*! \brief stdio_getchar Alias for \ref vprintf that definitely does not go thru the implementation * in the standard C library even when \ref PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS == 0 * * \ingroup pico_stdio *//* ... */ int stdio_vprintf(const char *format, va_list va); /*! \brief stdio_getchar Alias for \ref printf that definitely does not go thru the implementation * in the standard C library even when \ref PICO_STDIO_SHORT_CIRCUIT_CLIB_FUNCS == 0 * * \ingroup pico_stdio *//* ... */ int __printflike(1, 0) stdio_printf(const char* format, ...); #ifdef __cplusplus }extern "C" { ... } #endif /* ... */ #endif
Details