Skip to content
Snippets Groups Projects
Commit fa64e933 authored by Koen Zandberg's avatar Koen Zandberg
Browse files

netdev: Represent RSSI as int16_t

parent 27361a5c
No related branches found
No related tags found
No related merge requests found
......@@ -245,7 +245,7 @@ typedef enum {
* May be different for certain radios.
*/
struct netdev_radio_rx_info {
uint8_t rssi; /**< RSSI of a received packet */
int16_t rssi; /**< RSSI of a received packet in dBm */
uint8_t lqi; /**< LQI of a received packet */
};
......
......@@ -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 */
uint8_t rssi; /**< rssi of received packet (optional) */
int16_t rssi; /**< rssi of received packet in dBm (optional) */
uint8_t lqi; /**< lqi of received packet (optional) */
} gnrc_netif_hdr_t;
......
......@@ -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 ", (unsigned) hdr->rssi);
printf("rssi: %d ", (signed) hdr->rssi);
printf("lqi: %u\n", (unsigned) hdr->lqi);
printf("flags: ");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment