forked from things-nyc/arduino-lmic
-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #199: Add wrapper for the config headers
- Loading branch information
1 parent
2f6cabe
commit 3d2c93e
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
Module: arduino_lmic_user_configuration.h | ||
Function: | ||
Get the Arduino-LMIC configuration into scope | ||
Copyright & License: | ||
See accompanying LICENSE file. | ||
Author: | ||
Terry Moore, MCCI November 2018 | ||
*/ | ||
#pragma once | ||
|
||
#ifndef _arduino_lmic_user_configuration_h_ | ||
# define _arduino_lmic_user_configuration_h_ | ||
|
||
# ifdef __cplusplus | ||
extern "C" { | ||
# endif | ||
|
||
# include "lmic/lmic_config_preconditions.h" | ||
|
||
# ifdef __cplusplus | ||
} | ||
# endif | ||
|
||
#endif /* _arduino_lmic_user_configuration_h_ */ |