upm
0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
|
C++ API for the HMTRP Serial RF Pro. More...
UPM support for the HMTRP Serial RF Pro. This was tested specifically with the Grove Serial RF Pro module. In theory, this class should work with the following devices:
HM-TRP-433: 414000000-454000000Hz HM-TRP-470: 450000000-490000000Hz HM-TRP-868: 849000000-889000000Hz HM-TRP-915: 895000000-935000000Hz
The only difference being the transmit and receive frequencies supported.
By default, the device will simply send and receive any data presented on it's UART interface. It can be placed into a configuration mode by grounding the CONFIG pin on the module.
Public Member Functions | |
HMTRP (int uart=HMTRP_DEFAULT_UART) | |
~HMTRP () | |
bool | dataAvailable (unsigned int millis=0) |
int | readData (char *buffer, size_t len, int millis=-1) |
int | writeData (char *buffer, size_t len) |
bool | setupTty (speed_t baud=B9600) |
bool | checkOK () |
bool | reset () |
bool | getConfig (uint32_t *freq, uint32_t *dataRate, uint16_t *rxBandwidth, uint8_t *modulation, uint8_t *txPower, uint32_t *uartBaud) |
bool | setFrequency (uint32_t freq) |
bool | setRFDataRate (uint32_t rate) |
bool | setRXBandwidth (uint16_t rxBand) |
bool | setFrequencyModulation (uint8_t modulation) |
bool | setTransmitPower (uint8_t power) |
bool | setUARTSpeed (uint32_t speed) |
bool | getRFSignalStrength (uint8_t *strength) |
bool | getModSignalStrength (uint8_t *strength) |
HMTRP | ( | int | uart = HMTRP_DEFAULT_UART | ) |
HMTRP Serial RF Pro module constructor
uart | default uart to use (0 or 1) |
bool dataAvailable | ( | unsigned int | millis = 0 | ) |
Check to see if there is data available for reading
millis | number of milliseconds to wait, 0 means no wait (default). |
int readData | ( | char * | buffer, |
size_t | len, | ||
int | millis = -1 |
||
) |
read any available data into a user-supplied buffer.
buffer | the buffer to hold the data read |
len | the length of the buffer |
millis | maxim time in milliseconds to wait for input. -1 means wait forever (default). |
int writeData | ( | char * | buffer, |
size_t | len | ||
) |
write the data in buffer to the device
buffer | the buffer to hold the data read |
len | the length of the buffer |
bool setupTty | ( | speed_t | baud = B9600 | ) |
setup the proper tty i/o modes and the baudrate. The default baud rate is 9600 (B9600).
baud | the desired baud rate. |
bool checkOK | ( | ) |
Look for and verify an OK response. This will look like "OK\r\n"
bool reset | ( | ) |
reset the device to default parameters, except for UART baud rate
bool getConfig | ( | uint32_t * | freq, |
uint32_t * | dataRate, | ||
uint16_t * | rxBandwidth, | ||
uint8_t * | modulation, | ||
uint8_t * | txPower, | ||
uint32_t * | uartBaud | ||
) |
Query the radio to determine it's configuration
freq | operating frequency |
dataRate | tx/rx bit rate |
rxBandwidth | receiving bandwidth in Khz |
modulation | modulation frequency in Khz |
txPower | transmission power (1-7) |
uartBaud | UART baud rate |
bool setFrequency | ( | uint32_t | freq | ) |
set the frequency. Note, this is limited depending on which HM-TRP device you are using. Consult the datasheet.
freq | operating frequency |
bool setRFDataRate | ( | uint32_t | rate | ) |
set the RF data transmission rate. Valid values are between 1200-115200.
rate | radio transmission rate in baud (1200-115200) |
bool setRXBandwidth | ( | uint16_t | rxBand | ) |
set the RX bandwidth. Valid values are between 30-620 (in Khz)
rxBand | set receive bandwidth (30-620) Khz |
bool setFrequencyModulation | ( | uint8_t | modulation | ) |
set the frequency modulation. Valid values are between 10-160 (in Khz)
modulation | frequency modulation to use (10-160) Khz |
bool setTransmitPower | ( | uint8_t | power | ) |
set the transmit power level. Valid values are between 0-7, with 7 being maximum power.
power | power level to use during transmit. Vaild values are between 0-7. |
bool setUARTSpeed | ( | uint32_t | speed | ) |
set the configured baud rate of the UART. It is strongly recommended that you do not change this or you may lose the ability to communicate with the module. Valid values are 1200-115200.
speed | desired baud rate to configure the device to use. Valid values are between 1200-115200. |
bool getRFSignalStrength | ( | uint8_t * | strength | ) |
get the RF signal strength.
strength | the returned strength |
bool getModSignalStrength | ( | uint8_t * | strength | ) |
get the Modulation signal strength.
strength | the returned strength |