forked from lnlp/LMIC-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jannis Warnat
committed
Apr 2, 2024
1 parent
ed2b1c5
commit 2e5c9ec
Showing
5 changed files
with
200 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/******************************************************************************* | ||
* | ||
* File: lorawan-keys_example.h | ||
* | ||
* Function: Example for lorawan-keys.h required by LMIC-node. | ||
* | ||
* Copyright: Copyright (c) 2021 Leonel Lopes Parente | ||
* | ||
* Important ██ DO NOT EDIT THIS EXAMPLE FILE (see instructions below) ██ | ||
* | ||
* Decription: lorawan-keys.h defines LoRaWAN keys needed by the LMIC library. | ||
* It can contain keys for both OTAA and for ABP activation. | ||
* Only the keys for the used activation type need to be specified. | ||
* | ||
* It is essential that each key is specified in the correct format. | ||
* lsb: least-significant-byte first, msb: most-significant-byte first. | ||
* | ||
* For security reasons all files in the keyfiles folder (except file | ||
* lorawan-keys_example.h) are excluded from the Git(Hub) repository. | ||
* Also excluded are all files matching the pattern *lorawan-keys.h. | ||
* This way they cannot be accidentally committed to a public repository. | ||
* | ||
* Instructions: 1. Copy this file lorawan-keys_example.h to file lorawan-keys.h | ||
* in the same folder (keyfiles). | ||
* 2. Place/edit required LoRaWAN keys in the new lorawan-keys.h file. | ||
* | ||
******************************************************************************/ | ||
|
||
#pragma once | ||
|
||
#ifndef BEARER_TOKEN_H_ | ||
#define BEARER_TOKEN_H_ | ||
|
||
// Bearer token | ||
#define BEARER_TOKEN "<Bearer 123>" | ||
|
||
#endif // BEARER_TOKEN_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
Oops, something went wrong.