Rapid Prototyping for general microcontroller applications, Ethernet, USB and 32-bit ARM® Cortex™-M3 based designs

GPS readings $GPGGA, $GPGSA, $GPGSV and so on

30 Jan 2014
  1. include "mbed.h" Serial device(p9, p10); tx, rx Serial pc(USBTX, USBRX); void main() { pc.baud(9600); device.baud(9600); pc.printf("reading:\n\r"); device.putc('1'); while(1) { if(device.readable()) { pc.putc(device.getc()); } }

}

30 Jan 2014

Make use of this program