Difference between revisions of "MansOS Radio"

From DiLab
Jump to: navigation, search
(Function reference)
(Function reference)
Line 45: Line 45:
 
  // Similar to radioRecv(), but does not keep the result, just clear radio chip data buffers
 
  // Similar to radioRecv(), but does not keep the result, just clear radio chip data buffers
 
  void radioDiscard()
 
  void radioDiscard()
 +
 +
//
 +
// Set a new radio callback function.
 +
// The callback function is called when a packet becomes available.
 +
// In general, the callback function should call radioRecv() to read the packet.
 +
// Returns: old callback function or NULL
 +
//
 +
RadioRecvFunction radioSetReceiveHandle(RadioRecvFunction functionHandle);
  
  

Revision as of 07:29, 31 December 2011

mos/hil/radio.h

MansOS provides API for Radio communication in physical layer. Platforms without radio modules are also supported, with NULL-radio implementation.

Currently, only one default radio module is supported. When using multiple radio chips on one platform, other radios should be interfaced directly, using chip drivers.

Usage and configuration

Radio support is turned ON by default. It can be disabled by adding the following line to the application config file:

USE_RADIO = n

Dependencies

There are no dependencies for using Radio. However, when using remote reprogramming depends on radio, therefore radio usage is turned on, if remote reprogramming is used.

Function reference

All platform-independent radio functions are described in mos/hil/radio.h . Implementation can be found under mos/hal/platforms/<platform-name>/radio_hal.h

 // Initialize radio, called by the kernel on startup
 void radioInit() 
 
 // Turn the radio listening on. Note that listening is not required if radio is used only to send data
 void radioOn()

 // Turn the radio listening off (and save energy)
 void radioOff()

 // Transmit <len> bytes long data buffer over radio. Radio must be turned on before calling this function!
 // Returns 0 on success, error code as negative value on failure (see mos/hil/errors.h)
 int8_t radioSend(const void *data, uint16_t len)

 // Transmit one byte over radio. Radio must be turned on before calling this function!
 // Returns 0 on success, error code as negative value on failure (see mos/hil/errors.h)
 int8_t radioSendByte(uint8_t data)

 // Write received data into the buffer. It should be called after the radio driver has signaled
 // data availability. Non-blocking function (does not wait for data to arrive)
 // Returns received data length on success, error code as negative value on failure (see mos/hil/errors.h)
 int16_t radioRecv(void *buffer, uint16_t bufferLength)

 // Similar to radioRecv(), but does not keep the result, just clear radio chip data buffers
 void radioDiscard()

//
// Set a new radio callback function.
// The callback function is called when a packet becomes available.
// In general, the callback function should call radioRecv() to read the packet.
// Returns: old callback function or NULL
//
RadioRecvFunction radioSetReceiveHandle(RadioRecvFunction functionHandle);


Examples

TODO