Loggy_McLogger/Core/Inc/console.h

25 lines
419 B
C
Raw Normal View History

2024-07-15 20:31:48 -05:00
/**
*********************************************************************
*
* @file console.h
* @brief
*
* @date 2024-04-14 19:12:40
* @author CT
*
* @details
*
*************************************************************************
**/
#ifndef _CONSOLE_H_
#define _CONSOLE_H_
#include "cir_buf.h"
void console_init(void);
void console_service(void);
int console_push(uint8_t data);
#endif // _CONOSLE_H_