Code for tone generation over serial connection

Dependencies:   RPCInterface mbed

Fork of RPC_Function_Example by Varun Nambiar

Revision:
1:50a40baa79bf
Parent:
0:74f2764b636b
Child:
2:3d9bd88b5b75
--- a/main.cpp	Fri Mar 11 23:42:52 2016 +0000
+++ b/main.cpp	Sat Mar 12 02:39:07 2016 +0000
@@ -6,16 +6,6 @@
  *  This example demonstrates using RPC over serial
  */
 
-
-// These are examples of some variable types that can be modified through RPC.
-int wheelsOn;
-char lcdBannerMessage;
-float speed;
-
-RPCVariable<int> rpcLights(&wheelsOn, "wheels");
-RPCVariable<char> rpcBanner(&lcdBannerMessage, "banner");
-RPCVariable<float> rpcSpeed(&speed, "speed");
-
 Serial pc(USBTX, USBRX);
 void moveTo(Arguments *in, Reply *out);
 RPCFunction rpcMove(&moveTo, "moveTo");