forked from ARM-software/CMSIS-View
-
Notifications
You must be signed in to change notification settings - Fork 0
/
retarget_stdio.c
125 lines (96 loc) · 2.79 KB
/
retarget_stdio.c
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
/*
* Copyright (c) 2023 Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the License); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Name: retarget_stdio.c
* Purpose: Retarget STDIO to USART0
*
*/
#include "Driver_USART.h"
extern int stdio_init (void);
extern int stderr_putchar (int ch);
extern int stdout_putchar (int ch);
extern int stdin_getchar (void);
#define USART_DRV_NUM 0
#define USART_BAUDRATE 115200
#define _USART_Driver_(n) Driver_USART##n
#define USART_Driver_(n) _USART_Driver_(n)
extern ARM_DRIVER_USART USART_Driver_(USART_DRV_NUM);
#define ptrUSART (&USART_Driver_(USART_DRV_NUM))
/**
Initialize stdio
\return 0 on success, or -1 on error.
*/
int stdio_init (void) {
if (ptrUSART->Initialize(NULL) != ARM_DRIVER_OK) {
return -1;
}
if (ptrUSART->PowerControl(ARM_POWER_FULL) != ARM_DRIVER_OK) {
return -1;
}
if (ptrUSART->Control(ARM_USART_MODE_ASYNCHRONOUS |
ARM_USART_DATA_BITS_8 |
ARM_USART_PARITY_NONE |
ARM_USART_STOP_BITS_1 |
ARM_USART_FLOW_CONTROL_NONE,
USART_BAUDRATE) != ARM_DRIVER_OK) {
return -1;
}
if (ptrUSART->Control(ARM_USART_CONTROL_RX, 1U) != ARM_DRIVER_OK) {
return -1;
}
return 0;
}
/**
Put a character to the stderr
\param[in] ch Character to output
\return The character written, or -1 on error.
*/
int stderr_putchar (int ch) {
uint8_t buf[1];
buf[0] = (uint8_t)ch;
if (ptrUSART->Send(buf, 1U) != ARM_DRIVER_OK) {
return -1;
}
while (ptrUSART->GetTxCount() != 1U);
return ch;
}
/**
Put a character to the stdout
\param[in] ch Character to output
\return The character written, or -1 on write error.
*/
int stdout_putchar (int ch) {
uint8_t buf[1];
buf[0] = (uint8_t)ch;
if (ptrUSART->Send(buf, 1U) != ARM_DRIVER_OK) {
return -1;
}
while (ptrUSART->GetTxCount() != 1U);
return ch;
}
/**
Get a character from the stdio
\return The next character from the input, or -1 on error.
*/
int stdin_getchar (void) {
uint8_t buf[1];
if (ptrUSART->Receive(buf, 1U) != ARM_DRIVER_OK) {
return -1;
}
while (ptrUSART->GetRxCount() != 1U);
return (int)buf[0];
}