blob: 2d65a76a9bbce37bc3fca060a8417ca439318c43 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// MIT License, Copyright (c) 2021 Marvin Borner
#ifndef LOG_H
#define LOG_H
void serial_install(void);
void serial_print(const char *data);
void log(const char *format, ...);
#endif
|