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.
Merge pull request #200 from mcci-catena/issue199
Fix #199: Add wrapper for the config headers
- Loading branch information
Showing
4 changed files
with
35 additions
and
3 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
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
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_ */ |
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