Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: ton_demo ton_template
USBTon.cpp
00001 #include "stdint.h" 00002 #include "USBTon.h" 00003 00004 int USBTon::_putc(int c) { 00005 VCP_write((uint8_t *)&c, 1); 00006 return 1; 00007 } 00008 00009 int USBTon::_getc() { 00010 uint8_t c = 0; 00011 VCP_read((uint8_t *)&c, 1); 00012 return c; 00013 } 00014 00015 uint8_t USBTon::available() { 00016 return 1; 00017 }
Generated on Tue Jul 12 2022 20:52:33 by
1.7.2