SC16IS750 TX sample

Dependencies:   mbed SC16IS750

main.cpp

Committer:
okano
Date:
2012-07-18
Revision:
1:40c636cb6d09
Parent:
0:41dffa1b3405

File content as of revision 1:40c636cb6d09:

#include    "mbed.h"
#include    "SC16IS750.h"

SC16IS750   bridge( p28, p27, 9600 );    //  SDA, SCL, Baud(option), I2C_Address(option)

int main() {

    bridge.send_str( "NXP Semiconductors" );
    
    while ( 1 )
        ;
}