News from LoRaWAN Live Munich

This week saw the Munich edition of LoRaWAN Live, the event for the LoRaWAN community organized by the LoRa Alliance. This event rotates locations with each iteration, and this edition marked the return of the event to Europe.

As usual, the event was a professional gathering for alliance members who use these events to advance the evolution of the LoRaWAN standard. Participants included gateway manufacturers, device makers, and electronic component producers. Unfortunately, this focus, often comes at the expense, of non-member users and smaller players, who are less present compared to events like The Things Conference or larger, more general conferences, like IoT Solutions.

The main downside of this conference, in my opinion, was the low attendance of end users and newcomers. This is likely due to the high cost of attending the conference, not to mention the hotel prices during the Euro 2024 period.

Despite this, the conference featured a series of high-quality presentations on the development of use cases, market growth, and opportunities for in-depth discussions with technology experts. As always, it was a chance to meet new people and have engaging conversations.

So, what’s the state of the LoRaWAN ecosystem in 2024?

Continue reading

STM32WL and Flash memory usage in a LoRaWan / Sigfox use-case

The choice of an STM32WL microcontroller precludes the use of internal EEPROM, requiring the use of either an external EEPROM or the internal Flash memory for storing persistent data. The latter option is often favored in many designs (and modems) for cost reasons, though it comes with certain implications.

Using networks like LoRaWAN and Sigfox involves regular persistent writes. In the case of LoRaWAN, using OTAA (Over-The-Air Activation) mode, the devNonce must be recorded during each join procedure to ensure its uniqueness over network connections. Here, the number of persistent memory writes will theoretically be low (except for the battery end-of-life scenario discussed later). For an ABP (Activation By Personalization) connection, the situation differs significantly; the frame counter (FCnt) must be recorded so that it does not reset to zero in the event of a reboot. The same applies to Sigfox and its SeqId, which must increment with each communication. Without specific logic, LoRaWAN ABP and Sigfox will write to persistent memory with each data transmission.

While an EEPROM memory area has a lifespan of about 100,000 to 1,000,000 cycles (still potentially lower than the number of messages sent during the object’s lifecycle), a Flash memory area lasts only 10,000 writes, a number quickly reached in IoT communications. Therefore, using Flash as persistent storage requires a different approach compared to EEPROM in this context.

Continue reading

LoRa-E5 the Seeed Studio STM32-WL module

STM32-WL is the new ST family supporting LoRa and LoRaWAN in, not a single chip but a single die. I did not yet written on it (busy busy busy) but this technology is really interesting as it resulting on a simplified architecture with less chip in your circuit and at the end a lower power consumption, a lower footprint and a lower cost.

LoRa-E5 from Seeed studio is a module containing a STM32-WL circuit and the associated RF circuitry to simplify design based on such chip. Its public price is $9.9 for the module alone and you can also find different boards using it. This price is in the maker market but a bit high for a such system for mass production. This module contains the stronger STM32WL family chip, chip price is 3.71€ / 1000 on mouser. But the module includes all the circuitry around and facilitate your design.

The module is mainly maker market and comes with software to be immediately used by end-user within an Arduino or equivalent environment. It can also be re-flashed for being used with your own software in it. The cortex M4 in is is stronger than most of the Arduino platform.

Let’s see what this chip is and how to use it.

Continue reading

Code optimization with Stm32 Cube IDE

I’m using STM32 Cube IDE suite for STM32 development. This suite is based on Eclipse and GCC and it works quite well. In a recent project I was looking for some optimization I could apply on top of the basic existing settings to reduce the FLASH and RAM size.

In this post I want to share what I found and how it helped me.

Continue reading

IoT Decoded Podcast EP#6

IoT decoded #6, the monthly LPWAn podcast analyzing the IoT news and trends. Register to podcast : looking for feed subscription on bottom right of this web page. Or search for IoT Decoded on Apple Podcast.

This month is mainly about LoRaWan and TheThingsConference taken place in Amsterdam en of january.

We are talking about TTN number and coming Packet Broker. We also see what is going on with STM32WL and Murata 1SJ new integrated solutions. LoRaWan 2.4GHz is also a really interesting technology for operating solutions worldwide in domains like smart building/home and industry. And much more…

HTMicron iMPC the STM32-S2LP Sigfox SIP

HTMicron is a Brazilian company making System In Package (SIP) solution. During Sigfox Connect, they shown a STM32-SLP product and gave me an eval board for reviewing.

This type of solution is interesting as it is really compact and easy to add in your design: you get a powerful ARM chip from ST + all the electronic needed for a Sigfox global communication system. There is no need for an extra component around the chip, more than an antenna and a power supply.

The price for the SIP is going to be around $5.

Let see how to use that chip.

Continue reading

IoT Decoded Podcast EP#5

IoT decoded #5, the monthly LPWAn podcast analyzing the IoT news and trends. Register to podcast : looking for feed subscription on bottom right of this web page.

This month is about different news on LPWAn:

Yadom Murata CMWX1ZZABZ-091 breakout board under review

Murata CMWX1ZZABZ chip is actually famous for being a powerful LoRaWan multi zone module also able to communicate over Sigfox.

I’ve already published a technical post on Murata CMWX1ZZAB chip in a previous post. You will also find an implementation based on my IoT SDK. Yadom has just released a breakout board ( BRKABZ01) for this chip making it accessible for hackers and for easier prototyping.

This post is going to review this board and demo how to access it really quickly. Are you ready ?

Continue reading