1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/sx127x: remove netdev_sx127x_lora_packet_info structure

This commit is contained in:
Jose Alamos 2019-03-08 17:47:43 +01:00
parent dd2e0bb7a7
commit 2fd59067b4

View File

@ -31,15 +31,6 @@ extern "C" {
*/
extern const netdev_driver_t sx127x_driver;
/**
* @brief Received LoRa packet status information
*/
typedef struct netdev_radio_lora_packet_info {
uint8_t rssi; /**< RSSI of a received packet */
uint8_t lqi; /**< LQI of a received packet */
int8_t snr; /**< S/N ratio */
} netdev_sx127x_lora_packet_info_t;
#ifdef __cplusplus
}
#endif