kopia lustrzana https://github.com/helium/longfi-arduino
added windows driver step for readmes
rodzic
70fe74a7df
commit
6ed371a275
|
@ -30,6 +30,9 @@ Now you're done! Press the button and you should get a text message.
|
||||||
[B-L072Z-LRWAN1 Product Page](https://www.st.com/en/evaluation-tools/b-l072z-lrwan1.html)
|
[B-L072Z-LRWAN1 Product Page](https://www.st.com/en/evaluation-tools/b-l072z-lrwan1.html)
|
||||||
[B-L072Z-LRWAN1 User Manual](https://www.st.com/content/ccc/resource/technical/document/user_manual/group0/ac/62/15/c7/60/ac/4e/9c/DM00329995/files/DM00329995.pdf/jcr:content/translations/en.DM00329995.pdf)
|
[B-L072Z-LRWAN1 User Manual](https://www.st.com/content/ccc/resource/technical/document/user_manual/group0/ac/62/15/c7/60/ac/4e/9c/DM00329995/files/DM00329995.pdf/jcr:content/translations/en.DM00329995.pdf)
|
||||||
|
|
||||||
|
## Required Driver (Windows Only)
|
||||||
|
Download driver [here](https://www.st.com/en/development-tools/stsw-link009.html).
|
||||||
|
|
||||||
## Required Board Support & Library
|
## Required Board Support & Library
|
||||||
|
|
||||||
### Arduino Core for STM32L0
|
### Arduino Core for STM32L0
|
||||||
|
|
|
@ -14,6 +14,9 @@ This example demonstrates sending motion and environmental sensor data in [Cayen
|
||||||
[X-NUCLEO-IKS01A3 Product Page](https://www.st.com/en/ecosystems/x-nucleo-iks01a3.html)
|
[X-NUCLEO-IKS01A3 Product Page](https://www.st.com/en/ecosystems/x-nucleo-iks01a3.html)
|
||||||
[X-NUCLEO-IKS01A3 User Manual](https://www.st.com/resource/en/user_manual/dm00601501-getting-started-with-the-xnucleoiks01a3-motion-mems-and-environmental-sensor-expansion-board-for-stm32-nucleo-stmicroelectronics.pdf)
|
[X-NUCLEO-IKS01A3 User Manual](https://www.st.com/resource/en/user_manual/dm00601501-getting-started-with-the-xnucleoiks01a3-motion-mems-and-environmental-sensor-expansion-board-for-stm32-nucleo-stmicroelectronics.pdf)
|
||||||
|
|
||||||
|
## Required Driver (Windows Only)
|
||||||
|
Download driver [here](https://www.st.com/en/development-tools/stsw-link009.html).
|
||||||
|
|
||||||
## Required Arduino Libraries
|
## Required Arduino Libraries
|
||||||
|
|
||||||
From the Arduino IDE, open the Library Manager (Sketch->Include Library->Manage Libraries). In the search box, type the library name below and install the latest version.
|
From the Arduino IDE, open the Library Manager (Sketch->Include Library->Manage Libraries). In the search box, type the library name below and install the latest version.
|
||||||
|
@ -36,6 +39,19 @@ https://grumpyoldpizza.github.io/ArduinoCore-stm32l0/package_stm32l0_boards_inde
|
||||||
4. Search for "Tlera Corp STM32L0 Boards"
|
4. Search for "Tlera Corp STM32L0 Boards"
|
||||||
5. Select the newest version and install.
|
5. Select the newest version and install.
|
||||||
|
|
||||||
|
### Required Temporary Manual Fix
|
||||||
|
Until this fix has been released you will need to insert three lines of code in a library file.
|
||||||
|
Insert the following:
|
||||||
|
```
|
||||||
|
#ifndef NULL
|
||||||
|
#define NULL 0
|
||||||
|
#endif
|
||||||
|
```
|
||||||
|
Into the file found here:
|
||||||
|
linux: /home/{user}/Arduino/libraries/IBM_LMIC_framework/src/lmic
|
||||||
|
windows: Documents/Arduino/libraries/IBM_LMIC_framework/src/lmic
|
||||||
|
mac os: Documents/Arduino/libraries/IBM_LMIC_framework/src/lmic
|
||||||
|
|
||||||

|

|
||||||
## Programming (Uploading):
|
## Programming (Uploading):
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,9 @@
|
||||||
[B-L072Z-LRWAN1 Product Page](https://www.st.com/en/evaluation-tools/b-l072z-lrwan1.html)
|
[B-L072Z-LRWAN1 Product Page](https://www.st.com/en/evaluation-tools/b-l072z-lrwan1.html)
|
||||||
[B-L072Z-LRWAN1 User Manual](https://www.st.com/content/ccc/resource/technical/document/user_manual/group0/ac/62/15/c7/60/ac/4e/9c/DM00329995/files/DM00329995.pdf/jcr:content/translations/en.DM00329995.pdf)
|
[B-L072Z-LRWAN1 User Manual](https://www.st.com/content/ccc/resource/technical/document/user_manual/group0/ac/62/15/c7/60/ac/4e/9c/DM00329995/files/DM00329995.pdf/jcr:content/translations/en.DM00329995.pdf)
|
||||||
|
|
||||||
|
## Required Driver (Windows Only)
|
||||||
|
Download driver [here](https://www.st.com/en/development-tools/stsw-link009.html).
|
||||||
|
|
||||||
## Required Board Support & Library
|
## Required Board Support & Library
|
||||||
|
|
||||||
### Arduino Core for STM32L0
|
### Arduino Core for STM32L0
|
||||||
|
|
Ładowanie…
Reference in New Issue