2017-04-05 01:40 PM - last edited on 2023-08-16 02:37 AM by Amelie ACKERMANN
Posted on April 05, 2017 at 22:40
LoRa Discovery Kit
STM32L072 and LoRa Discovery Kit featuring Open LoRa module by Murata using STM32L072CZY6TR MCU
http://www.st.com/en/evaluation-tools/b-l072z-lrwan1.html
Features
The AT_Slave example (creates AT modem via ST-LINK VCP) is about 41KB in size
2017-12-19 06:19 AM
Hello Clive,
I need quite some help with this board. I am needing three USARTS and only two available where LPUART is also taken up by vcom. I found PA0 pin which is TX but no RX available for that. Any help on this?
2017-12-19 07:18 AM
Answered here:
2017-12-19 07:25 AM
Free help is somewhat limited, I can't carry others commercial projects.
If I wanted 3 USART from the Murata module, I would probably configure PA9/PA10 USART1, PA2/PA3 USART2, PA13/PA14 LPUART1 (instead of SWD debug). PA0 could be used by USART4_TX as a debug output.
The pin availability is rather constrained in this design. The SX1272 Shield on a NUCLEO-144 might provide broader options.
2017-12-20 03:09 AM
Hello everybody,
first of all well done clive for this topic, great initiative. We did a LoRaWan network with the same end-node (i.e
B-L072Z-LRWAN1) type CLASS-A. Then we used a multitech gateway (Conduit-AEP), Senet as 'network server' and Cayenne (mydevices) as 'Application server'.
This architecture will be used only during prototype period...
According to you, is it a good idea to bring back my experience about our LPWAN on this topic?
We have only start for 3 months, for example placement of the gateway has not been optimized despite this with our demonstrator (Minimum Viable Product) 'The-Proof-Of-LoRaWan-Concept' was succes.
2017-12-20 08:12 AM
You might want to blog post your own experiences.
2018-01-23 09:44 PM
By TCXO enable, you need to say TCXO_VCC? Is it?
2018-01-24 12:57 AM
Possibly, the forum view is broken so hard to see the context of the question. Default board configuration powers TCXO all the time.
2018-01-24 01:28 AM
Clive One wrote:
he forum view is broken so hard to see the context of the question.
Indeed.
Default board configuration powers TCXO all the time.
See the User Manual (which includes the schematic) for details ...
2018-02-20 06:47 PM
I require some guidance here folks.
My partner and I purchased a 915 MHz LoRaGo Port, mated it to a Raspberry Pi 3 and installed the Semtech
https://github.com/Lora-net/lora_gateway
and Semtechhttps://github.com/Lora-net/packet_forwarder
. We found that the json parser does not parse netsed objects, so we flattened local_conf.json and now our gateway shows up with registered status OK on the North American Semtech server.We also purchase two B-L072Z-LRWAN1 modules and prooved their operation using the ping pong code.
Now we have moved up to the End_Node code in the STM32CubeExpansion_LRWAN_V1.1.3 source tree.
We are using SW4STM32 as generally, the code compiles and works, but, not so this time.
The demonstration code is set up to run at 868 MHz.
What do we do, or what are we supposed to do to switch and compile for US 915 MHz operation?
I see the USE_SEMTECH_DEFAULT_CHANNEL_LINEUP == 1 in lora.c, and all the frequencies are 868 MHz.
Am I supposed to replace those entries below that linewith 915 MHz equivalents, and what would those frequencies be? US region is 64 channels and EU region is 8 channels.
If some kind soul would put me on the right track here, I would really appreciate it.
2018-02-20 06:57 PM
The way to switch to US915is pretty simple,
1)Right click on the project folder in Project explorer tab.
2) Go to Properties-> C/C++ General-> Paths and Symbols-> Symbols
3) Delete 'REGION_EU868' to 'REGION_US915', but I would recommend you to use 'REGION_US915_HYBRID'
You are ready to go.
NOTE:You shouldn't really make changes to the stack, as you suggested.