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.
20 lines
320 B
20 lines
320 B
#pragma once
|
|
|
|
#include "com_iface.h"
|
|
|
|
/** Debug USART iface */
|
|
extern ComIface *debug_iface;
|
|
|
|
/** ESP8266 com iface */
|
|
extern ComIface *data_iface;
|
|
|
|
/** Do-nothing iface */
|
|
extern ComIface *com_iface_noop;
|
|
|
|
|
|
/** File descriptors for use with built-in "files" */
|
|
enum {
|
|
FD_STDIN = 0,
|
|
FD_STDOUT = 1,
|
|
FD_STDERR = 2,
|
|
};
|
|
|