diff options
author | ajmeyer@mit.edu <ajmeyer@mit.edu@749a229e-a60e-11de-b98f-4500b42dc123> | 2010-01-07 03:31:35 +0000 |
---|---|---|
committer | ajmeyer@mit.edu <ajmeyer@mit.edu@749a229e-a60e-11de-b98f-4500b42dc123> | 2010-01-07 03:31:35 +0000 |
commit | 2addfe8c42c6bcdc0a15c751e2436447b73d03fe (patch) | |
tree | 07e569cd0fe7fd4a06cb5f71e12ba76dda3d5e2c /Makefile | |
parent | 5f423270cde82f9dfffb52bdd617e5eb439921c5 (diff) | |
download | librambutan-2addfe8c42c6bcdc0a15c751e2436447b73d03fe.tar.gz librambutan-2addfe8c42c6bcdc0a15c751e2436447b73d03fe.zip |
Added a print class for USB, works identically to the Serial object. Bugs out if you try and pump more than 64 bytes through it in a single packet (which is really the OS's decision). This can be fixed
git-svn-id: https://leaflabs.googlecode.com/svn/trunk/library@93 749a229e-a60e-11de-b98f-4500b42dc123
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -81,7 +81,8 @@ CSRC += $(STM32SRCS) CPPSRC = wiring/math.cpp \ wiring/Print.cpp \ wiring/comm/HardwareSerial.cpp \ - main.cpp + wiring/comm/HardwareUsb.cpp \ + example_main.cpp # i really have no idea what i'm doing meep += $(CSRC) |