RTOS Support.

Dependents:   SerialRPC_rtos_example

Fork of RPCInterface by Michael Walker

Embed: (wiki syntax)

« Back to documentation index

SerialRPCInterface Class Reference

SerialRPCInterface Class Reference

Provides an Interface to mbed over RPC. More...

#include <SerialRPCInterface.h>

Public Member Functions

 SerialRPCInterface (PinName tx, PinName rx, int baud=9600)
 Constructor.
void Disable (void)
 Disable the RPC.
void Enable (void)
 Enable the RPC.

Detailed Description

Provides an Interface to mbed over RPC.

For the chosen communication type this class sets up the necessary interrupts to receive RPC messages. Receives the messages, passes them to the rpc function and then returns the result.

Definition at line 51 of file SerialRPCInterface.h.


Constructor & Destructor Documentation

SerialRPCInterface ( PinName  tx,
PinName  rx,
int  baud = 9600 
)

Constructor.

Sets up RPC communication using serial communication.

Parameters:
txThe transmit pin of the serial port.
rxThe receive pin of the serial port.
baudSet the baud rate, default is 9600.

Definition at line 33 of file SerialRPCInterface.cpp.


Member Function Documentation

void Disable ( void   )

Disable the RPC.

This will stop RPC messages being recevied and interpreted by this library. This might be used to prevent RPC commands interrupting an important piece of code on mbed.

Definition at line 62 of file SerialRPCInterface.cpp.

void Enable ( void   )

Enable the RPC.

This will set this class to receiving and executing RPC commands. The class starts in this mode so this function only needs to be called if you have previosuly disabled the RPC.

Definition at line 65 of file SerialRPCInterface.cpp.