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
29e4a1ba
Commit
29e4a1ba
authored
6 years ago
by
Joakim Nohlgård
Browse files
Options
Downloads
Patches
Plain Diff
gnrc_netif: Introduce GNRC_NETIF_HDR_FLAGS_MORE_DATA
parent
a05e2f22
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
sys/include/net/gnrc/netif/hdr.h
+15
-0
15 additions, 0 deletions
sys/include/net/gnrc/netif/hdr.h
with
15 additions
and
0 deletions
sys/include/net/gnrc/netif/hdr.h
+
15
−
0
View file @
29e4a1ba
...
...
@@ -70,6 +70,21 @@ extern "C" {
* this flag the same way it does @ref GNRC_NETIF_HDR_FLAGS_BROADCAST.
*/
#define GNRC_NETIF_HDR_FLAGS_MULTICAST (0x40)
/**
* @brief More data will follow
*
* @details This flag signals that this packet is part of a burst of packets.
* The link layer implementation can choose to translate this flag into
* frame header bits to tell the remote node that more traffic will
* follow shortly. The most direct use case for this flag is to set it
* for fragmented packets in duty cycled networks to tell the remote
* node to keep its radio turned on after receiving the first fragment.
*
* @see The corresponding bit in the IEEE 802.15.4 frame control field,
* @ref IEEE802154_FCF_FRAME_PEND
*/
#define GNRC_NETIF_HDR_FLAGS_MORE_DATA (0x10)
/**
* @}
*/
...
...
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