ESPTerm - ESP8266 terminal emulator. Branches: [master] patches, [work] next release
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.
|
|
|
#ifndef ANSI_PARSER_CALLBACKS_H
|
|
|
|
#define ANSI_PARSER_CALLBACKS_H
|
|
|
|
|
|
|
|
#include "apars_csi.h"
|
|
|
|
#include "apars_dcs.h"
|
|
|
|
#include "apars_osc.h"
|
|
|
|
#include "apars_string.h"
|
|
|
|
#include "apars_short.h"
|
|
|
|
#include "apars_utf8.h"
|
|
|
|
|
|
|
|
void apars_respond(const char *str);
|
|
|
|
|
|
|
|
void apars_handle_bel(void);
|
|
|
|
void apars_handle_enq(void);
|
|
|
|
void apars_handle_tab(void);
|
|
|
|
|
|
|
|
extern void apars_show_context(void);
|
|
|
|
|
|
|
|
#endif //ESP_VT100_FIRMWARE_ANSI_PARSER_CALLBACKS_H
|