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: DS1307 TextLCD mbed
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:
-
f Pointer to the function to call. the function must be of the form void foo(char * input, char * output) name The 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:
-
str The 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.
Generated on Sun Jul 17 2022 10:12:52 by
