Select one of the symbols to view example projects that use it.
 
Outline
#define _PICO_STDIO_UART_H
#include "pico/stdio.h"
#include "hardware/uart.h"
#define PICO_STDIO_UART_DEFAULT_CRLF
#define PICO_STDIO_UART_SUPPORT_CHARS_AVAILABLE_CALLBACK
stdio_uart;
stdio_uart_init();
stdout_uart_init();
stdin_uart_init();
stdio_uart_init_full(struct uart_inst *, uint, int, int);
stdio_uart_deinit();
stdout_uart_deinit();
stdin_uart_deinit();
stdio_uart_deinit_full(struct uart_inst *, int, int);
Files
loading...
SourceVuRaspberry Pi Pico SDK and ExamplesPicoSDKsrc/rp2_common/pico_stdio_uart/include/pico/stdio_uart.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * Copyright (c) 2020 Raspberry Pi (Trading) Ltd. * * SPDX-License-Identifier: BSD-3-Clause *//* ... */ #ifndef _PICO_STDIO_UART_H #define _PICO_STDIO_UART_H #include "pico/stdio.h" #include "hardware/uart.h" /** \brief Support for stdin/stdout using UART * \defgroup pico_stdio_uart pico_stdio_uart * \ingroup pico_stdio * * Linking this library or calling `pico_enable_stdio_uart(TARGET ENABLED)` in the CMake (which * achieves the same thing) will add UART to the drivers used for standard input/output *//* ... */ // PICO_CONFIG: PICO_STDIO_UART_DEFAULT_CRLF, Default state of CR/LF translation for UART output, type=bool, default=PICO_STDIO_DEFAULT_CRLF, group=pico_stdio_uart #ifndef PICO_STDIO_UART_DEFAULT_CRLF #define PICO_STDIO_UART_DEFAULT_CRLF PICO_STDIO_DEFAULT_CRLF #endif // PICO_CONFIG: PICO_STDIO_UART_SUPPORT_CHARS_AVAILABLE_CALLBACK, Enable UART STDIO support for stdio_set_chars_available_callback. Can be disabled to make use of the uart elsewhere, type=bool, default=1, group=pico_stdio_uart #ifndef PICO_STDIO_UART_SUPPORT_CHARS_AVAILABLE_CALLBACK #define PICO_STDIO_UART_SUPPORT_CHARS_AVAILABLE_CALLBACK 1 #endif #ifdef __cplusplus extern "C" { #endif extern stdio_driver_t stdio_uart; /*! \brief Explicitly initialize stdin/stdout over UART and add it to the current set of stdin/stdout drivers * \ingroup pico_stdio_uart * * This method sets up PICO_DEFAULT_UART_TX_PIN for UART output (if defined), PICO_DEFAULT_UART_RX_PIN for input (if defined) * and configures the baud rate as PICO_DEFAULT_UART_BAUD_RATE. * * \note this method is automatically called by \ref stdio_init_all() if `pico_stdio_uart` is included in the build *//* ... */ void stdio_uart_init(void); /*! \brief Explicitly initialize stdout only (no stdin) over UART and add it to the current set of stdout drivers * \ingroup pico_stdio_uart * * This method sets up PICO_DEFAULT_UART_TX_PIN for UART output (if defined) , and configures the baud rate as PICO_DEFAULT_UART_BAUD_RATE *//* ... */ void stdout_uart_init(void); /*! \brief Explicitly initialize stdin only (no stdout) over UART and add it to the current set of stdin drivers * \ingroup pico_stdio_uart * * This method sets up PICO_DEFAULT_UART_RX_PIN for UART input (if defined) , and configures the baud rate as PICO_DEFAULT_UART_BAUD_RATE *//* ... */ void stdin_uart_init(void); /*! \brief Perform custom initialization initialize stdin/stdout over UART and add it to the current set of stdin/stdout drivers * \ingroup pico_stdio_uart * * \param uart the uart instance to use, \ref uart0 or \ref uart1 * \param baud_rate the baud rate in Hz * \param tx_pin the UART pin to use for stdout (or -1 for no stdout) * \param rx_pin the UART pin to use for stdin (or -1 for no stdin) *//* ... */ void stdio_uart_init_full(uart_inst_t *uart, uint baud_rate, int tx_pin, int rx_pin); /*! \brief Explicitly deinitialize stdin/stdout over UART and remove it from the current set of stdin/stdout drivers * \ingroup pico_stdio_uart * * This method disables PICO_DEFAULT_UART_TX_PIN for UART output (if defined), PICO_DEFAULT_UART_RX_PIN for input (if defined) * and leaves the pads isolated. * * \note this method is automatically called by \ref stdio_deinit_all() if `pico_stdio_uart` is included in the build *//* ... */ void stdio_uart_deinit(void); /*! \brief Explicitly deinitialize stdout only (no stdin) over UART and remove it from the current set of stdout drivers * \ingroup pico_stdio_uart * * This method disables PICO_DEFAULT_UART_TX_PIN for UART output (if defined), and leaves the pad isolated *//* ... */ void stdout_uart_deinit(void); /*! \brief Explicitly deinitialize stdin only (no stdout) over UART and remove it from the current set of stdin drivers * \ingroup pico_stdio_uart * * This method disables PICO_DEFAULT_UART_RX_PIN for UART input (if defined), and leaves the pads isolated *//* ... */ void stdin_uart_deinit(void); /*! \brief Perform custom deinitialization deinitialize stdin/stdout over UART and remove it from the current set of stdin/stdout drivers * \ingroup pico_stdio_uart * * \param uart the uart instance to use, \ref uart0 or \ref uart1 * \param tx_pin the UART pin to use for stdout (or -1 for no stdout) * \param rx_pin the UART pin to use for stdin (or -1 for no stdin) *//* ... */ void stdio_uart_deinit_full(uart_inst_t *uart, int tx_pin, int rx_pin); #ifdef __cplusplus }extern "C" { ... } #endif /* ... */ #endif
Details