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
|
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include "ch573/gpio.h"
#include "ch573/pwr.h"
#include "ch573/uart.h"
#include "isr_vector.h"
#include "panic.h"
#define GPIO_PORT_A ch573_gpio__gpio_port_a
#define GPIO_PORT CH573_GPIO__GPIO_PORT_T_INTF
#define UART1 ch573_uart__uart1
#define UART CH573_UART__UART_T_INTF
#define PWR1 ch573_pwr__pwr_mgmt
#define PWR CH573_PWR__PWR_MGMT_T_INTF
void stack_dump(uint32_t*);
void print_hex(uint32_t x);
int uart1_FILE_put(char ch, FILE* f)
{
if (ch == '\n') {
uart1_FILE_put('\r', f);
}
while (!UART.lsr.thr_empty.get(UART1));
UART.thr.set(UART1, ch);
return 1;
}
static int uart1_FILE_get(FILE* f)
{
return -1;
}
static int uart1_FILE_flush(FILE* f)
{
return 0;
}
FILE _uart1_FILE = (FILE){
.put = uart1_FILE_put,
.get = uart1_FILE_get,
.flush = uart1_FILE_flush,
.flags = __SWR,
};
FILE* const stdout = &_uart1_FILE;
// FILE* const stdout = &_uart1_FILE;
/*
* Function which delays for a bit.
*/
void delay(void);
int main(void);
uint32_t collatz(uint32_t n)
{
uint32_t c = 0;
while (n > 1) {
if (n % 2 == 0) {
n /= 2;
} else {
n = n * 3 + 1;
}
c++;
}
return c;
}
void blink_n(int n)
{
uint32_t bit = 1 << 8;
while (n > 0) {
GPIO_PORT.out.set(GPIO_PORT_A, OFF, 8);
delay();
GPIO_PORT.out.set(GPIO_PORT_A, ON, 8);
delay();
--n;
}
}
void delay(void)
{
for (volatile uint32_t i = 0; i < 10000; ++i) {
asm volatile("");
}
}
volatile uint32_t deadbeef = 0xdeadbeef;
#define gpio_usart1_tx_pin 9
#define gpio_usart1_rx_pin 8
const char* hello_world_static = "Hello, World!\r\n";
#define BAUD_RATE 115200
int test(char ch, ...);
/* Main routine. This is called on_reset once everything else has been set up.
*/
int main(void)
{
GPIO_PORT.dir.set(GPIO_PORT_A, DIR_OUT, gpio_usart1_tx_pin);
GPIO_PORT.pd_drv.set(GPIO_PORT_A, 0, gpio_usart1_tx_pin);
GPIO_PORT.dir.set(GPIO_PORT_A, DIR_OUT, 8);
GPIO_PORT.pd_drv.set(GPIO_PORT_A, 0, 8);
UART.div.set(UART1, 1);
UART.fcr.set(UART1, 0x07);
UART.ier.txd_en.set(UART1, ON);
UART.lcr.word_sz.set(UART1, WORD_SZ_8_BITS);
volatile uint32_t dl = (10 * 6400000 / 8 / BAUD_RATE + 5) / 10;
UART.dl.set(UART1, dl);
char buf[32] = { 0 };
volatile uint32_t i = 0xdeadbeef;
panic(0xdeadbeef);
stack_dump(&i);
print_hex(i);
stdout->put('a', NULL);
stdout->put('\n', NULL);
fputs("bulitin fputs\n", stdout);
puts("bulitin puts\n");
while (1) {
fprintf(stdout, "Hello! %% %s\n", "Josh");
fputs(buf, &_uart1_FILE);
delay();
}
// printf("Hello: %s\n", hello_world_static);
// printf("Here's deadbeef: %08x\n", deadbeef);
for (;;);
return 0;
}
IRQ(systick)
{
collatz(5);
}
#define putch(c) uart1_FILE_put(c, NULL)
void print_binary(uint32_t x)
{
int i = 0;
while (i < 32) {
int msb = (x & 0x80000000) >> 31;
x <<= 1;
if (msb) {
uart1_FILE_put('1', NULL);
} else {
uart1_FILE_put('0', NULL);
}
i++;
}
}
void print_hex(uint32_t x)
{
int i = 0;
while (i < 8) {
int ms = (x & 0xf0000000) >> 28;
x <<= 4;
if (ms < 10) {
putch('0' + ms);
} else {
putch('a' + (ms - 10));
}
++i;
}
}
|