ISP example program.

Dependencies:   SLCD mbed USBLocalFileSystem

/media/uploads/va009039/lpc81isp-360x240.jpg

FRDM-KL46ZLPC810
UART RXDPTE23p2(P0_4)
UART TXDPTE22p8(P0_0)
nRESETD6p1(P0_5)
nISPD8p5(P0_1)
GNDGNDp7
3.3VP3V3p6

Copy binary image to the disk called LPC81ISP.
Push sw1 or sw3, start write to LPC810 flash.

USBMSD2/SerialInterface.h

Committer:
va009039
Date:
2014-02-16
Revision:
1:cccfc461c61f

File content as of revision 1:cccfc461c61f:

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