Kleber Silva / IOTON-API

Dependents:   ton_demo ton_template

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers USBTon.cpp Source File

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 }