summaryrefslogtreecommitdiffstatshomepage
path: root/stm/usb.c
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-10-19 14:40:54 +0100
committerDamien <damien.p.george@gmail.com>2013-10-19 14:40:54 +0100
commit00ff04fc4932fc7c3fc2f9b9074f11c189045dad (patch)
treedcd6d14ed9ea2874f5c675aa877e5dd4982398bd /stm/usb.c
parent995b8aabb1ee786a4070d6d8392750ff878d53fa (diff)
downloadmicropython-00ff04fc4932fc7c3fc2f9b9074f11c189045dad.tar.gz
micropython-00ff04fc4932fc7c3fc2f9b9074f11c189045dad.zip
Working SysTick, code factoring, some boot-up code.
Diffstat (limited to 'stm/usb.c')
-rw-r--r--stm/usb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/usb.c b/stm/usb.c
index fdb088638b..cc88808d9f 100644
--- a/stm/usb.c
+++ b/stm/usb.c
@@ -17,6 +17,6 @@ void usb_init() {
void usb_vcp_send(const char* str, int len) {
if (is_enabled) {
- VCP_fops.pIf_DataTx((const uint8_t*)str, len);
+ //VCP_fops.pIf_DataTx((const uint8_t*)str, len);
}
}