Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
2a022030
Commit
2a022030
authored
10 years ago
by
Kévin Roussel
Browse files
Options
Downloads
Patches
Plain Diff
Complete the definition of low-level radio driver API
parent
988de6b2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/include/radio_driver.h
+41
-16
41 additions, 16 deletions
drivers/include/radio_driver.h
with
41 additions
and
16 deletions
drivers/include/radio_driver.h
+
41
−
16
View file @
2a022030
/**
/**
* Copyright (C) 2014 INRIA
* Copyright (C) 2014 INRIA
*
*
* This source code is licensed under the GNU Lesser General Public License,
* This file is subject to the terms and conditions of the GNU Lesser General
* Version 2. See the file LICENSE for more details.
* Public License. See the file LICENSE in the top level directory for more
* details.
*/
*/
/**
/**
...
@@ -25,12 +26,21 @@
...
@@ -25,12 +26,21 @@
* @brief Callback function type for receiving incoming packets
* @brief Callback function type for receiving incoming packets
* from 802.15.4 radio transceiver.
* from 802.15.4 radio transceiver.
*
*
* @param[in] buf Pointer to the buffer containing the incoming
* @param[in] buf Pointer to the buffer containing the incoming
* 802.15.4 packet's raw data.
* 802.15.4 packet's raw data.
* @param[in] len Length (in bytes) of the incoming packet's raw data.
* @param[in] len Length (in bytes) of the incoming packet's raw data.
*
* @param[in] rssi Value of the Receive Signal Strength Indicator (RSSI)
* for the incoming packet.
* @param[in] lqi Value of the Link Quality Indicator (LQI)
* for the incoming packet.
* @param[in] crc_ok @c true if incoming packet's checksum (CRC) is valid;
* @c false otherwise (corrupted packet).
*/
*/
typedef
void
(
*
receive_802154_packet_callback_t
)(
void
*
buf
,
unsigned
int
len
);
typedef
void
(
*
receive_802154_packet_callback_t
)(
void
*
buf
,
unsigned
int
len
,
int8_t
rssi
,
uint8_t
lqi
,
bool
crc_ok
);
/**
/**
* @brief Kind of packet to prepare/configure for transmission.
* @brief Kind of packet to prepare/configure for transmission.
...
@@ -69,6 +79,12 @@ typedef enum {
...
@@ -69,6 +79,12 @@ typedef enum {
/** Transmission failed because of collision on radio medium */
/** Transmission failed because of collision on radio medium */
RADIO_TX_COLLISION
,
RADIO_TX_COLLISION
,
/** Wrong parameter given to TX-related functions */
RADIO_TX_INVALID_PARAM
,
/** Too much given data to be included in a single packet */
RADIO_TX_PACKET_TOO_LONG
,
/** Transmission supposedly failed since no ACK packet
/** Transmission supposedly failed since no ACK packet
has been received as response */
has been received as response */
RADIO_TX_NOACK
,
RADIO_TX_NOACK
,
...
@@ -108,6 +124,11 @@ typedef union {
...
@@ -108,6 +124,11 @@ typedef union {
*
*
*/
*/
typedef
struct
{
typedef
struct
{
/**
* @brief Initialize the radio transceiver (call before first use).
*/
void
(
*
init
)(
void
);
/**
/**
* @brief Turn radio transceiver on.
* @brief Turn radio transceiver on.
*
*
...
@@ -149,13 +170,15 @@ typedef struct {
...
@@ -149,13 +170,15 @@ typedef struct {
* and transceiver configuration.
* and transceiver configuration.
* @param[in] len Length (in bytes) of the outgoing packet payload.
* @param[in] len Length (in bytes) of the outgoing packet payload.
*
*
* @return
@c tru
e
i
f th
e transceiver TX buffer was loaded correctly;
* @return
The outcom
e
o
f th
is packet's transmission.
* @
c false otherwise (transceiver error).
* @
see radio_tx_status_t
*/
*/
bool
(
*
load_tx
)(
ieee802154_packet_kind_t
kind
,
radio_tx_status_t
(
*
load_tx
)(
ieee802154_packet_kind_t
kind
,
ieee802154_node_addr_t
dest
,
bool
use_long_addr
,
ieee802154_node_addr_t
dest
,
bool
wants_ack
,
bool
use_long_addr
,
void
*
buf
,
unsigned
int
len
);
bool
wants_ack
,
void
*
buf
,
unsigned
int
len
);
/**
/**
* @brief Transmit the data loaded into the transceiver TX buffer.
* @brief Transmit the data loaded into the transceiver TX buffer.
...
@@ -189,10 +212,12 @@ typedef struct {
...
@@ -189,10 +212,12 @@ typedef struct {
* @return The outcome of this packet's transmission.
* @return The outcome of this packet's transmission.
* @see radio_tx_status_t
* @see radio_tx_status_t
*/
*/
radio_tx_status_t
(
*
send
)(
ieee802154_packet_kind_t
,
radio_tx_status_t
(
*
send
)(
ieee802154_packet_kind_t
kind
,
ieee802154_node_addr_t
dest
,
bool
use_long_addr
,
ieee802154_node_addr_t
dest
,
bool
use_long_addr
,
bool
wants_ack
,
bool
wants_ack
,
void
*
buf
,
unsigned
int
len
);
void
*
buf
,
unsigned
int
len
);
/**
/**
* @brief Define the function to be called back the radio transceiver
* @brief Define the function to be called back the radio transceiver
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment