Loading...
Searching...
No Matches
lora.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2019 HAW Hamburg
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
18
19#include <stdint.h>
20
21#include "net/netdev.h"
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
30typedef struct {
31 int16_t rssi;
32 int8_t snr;
34
35#ifdef __cplusplus
36}
37#endif
38
Definitions low-level network driver interface.
Received LoRa packet status information.
Definition lora.h:30
int16_t rssi
RSSI of a received packet.
Definition lora.h:31
int8_t snr
S/N ratio.
Definition lora.h:32