blob: 5e49def5de902f4bde4b4797875e1fe8812c5d31 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef LOG_H_
#define LOG_H_
/*
* Defines logging capabilities. This logging unit will enable logging on
* the systems main USART output.
*/
/** Similar to fprintf, but with a stripped-down format-string DSL. */
void klogf(const char* fmt, ...);
#endif
|