diff options
author | Perry Hung <iperry@alum.mit.edu> | 2010-06-04 00:43:21 -0400 |
---|---|---|
committer | Perry Hung <iperry@alum.mit.edu> | 2010-06-04 00:43:21 -0400 |
commit | 88d4b095e4590ab9bbafcf76e134d168f66c41b1 (patch) | |
tree | 5947dd76c0136194e0e08ea45cbe4e004d7b81ff /examples | |
parent | 1a908d88b8c288fca89b17ceea182044d82e766e (diff) | |
download | librambutan-88d4b095e4590ab9bbafcf76e134d168f66c41b1.tar.gz librambutan-88d4b095e4590ab9bbafcf76e134d168f66c41b1.zip |
Preliminary wirish USBSerial implementation.
-updated examples
-removed HardwareUSB
-cleaned up a handful of includes
Diffstat (limited to 'examples')
-rw-r--r-- | examples/spi_master.cpp | 1 | ||||
-rw-r--r-- | examples/test-session.cpp | 6 |
2 files changed, 0 insertions, 7 deletions
diff --git a/examples/spi_master.cpp b/examples/spi_master.cpp index 19679f7..2b62c8d 100644 --- a/examples/spi_master.cpp +++ b/examples/spi_master.cpp @@ -33,7 +33,6 @@ */
#include "wirish.h"
-#include "HardwareSPI.h"
#define CS 10
diff --git a/examples/test-session.cpp b/examples/test-session.cpp index 3d86dc6..78b1d31 100644 --- a/examples/test-session.cpp +++ b/examples/test-session.cpp @@ -23,16 +23,10 @@ * ****************************************************************************/
#include "wirish.h"
-#include "HardwareSerial.h"
-#include "HardwareUsb.h"
-#include <math.h>
-#include "usb.h"
#define LED_PIN 13
#define PWM_PIN 2
-HardwareUsb Usb;
-
uint8 input = 0;
uint8 tiddle = 0;
int toggle = 0;
|