fork from va009039/USBLocalFileSystem

Dependencies:   USBDevice

Dependents:   11u35_usbLocalFilesystem

Fork of USBLocalFileSystem by Norimasa Okamoto

USBMSD2/SerialInterface.h

Committer:
va009039
Date:
2014-05-03
Revision:
0:39eb4d5b97df

File content as of revision 0:39eb4d5b97df:

// SerialInterface.h 2013/9/22
#pragma once

class SerialInterface {
public:
    /** virtual COM to target
     */
    virtual void serial_send_to_target(int c) = 0;

    /** target to virtual COM
     */
    virtual int serial_send_to_virtual_com(int c);
    
    virtual void serial_break();
};