#include <stdlib.h>
#include <common/xmlt.h>
Include dependency graph for backend.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
void * | backend_create_handle (xml_node *config, const char *name) |
Create a backend handle. | |
int | backend_send (void *handle, const char *data, size_t len) |
Send some data over the backend. | |
void | backend_free_handle (void *handle) |
Close backend handle and free the memory. |
This header file defines a uniform API for sending data over serial, parallel, USB, and I2C ports, as well as a curses window for those who want to test FreeLCD without an LCD.
Definition in file backend.h.
|
Create a backend handle. The XML configuration data is the part of the central config file enclosed within <backend> tags.
|
|
Close backend handle and free the memory.
|
|
Send some data over the backend.
|