fork from va009039/USBLocalFileSystem

Dependencies:   USBDevice

Dependents:   11u35_usbLocalFilesystem

Fork of USBLocalFileSystem by Norimasa Okamoto

USBMSD2/SerialInterface.h

Committer:
k4zuki
Date:
2016-03-04
Revision:
11:c396747794c6
Parent:
0:39eb4d5b97df

File content as of revision 11:c396747794c6:

// 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();
};