92 lines
2.4 KiB
C++
92 lines
2.4 KiB
C++
/*
|
|
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.
|
|
*/
|
|
|
|
#include <Wire.h>
|
|
|
|
#include "Project.h"
|
|
#include "Config.h"
|
|
#include "UIButton.h"
|
|
#include "UIJoystickPSP.h"
|
|
#include "UILCD.h"
|
|
#include "UI.h"
|
|
|
|
#include <Adafruit_GFX.h>
|
|
#include <Adafruit_ST7735.h>
|
|
#include <SPI.h>
|
|
#include <SerialPort.h>
|
|
#include <SdFile.h>
|
|
#include <SdFat.h>
|
|
|
|
#include <TimerThree.h>
|
|
#include <Metro.h>
|
|
#include "RTClib.h"
|
|
|
|
UI* ui;
|
|
Config* config;
|
|
RTC_DS1307 rtc;
|
|
SdFat sd;
|
|
SdFile dataFile;
|
|
SerialPort<0, 4096, 0> serialPort0;
|
|
SerialPort<0, 4096, 0> serialPort1;
|
|
SerialPort<0, 4096, 0> serialPort2;
|
|
SerialPort<0, 4096, 0> serialPort3;
|
|
|
|
// helper for interrupt method call
|
|
void processSerial() {
|
|
config->processSerialData();
|
|
}
|
|
|
|
void setup() {
|
|
// Setup various IO busses
|
|
serialPort0.begin(115200);
|
|
Wire.begin();
|
|
|
|
// Ensure RTC is set to run on battery
|
|
// clear /EOSC bit
|
|
// Sometimes necessary to ensure that the clock
|
|
// keeps running on just battery power. Once set,
|
|
// it shouldn't need to be reset but it's a good
|
|
// idea to make sure.
|
|
Wire.beginTransmission(0x68); // address DS3231
|
|
Wire.write(0x0E); // select register
|
|
Wire.write(0b00011100); // write register bitmap, bit 7 is /EOSC
|
|
Wire.endTransmission();
|
|
|
|
// Start real time clock
|
|
rtc.begin();
|
|
|
|
// Stuff used for serial and UI
|
|
config = new Config();
|
|
config->setDefaults();
|
|
ui = new UI();
|
|
|
|
// Start the SD Card -- FIXME: This should likely get moved to config
|
|
if (!sd.begin(SD_CS)) {
|
|
serialPort0.println("SD.begin(SD_CS) -- failed!");
|
|
}
|
|
|
|
// Open data log file -- FIXME: This needs to be controlled via config some
|
|
dataFile.open("datalog.txt", O_WRITE | O_CREAT | O_AT_END);
|
|
|
|
// Setup serial IO on an interrupt timer
|
|
// ***THIS MUST BE DONE AFTER new Config()***
|
|
// ***THIS MUST BE DONE AFTER SD INIT***
|
|
Timer3.initialize(100); // initialize timer3, value in micro seconds
|
|
Timer3.pwm(timerThreePin, 512); // setup pwm on appropriate pin, 50% duty cycle
|
|
Timer3.attachInterrupt(processSerial); // attaches method as a timer overflow interrupt
|
|
}
|
|
|
|
void loop() {
|
|
// Serial data is processed via an interrupt so isn't needed in the main loop
|
|
ui->processInputEvents();
|
|
ui->processTimeoutEvents();
|
|
}
|
|
|