arm

Dependencies:   mbed

Fork of TAIST_modbus_copy by Ananya Kuasakunrungroj

main.cpp

Committer:
sa_jirayu
Date:
2018-03-14
Revision:
1:02397f869dcb
Parent:
0:f306cb0263a6

File content as of revision 1:02397f869dcb:

#include "mbed.h"
#include "modbus.h"

DigitalOut myled(LED1);
RawSerial pc(USBTX, USBRX);

void serial_callback()
{
    uint8_t frame[6];
    
    char ch = pc.getc();
    if (modbus_parser(ch, frame)) {
        
    }
}

int main() {
    // setup code
    pc.attach(serial_callback);
    // 1. button code
    // 2. timer code
    while(1) {
        // loop code
        myled = 1; // LED is ON
        wait(0.2); // 200 ms
        myled = 0; // LED is OFF
        wait(1.0); // 1 sec
    }
}