Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: libmDot mbed-rtos mbed
Fork of power_meter by
main.cpp
- Committer:
- terrytamyh
- Date:
- 2014-06-16
- Revision:
- 0:87fb6735eb09
- Child:
- 1:875d121e9ce9
File content as of revision 0:87fb6735eb09:
#include "mbed.h"
#include "DataLoggerRS232.h"
Serial pc (USBTX, USBRX); // tx, rx
DataLoggerRS232 dataLogger (p9,p10); // tx, rx
char DLcommand;
int main() {
pc.baud(115200);
pc.printf("PC and Datalogger serial set up complete !!\n\r");
dataLogger.baud(115200);
pc.printf("Here !!\n\r");
while(1) {
if(pc.readable()) {
dataLogger.count = 0;
DLcommand = pc.getc();
pc.printf("\n\r%c\n\r",DLcommand);
dataLogger.putc(DLcommand);
dataLogger.get_ECU_databyte();
}
dataLogger.display_ECU_databyte();
}
}
