User Activity

Posted on May 18, 2017 at 22:10In I-CUBE-LRWAN V1.1.0 RegionCommon.c there's a function that returns the next duty cycle delay as follows:TimerTime_t RegionCommonUpdateBandTimeOff( bool dutyCycle, Band_t* bands, uint8_t nbBands ){    TimerTime_t nex...
Posted on April 03, 2017 at 10:55In function OnMacStateCheckTimerEvent there is a line:LoRaMacParams.ChannelsDatarate = MAX( LoRaMacParams.ChannelsDatarate - 1, getPhy.Param.Value );The problem is that LoRaMacParams.ChannelsDatarate is an unsigned 8...
Posted on December 13, 2016 at 00:28So I'm running a program on an STM32L073 that puts the device into stop mode to minimise power consumption.After flashing the device (via ST-LinkV2) it starts up and enters stop mode where it is consuming around 1...
Posted on November 29, 2016 at 22:58There's a typo in all three Semtech driver files (which cause me a problem a day or so):/Drivers/BSP/sx1276mb1las.c/Drivers/BSP/sx1276mb2das.c/Drivers/BSP/sx1276mb1mas.cIn void SXIoDeInit ( void ) around line 120i...
Posted on March 09, 2015 at 19:05We are working on a commercial project making use of some STM32W108 modules, using the old HAL library (Not CMSIS) with Contiki. The ADC needs to be configured to use an external voltage reference. The STM32W108 dat...