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