blob: e4a7782f0fe64ab2faf0a9aca8c0f9769f92d3b9 (
plain)
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
|
/*
* Copyright 2020 Daniel Friesel
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "arch.h"
#include "driver/gpio.h"
#include "driver/stdout.h"
#include "driver/uptime.h"
void loop(void)
{
kout << "Loop" << endl;
gpio.led_toggle(0);
#ifdef TIMER_S
kout << dec << uptime.get_s() << endl;
#endif
}
int main(void)
{
arch.setup();
gpio.setup();
kout.setup();
/*
* There may be some delay between program start and UART capture start.
*/
for (uint8_t i = 0; i < 255; i++) {
kout << "Hello, World!" << endl;
}
arch.idle_loop();
return 0;
}
|