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.
Dependents: mbed-TFT-example-NCS36510 mbed-Accelerometer-example-NCS36510 mbed-Accelerometer-example-NCS36510
RPCFunction Class Reference
Class to call custom functions over RPC. More...
#include <RPCFunction.h>
Inherits mbed::RPC.
Public Member Functions | |
RPCFunction (void(*f)(Arguments *, Reply *), const char *=NULL) | |
Constructor. | |
void | run (Arguments *args, Reply *r) |
run |
Detailed Description
Class to call custom functions over RPC.
Definition at line 29 of file RPCFunction.h.
Constructor & Destructor Documentation
RPCFunction | ( | void(*)(Arguments *, Reply *) | 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 25 of file RPCFunction.cpp.
Member Function Documentation
void run | ( | Arguments * | args, |
Reply * | r | ||
) |
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 30 of file RPCFunction.cpp.
Generated on Tue Jul 12 2022 11:03:21 by
