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: C12832 MMA7660 RPCInterface TextLCD mbed
Fork of RPC_Serial by
Diff: main.cpp
- Revision:
- 0:3ffd66df9efb
- Child:
- 1:e245b0b4d96c
diff -r 000000000000 -r 3ffd66df9efb main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Sat Apr 21 00:47:46 2012 +0000
@@ -0,0 +1,25 @@
+#include "mbed.h"
+#include "rpc.h"
+Serial pc(USBTX, USBRX);
+int main() {
+ // setup the classes that can be created dynamically
+ Base::add_rpc_class<AnalogIn>();
+ Base::add_rpc_class<AnalogOut>();
+ Base::add_rpc_class<DigitalIn>();
+ Base::add_rpc_class<DigitalOut>();
+ Base::add_rpc_class<DigitalInOut>();
+ Base::add_rpc_class<PwmOut>();
+ Base::add_rpc_class<Timer>();
+ Base::add_rpc_class<SPI>();
+ Base::add_rpc_class<BusOut>();
+ Base::add_rpc_class<BusIn>();
+ Base::add_rpc_class<BusInOut>();
+ Base::add_rpc_class<Serial>();
+ // receive commands, and send back the responses
+ char buf[256], outbuf[256];
+ while(1) {
+ pc.gets(buf, 256);
+ rpc(buf, outbuf);
+ pc.printf("%s\n", outbuf);
+ }
+}
