lnlp / LMIC-node

LMIC-node | One example to rule them all. LMIC-node is an example LoRaWAN application for a node that can be used with The Things Network. It demonstrates how to send uplink messages, how to receive downlink messages, how to implement a downlink command and it provides useful status information. With LMIC-node it is easy to get a working node quickly up and running. LMIC-node supports many popular (LoRa) development boards out of the box. It uses the Arduino framework, the LMIC LoRaWAN library and PlatformIO.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Filename of LMIC_node.h mixed case

ernstdevreede opened this issue · comments

In LMIC_node.cpp the file is included by #include "lmic_node.h", but it is actually named LMIC_node.h.
Might work on systems insensitive to file name case, but not on Linux.I had to change the line to #include "LMIC_node.h"

Good catch!

I missed it because I'm using Windows which has a case insensitive file system.

B.t.w. LMIC-node.cpp and LMIC-node.h have hyphens in their name (not underscores),
the Board Support Files use underscores to match the board-id's.

The issue has been fixed.

Thanks for your feedback!