You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
233 B
16 lines
233 B
/*
|
|
* debug.h
|
|
*
|
|
* Created on: 2019-5-29
|
|
* Author: Administrator
|
|
*/
|
|
|
|
#ifndef DEBUG_H_
|
|
#define DEBUG_H_
|
|
#include "vconsole.h"
|
|
|
|
void debug_init(vconsole_t cs);
|
|
|
|
void debug_update_console(vconsole_t cs);
|
|
|
|
#endif /* DEBUG_H_ */
|
|
|