mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-20 19:36:19 +08:00
remove unused sim_uart
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
#include "sim_uart.h"
|
||||
|
||||
FILE *pipe_stream;
|
||||
@@ -1,14 +0,0 @@
|
||||
/** \file sim_uart.h
|
||||
* \brief Simulation of uart transmission on an Unix pipe
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
extern FILE *pipe_stream;
|
||||
|
||||
#define SimUartCheckFreeSpace(_) TRUE
|
||||
|
||||
#define SimUartTransmit(_x) fputc(_x, pipe_stream)
|
||||
#define SimUartPrintString(_s) fputs(_s, pipe_stream)
|
||||
#define SimUartSendMessage() fflush(pipe_stream);
|
||||
#define SimUartPrintHex16(c) _PrintHex16(SimUartTransmit, c)
|
||||
Reference in New Issue
Block a user