blob: f600e2fe81257cc501e1dbd7ef1e80380f7b47e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright 2022 Birte Kristina Friesel
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "driver/stdout.h"
void StandardOutput::setup()
{
}
void StandardOutput::put(char c)
{
}
StandardOutput kout;
|