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
fa64e933
Commit
fa64e933
authored
7 years ago
by
Koen Zandberg
Browse files
Options
Downloads
Patches
Plain Diff
netdev: Represent RSSI as int16_t
parent
27361a5c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
drivers/include/net/netdev.h
+1
-1
1 addition, 1 deletion
drivers/include/net/netdev.h
sys/include/net/gnrc/netif/hdr.h
+1
-1
1 addition, 1 deletion
sys/include/net/gnrc/netif/hdr.h
sys/net/gnrc/netif/hdr/gnrc_netif_hdr_print.c
+1
-1
1 addition, 1 deletion
sys/net/gnrc/netif/hdr/gnrc_netif_hdr_print.c
with
3 additions
and
3 deletions
drivers/include/net/netdev.h
+
1
−
1
View file @
fa64e933
...
...
@@ -245,7 +245,7 @@ typedef enum {
* May be different for certain radios.
*/
struct
netdev_radio_rx_info
{
u
int
8
_t
rssi
;
/**< RSSI of a received packet */
int
16
_t
rssi
;
/**< RSSI of a received packet
in dBm
*/
uint8_t
lqi
;
/**< LQI of a received packet */
};
...
...
This diff is collapsed.
Click to expand it.
sys/include/net/gnrc/netif/hdr.h
+
1
−
1
View file @
fa64e933
...
...
@@ -85,7 +85,7 @@ typedef struct {
uint8_t
dst_l2addr_len
;
/**< length of l2 destination address in byte */
kernel_pid_t
if_pid
;
/**< PID of network interface */
uint8_t
flags
;
/**< flags as defined above */
u
int
8
_t
rssi
;
/**< rssi of received packet (optional) */
int
16
_t
rssi
;
/**< rssi of received packet
in dBm
(optional) */
uint8_t
lqi
;
/**< lqi of received packet (optional) */
}
gnrc_netif_hdr_t
;
...
...
This diff is collapsed.
Click to expand it.
sys/net/gnrc/netif/hdr/gnrc_netif_hdr_print.c
+
1
−
1
View file @
fa64e933
...
...
@@ -23,7 +23,7 @@ void gnrc_netif_hdr_print(gnrc_netif_hdr_t *hdr)
char
addr_str
[
GNRC_NETIF_HDR_L2ADDR_PRINT_LEN
];
printf
(
"if_pid: %u "
,
(
unsigned
)
hdr
->
if_pid
);
printf
(
"rssi: %
u
"
,
(
un
signed
)
hdr
->
rssi
);
printf
(
"rssi: %
d
"
,
(
signed
)
hdr
->
rssi
);
printf
(
"lqi: %u
\n
"
,
(
unsigned
)
hdr
->
lqi
);
printf
(
"flags: "
);
...
...
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