Accepts RPC commands over bluetooth (RN42)

Dependencies:   mbed m3pi

Embed: (wiki syntax)

« Back to documentation index

RPCFunction Class Reference

RPCFunction Class Reference

Class to call custom functions over RPC. More...

#include <RPCFunction.h>

Public Member Functions

 RPCFunction (void(*f)(char *, char *), const char *=NULL)
 Constructor.
char * run (char *str)
 run
char * read ()
 Reads the value of the output string.

Detailed Description

Class to call custom functions over RPC.

Definition at line 46 of file RPCFunction.h.


Constructor & Destructor Documentation

RPCFunction ( void(*)(char *, char *)  f,
const char *  name = NULL 
)

Constructor.

Parameters:
fPointer to the function to call. the function must be of the form void foo(char * input, char * output)
nameThe name of this object

Definition at line 86 of file RPCFunction.cpp.


Member Function Documentation

char * read (  )

Reads the value of the output string.

Returns:
the string outputted from the last time the function was called

Definition at line 99 of file RPCFunction.cpp.

char * run ( char *  str )

run

Calls the attached function passing the string in but doesn't return the result.

Parameters:
strThe string to be passed into the attached function. This string can consist of any ASCII characters apart from escape codes. The usual limtations on argument content for RPC strings has been removed
Returns:
A string output from the function

Definition at line 92 of file RPCFunction.cpp.