This repository has been archived on 2020-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
arduino_universal_serial_ad.../Universal_Serial_Adapter/Project.h

92 lines
2.1 KiB
C
Raw Normal View History

2013-03-10 19:06:30 +00:00
/*
Serial Adapter Project: Dynamic serial TTY passthroughs
by: Mike Crosson
Nusku Networks
date: 2013/03/09
license: CC-BY SA 3.0 - Creative commons share-alike 3.0
use this code however you'd like, just keep this license and
attribute.
*/
2013-03-10 18:26:41 +00:00
#ifndef Project_h
#define Project_h
#define DEBUG true // For controlling debug output via serial
// Pinout / things that need configuration
#define okButtonPin 22
#define okButtonLed 23
#define cancelButtonPin 24
#define cancelButtonLed 25
#define pspXPin 0 // After GND / @ edge
#define pspYPin 1 // Between VCC and gnd
// LCD Pinouts
#define SD_CS 7 // Chip select line for SD card
#define LCD_CS 53 // Chip select line for TFT display
#define LCD_DC 9 // Data/command line for TFT
#define LCD_RST 8 // Reset line for TFT (or connect to +5V)
#define SPLASH_BACKGROUND ST7735_WHITE
#define BACKGROUND ST7735_BLACK
#define TEXT ST7735_WHITE
#define HILIGHT ST7735_YELLOW
// Don't change anything below here
// -----------------------------------------------------------------------------
2013-03-10 18:26:41 +00:00
#define FONT_WIDTH 6
#define FONT_HEIGHT 8
2013-03-10 18:26:41 +00:00
// Serial modes supported
// Abused in for loops / lookup tables -- DO NOT CHANGE none or set values
enum serialmode {
ttl,
2013-03-10 18:26:41 +00:00
db9_null,
cisco,
none=-1
};
// Map a mode -> text value
extern char* modeToText[];
2013-03-10 18:26:41 +00:00
// Line speeds supported
// Abused in for loops / lookup talbes -- DO NOT CHANGE none or set values
enum linespeed {
twentyFourHundredBaud,
ninetySixHundredBaud,
nineteenTwoK,
thirtyeightFourK,
fiftysevenFiveK,
oneNineteenTwoK,
2013-03-11 01:56:36 +00:00
maxlinespeed,
zero=-1
};
enum voltage {
onePointEight,
threePointThree,
five,
negOne=-1
};
extern char* voltageToText[];
// Description / speed scruct to use in lookup table
struct linespeedinfo {
2013-03-11 01:56:36 +00:00
char* description;
int linespeed;
};
// Known and supported line speeds
extern linespeedinfo linespeeds[];
// Mode info needed
extern serialmode currentMode;
extern serialmode selectedMode;
extern linespeed currentLineSpeed;
extern linespeed selectedLineSpeed;
extern voltage currentVoltage;
extern voltage selectedVoltage;
#endif