demo of driving MAX2719 dot matrix displays with STM32F103 Bluepill
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.
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "com_iface.h"
|
|
|
|
|
|
|
|
/** Debug USART iface */
|
|
|
|
extern ComIface *debug_iface;
|
|
|
|
|
|
|
|
/** ESP8266 com iface */
|
|
|
|
extern ComIface *data_iface;
|
|
|
|
|
|
|
|
/** Gamepad iface */
|
|
|
|
extern ComIface *gamepad_iface;
|
|
|
|
|
|
|
|
|
|
|
|
/** File descriptors for use with built-in "files" */
|
|
|
|
enum {
|
|
|
|
FD_STDIN = 0,
|
|
|
|
FD_STDOUT = 1,
|
|
|
|
FD_STDERR = 2,
|
|
|
|
FD_DLNK = 3,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define FNAME_DLNK "dlnk"
|