diff options
author | Dave Hylands <dhylands@gmail.com> | 2014-08-03 09:55:24 -0700 |
---|---|---|
committer | Dave Hylands <dhylands@gmail.com> | 2014-08-03 10:03:02 -0700 |
commit | ecb5792f887392d53f98a84e1c56a807cc93d2ea (patch) | |
tree | c689e1c85b4ef88feecdbcd23f91f55bba481e95 /teensy | |
parent | 8362bffb2eed310d319b0b96c1b3305eff9c4417 (diff) | |
download | micropython-ecb5792f887392d53f98a84e1c56a807cc93d2ea.tar.gz micropython-ecb5792f887392d53f98a84e1c56a807cc93d2ea.zip |
Updated teensys usb.c and switched to using usb.h from stmhal.
Removed the local usb.h from teensey directory and now uses
the usb.h from the stmhal directory.
Fixed the deploy target to use abspath.
Diffstat (limited to 'teensy')
-rw-r--r-- | teensy/Makefile | 2 | ||||
-rw-r--r-- | teensy/usb.c | 22 | ||||
-rw-r--r-- | teensy/usb.h | 9 |
3 files changed, 18 insertions, 15 deletions
diff --git a/teensy/Makefile b/teensy/Makefile index 62ccd875a4..54e6ef050e 100644 --- a/teensy/Makefile +++ b/teensy/Makefile @@ -104,7 +104,7 @@ TOOLS_PATH = $(ARDUINO)/hardware/tools post_compile: $(BUILD)/micropython-mz.hex $(ECHO) "Preparing $@ for upload" - $(Q)$(TOOLS_PATH)/teensy_post_compile -file="$(basename $(<F))" -path="$(<D)" -tools="$(TOOLS_PATH)" + $(Q)$(TOOLS_PATH)/teensy_post_compile -file="$(basename $(<F))" -path="$(abspath $(<D))" -tools="$(TOOLS_PATH)" reboot: $(ECHO) "REBOOT" diff --git a/teensy/usb.c b/teensy/usb.c index 37c479ec7c..9fb50967db 100644 --- a/teensy/usb.c +++ b/teensy/usb.c @@ -1,18 +1,25 @@ #include <string.h> +#include <stdint.h> #include "Arduino.h" +#include "mpconfig.h" +#include "misc.h" +#include "qstr.h" +#include "obj.h" +#include "runtime.h" + #include "usb.h" #include "usb_serial.h" -int usb_vcp_is_connected(void) +bool usb_vcp_is_connected(void) { return usb_configuration && (usb_cdc_line_rtsdtr & (USB_SERIAL_DTR | USB_SERIAL_RTS)); } -int usb_vcp_is_enabled(void) +bool usb_vcp_is_enabled(void) { - return 1; + return true; } void usb_vcp_set_interrupt_char(int c) { @@ -25,9 +32,14 @@ int usb_vcp_rx_num(void) { return usb_serial_available(); } -int usb_vcp_recv_byte(void) +int usb_vcp_recv_byte(uint8_t *ptr) { - return usb_serial_getchar(); + int ch = usb_serial_getchar(); + if (ch < 0) { + return 0; + } + *ptr = ch; + return 1; } void usb_vcp_send_str(const char* str) diff --git a/teensy/usb.h b/teensy/usb.h deleted file mode 100644 index 8f32309ecb..0000000000 --- a/teensy/usb.h +++ /dev/null @@ -1,9 +0,0 @@ -void usb_init(void); -int usb_vcp_is_enabled(void); -int usb_vcp_is_connected(void); -int usb_vcp_rx_any(void); -char usb_vcp_rx_get(void); -void usb_vcp_send_str(const char* str); -void usb_vcp_send_strn(const char* str, int len); -void usb_vcp_send_strn_cooked(const char *str, int len); -void usb_hid_send_report(uint8_t *buf); // 4 bytes for mouse: ?, x, y, ? |