1
6
7
8
9
10
11
12
13
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
45
46
47
52
53
54
59
60
61
69
70
71
79
80
81
86
87
88
93
94
95
102
103
104
105
106
107
108
/* ... */
#ifndef _PICO_STDIO_UART_H
#define _PICO_STDIO_UART_H
#include "pico/stdio.h"
#include "hardware/uart.h"
/* ... */
#ifndef PICO_STDIO_UART_DEFAULT_CRLF
#define PICO_STDIO_UART_DEFAULT_CRLF PICO_STDIO_DEFAULT_CRLF
#endif
#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;
/* ... */
void stdio_uart_init(void);
/* ... */
void stdout_uart_init(void);
/* ... */
void stdin_uart_init(void);
/* ... */
void stdio_uart_init_full(uart_inst_t *uart, uint baud_rate, int tx_pin, int rx_pin);
/* ... */
void stdio_uart_deinit(void);
/* ... */
void stdout_uart_deinit(void);
/* ... */
void stdin_uart_deinit(void);
/* ... */
void stdio_uart_deinit_full(uart_inst_t *uart, int tx_pin, int rx_pin);
#ifdef __cplusplus
}extern "C" { ... }
#endif
/* ... */
#endif