blob: d0423a3df7fdb13258788ce07c8fa02877dfcfc3 (
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
|
/*
Module: lmic.h
Function:
Deprecated C++ top-level include file (use <arduino_lmic.h> instead).
Copyright & License:
See accompanying LICENSE file.
Author:
Terry Moore, MCCI November 2018
Note:
This header file is deprecated and is included for
transitional purposes. It's deprecated because it's
confusing to have src/lmic.h (this file) and src/lmic/lmic.h
(the API file for the C library). We can't take it out
yet, because it would inconvenience the world, but
we can hope that someday it will wither away (on a major
version bump).
Please don't add any new functionality in this file;
it is just a wrapper for arduino_lmic.h.
*/
#include "arduino_lmic.h"
/* end of file */
|