SSLM1 / Mbed 2 deprecated 1_Transiver_test

Dependencies:   mbed

main.cpp

Committer:
sasakisho
Date:
2020-07-01
Revision:
0:114501d9843c

File content as of revision 0:114501d9843c:

/* TWE-Liteにmbedから適当な文字を送信するプログラム */

#include "mbed.h"

Serial pc(USBTX, USBRX); //Serial set up
Serial twe(p13, p14);

int main()
{
    int i = 0;
    
    pc.printf("start!");
    
    pc.baud(115200);
    twe.baud(115200);
    
    while(1)
    {    
        twe.printf("%d\r\n", i);
        wait(1);
        
        i++;
    }
}