Arduino LMIC 6.0.1
Arduino LoRaWAN(r) MAC in C
Loading...
Searching...
No Matches
arduino_lmic_lorawan_compliance.h
1/*
2
3Module: arduino_lmic_lorawan_compliance.h
4
5Function:
6 Arduino-LMIC C++ include file for LoRaWAN compliance
7
8Copyright & License:
9 See accompanying LICENSE file.
10
11Author:
12 Terry Moore, MCCI March 2019
13
14*/
15
16#pragma once
17
18#ifndef _ARDUINO_LMIC_LORAWAN_COMPLIANCE_H_
19# define _ARDUINO_LMIC_LORAWAN_COMPLIANCE_H_
20
21#ifdef __cplusplus
22extern "C"{
23#endif
24
25#include "lmic/lorawan_spec_compliance.h"
26
27#ifdef __cplusplus
28}
29#endif
30
31#endif /* _ARDUINO_LMIC_LORAWAN_COMPLIANCE_H_ */