aboutsummaryrefslogtreecommitdiff
path: root/libraries/Bridge/Bridge.h
diff options
context:
space:
mode:
authorFederico Fissore <f.fissore@arduino.cc>2013-05-09 11:14:59 +0200
committerFederico Fissore <f.fissore@arduino.cc>2013-05-09 11:15:36 +0200
commitf12d265653719924d59c774312ff506dc16ea261 (patch)
treee6f099dcd4ad103177cab601daa5d7319450ba84 /libraries/Bridge/Bridge.h
parent48eb4551dcde6eb40574d1d7cb41075c09339ccc (diff)
Bridge lib moved bridge branch embedded into ide discovery branch
Diffstat (limited to 'libraries/Bridge/Bridge.h')
-rw-r--r--libraries/Bridge/Bridge.h99
1 files changed, 99 insertions, 0 deletions
diff --git a/libraries/Bridge/Bridge.h b/libraries/Bridge/Bridge.h
new file mode 100644
index 0000000..0740d4f
--- /dev/null
+++ b/libraries/Bridge/Bridge.h
@@ -0,0 +1,99 @@
+/*
+ Copyright (c) 2013 Arduino LLC. All right reserved.
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+
+#ifndef BRIDGE_H_
+#define BRIDGE_H_
+
+#include <Arduino.h>
+#include <Stream.h>
+
+class BridgeClass: public Stream {
+public:
+ BridgeClass(Stream &_stream) : index(0), stream(_stream), started(false) {
+ // Empty
+ }
+
+ void begin();
+ uint8_t runCommand(String &command);
+
+ bool commandIsRunning(uint8_t handle);
+
+ unsigned int commandExitValue(uint8_t handle);
+
+ void cleanCommand(uint8_t handle);
+
+ unsigned int commandOutputAvailable(uint8_t handle);
+ unsigned int readCommandOutput(uint8_t handle, uint8_t *buff, unsigned int size);
+ unsigned int readCommandOutput(uint8_t handle, char *buff, unsigned int size)
+ { return readCommandOutput(handle, reinterpret_cast<uint8_t *>(buff), size); }
+
+ void writeCommandInput(uint8_t handle, uint8_t *buff, unsigned int size);
+ void writeCommandInput(uint8_t handle, char *buff, unsigned int size)
+ { writeCommandInput(handle, reinterpret_cast<uint8_t *>(buff), size); }
+
+ // Print methods
+ size_t write(uint8_t c) { return stream.write(c); }
+ size_t write(const uint8_t *buffer, size_t size)
+ { return stream.write(buffer, size); }
+
+ // Stream methods
+ int available() { return stream.available(); }
+ int read() { return stream.read(); }
+ int peek() { return stream.peek(); }
+ void flush() { stream.flush(); }
+
+ uint8_t transfer(uint8_t *buff, uint8_t len, uint8_t *rxbuff=NULL, uint8_t rxlen=0);
+private:
+ uint8_t index;
+ int timedRead(unsigned int timeout);
+ void dropAll();
+
+private:
+ void crcUpdate(uint8_t c);
+ void crcReset();
+ void crcWrite();
+ bool crcCheck(uint16_t _CRC);
+ uint16_t CRC;
+
+private:
+ static const char CTRL_C = 3;
+ static const char CMD_RECV = 0x00;
+ Stream &stream;
+ bool started;
+};
+
+// This subclass uses a serial port Stream
+class SerialBridgeClass : public BridgeClass {
+public:
+ SerialBridgeClass(HardwareSerial &_serial)
+ : BridgeClass(_serial), serial(_serial) {
+ // Empty
+ }
+
+ void begin() {
+ serial.begin(115200);
+ BridgeClass::begin();
+ }
+
+private:
+ HardwareSerial &serial;
+};
+
+extern SerialBridgeClass Bridge;
+
+#endif /* BRIDGE_H_ */