diff options
author | Damien <damien.p.george@gmail.com> | 2013-10-19 14:40:54 +0100 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-10-19 14:40:54 +0100 |
commit | 00ff04fc4932fc7c3fc2f9b9074f11c189045dad (patch) | |
tree | dcd6d14ed9ea2874f5c675aa877e5dd4982398bd /stm/usb.c | |
parent | 995b8aabb1ee786a4070d6d8392750ff878d53fa (diff) | |
download | micropython-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } } |