Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaus K Wilting committed Jun 19, 2020
1 parent 8f46fea commit c51a45c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/loraconf.sample.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static const u4_t DEVADDR =
0x00000000; // <-- Change this address for every node!

// set additional ABP parameters in loraconf_abp.cpp
void setABPParamaters();
void setABPParameters();

#endif

Expand Down
2 changes: 1 addition & 1 deletion src/loraconf_abp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
*********************************************************************/

void setABPParamaters() {
void setABPParameters() {

/** **************************************************************
* ************************************************************* */
Expand Down
3 changes: 2 additions & 1 deletion src/lorawan.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Basic Config

#if (HAS_LORA)
#include "lorawan.h"

Expand Down Expand Up @@ -319,7 +320,7 @@ esp_err_t lora_stack_init(bool do_join) {
memcpy_P(nwkskey, NWKSKEY, sizeof(NWKSKEY));
LMIC_setSession(NETID, DEVADDR, nwkskey, appskey);
// These parameters are defined as macro in loraconf.h
setABPParamaters();
setABPParameters();
#else
// Start join procedure if not already joined,
// lora_setupForNetwork(true) is called by eventhandler when joined
Expand Down

0 comments on commit c51a45c

Please sign in to comment.