Giter Club home page Giter Club logo

cmwx1zzabz's People

Contributors

danielarnett avatar garfield38 avatar kriswiner avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

cmwx1zzabz's Issues

Cicada/LoraTile: Light values only update at beginning of sketch

I am trying to understand why the light values only update once at the beginning of the sketch. For subsequent updates all light values are reported as zero.

Beginning:
Red raw counts = 212
Green raw counts = 173
Blue raw counts = 93
White raw counts = 498
Inferred IR raw counts = 20

Red light power density = 2.21 microWatt/cm^2
Green light power density = 2.34 microWatt/cm^2
Blue light power density = 1.66 microWatt/cm^2

Ambient light intensity = 43.54 lux

Correlated Color Temperature = 6819.09 Kelvin

During subsequent updates

Red raw counts = 0
Green raw counts = 0
Blue raw counts = 0
White raw counts = 0
Inferred IR raw counts = 0

Red light power density = 0.00 microWatt/cm^2
Green light power density = 0.00 microWatt/cm^2
Blue light power density = 0.00 microWatt/cm^2

Ambient light intensity = 0.00 lux

Correlated Color Temperature = nan Kelvin

Documentation of lora and activity timing

can you provide better documentation for these parts of your code? the comments on the right may/may now match up with your documentation.. so just trying to understand the arguments here to these functions...

LoRaTimer.start(callbackLoRaTx, 300000, 600000);      //  10 minute period, delayed 5 minutes

NoMotionActivityTimer.start(callbackNoMotionActivity, 100000, 7200000);    // low  freq (two hours) timer
InMotionActivityTimer.start(callbackInMotionActivity, 100000, 7200000);    // high freq (one minute) timer

CAD detected

Hello,
I am using your boards (grasshopper and cricket) to develop an animal tracker by using the LoRa radio not LoRaWAN. To reduce the power consumption from the tracker I will like to use a low energy design provide by Semtech (AN1200.17) using the channel activity detection (CAD) of the radio. I am not very proficient in programming so perhaps I am missing something or doing something incorrect, but I am not able to detect the preambles. I have also asked this in GrumpyOldPizza/ArduinoCore-stm32l0 repository but without replies, so sorry for duplicate the question.
I am using two simple programs, one to send a message with a long preamble (10 seconds) and another implementing the CAD function;
Preamble send
`#include "LoRaRadio.h"
#define myLed 13

void setup( void )
{
Serial.begin(115200);
pinMode(myLed, OUTPUT);
digitalWrite(myLed, LOW);
LoRaRadio.begin(865200000);
LoRaRadio.setFrequency(865200000);
LoRaRadio.setTxPower(14);
LoRaRadio.setPreambleLength (300);
LoRaRadio.setBandwidth(LoRaRadio.BW_125);
LoRaRadio.setSpreadingFactor(LoRaRadio.SF_12);
LoRaRadio.setCodingRate(LoRaRadio.CR_4_5);
LoRaRadio.setLnaBoost(true);
delay (2000);
}

void loop( void )
{
unsigned long previous = millis ();
digitalWrite(myLed, HIGH);
LoRaRadio.beginPacket();
LoRaRadio.write(1);
LoRaRadio.endPacket();
while (LoRaRadio.busy());
unsigned long last = millis ();
last -= previous;
Serial.println (last);
digitalWrite(myLed, LOW);
delay(3000);
}`

CAD
`#include "LoRaRadio.h"
bool CadDone;
bool CadDetected;

void setup( void ){
Serial.begin(115200);
LoRaRadio.begin(865200000);
LoRaRadio.setFrequency(865200000);
LoRaRadio.setTxPower(14);
LoRaRadio.setBandwidth(LoRaRadio.BW_125);
LoRaRadio.setSpreadingFactor(LoRaRadio.SF_12);
LoRaRadio.setCodingRate(LoRaRadio.CR_4_5);
LoRaRadio.setLnaBoost(true);
LoRaRadio.onCad(CADcallback);
}

void loop( void ){
CadDone = false;
CadDetected = false;
Serial.print ("Caddone: "); Serial.println (CadDone);
unsigned long cadinit = millis ();
LoRaRadio.cad ();
while (LoRaRadio.busy());
unsigned long cadend = millis ();
Serial.print ("Caddone: "); Serial.println (CadDone);
Serial.print ("CadDetected: "); Serial.println (CadDetected);
cadend -= cadinit;
Serial.print ("Cad length: "); Serial.println (cadend);
Serial.println ();
delay (1500);
}

void CADcallback (void){
CadDone = true;
CadDetected = LoRaRadio.cadDetected ();
}`

I am quite that the CAD is executing because the the caend-cadinit lenght is the same as the estimated time in the LoRa calculator by Semtech but the program is not able to detect the preambles by using LoRaRadio.cadDetected () function.
Any help would be greatly welcome, thanks in advance!

Sigfox

The Murata modules has Sigfox support. Is it at all possible to do Sigfox on the Cricket?

SPIFlash.h not found...

when I compiled GitHub example LoRaSensorTilev.05 the compiler says SPIFlash.h not found.... I appears the fix is to just add "Class" to make the include be "SPIFlashClass.h ..

Is this correct?

B-L072Z-LRWAN1 Arduino Sketch Uploading Error

I'm having issues getting the Arduino sketch to upload. I followed the instructions and my device shows up as COM( B-L072Z-LRWAN1). Here is the error report I'm seeing:


GNU MCU Eclipse 32-bits Open On-Chip Debugger 0.10.0+dev-00487-gaf359c18 (2018-05-12-15:41)
Licensed under GNU GPL v2
For bug reports, read
http://openocd.org/doc/doxygen/bugs.html
debug_level: 2
adapter speed: 300 kHz
adapter_nsrst_delay: 100
Info : The selected transport took over low-level target control. The results might differ compared to plain JTAG/SWD
none separate
srst_only separate srst_nogate srst_open_drain connect_assert_srst
Info : Unable to match requested speed 300 kHz, using 240 kHz
Info : Unable to match requested speed 300 kHz, using 240 kHz
Info : clock speed 240 kHz
Info : STLINK v2 JTAG v28 API v2 SWIM v18 VID 0x0483 PID 0x374B
Info : using stlink api v2
Info : Target voltage: 3.237647
Info : STM32L072.cpu: hardware has 4 breakpoints, 2 watchpoints
Info : Listening on port 3333 for gdb connections
Info : Unable to match requested speed 300 kHz, using 240 kHz
Info : Unable to match requested speed 300 kHz, using 240 kHz
adapter speed: 240 kHz
Error: timed out while waiting for target halted

the selected serial port


Any help would be appreciated.

LORAWAN_DEFAULT_PORT override

Evening!
Thanks for the great job!
Two questions (GNAT):

  1. Is it possible to override in the sketch, not the library LORAWAN_DEFAULT_PORT ?
  2. The NoMotionActivityTimer and InMotionActivityTimer cycles seem to have no effect when the GNAT is powered by USB, normal?
    Great device !

AT COMANDS

Hi Kriss i am working with gnat, and I wanna know about parameters like SNR and RSSI, I read that I can do this with at commands if you have something about this and you can help me I will be gratefull with you. Because for COVID-19 I don´t have access to measurement equipment to evaluated these parameters, and I need to test the service of network.

I have another problem with SF, I´m working whit a dragino LG02 gateway, when I change the parameter to reach a higher rank, I don´t recieve anithing, I don´t know why it happens, I change the paramether in both devices

thank you Kris

issue with PB7

Hi,
i am trying to access the GPIO PB7
declaring the pin as -
int led =D4;
pinMode(D4,OUTPUT);
while compiling the code in arduino ide it is giving me error "D4 out of scope"
what am i doing wrong here?

GNSS always busy--can't progress

I'm trying your simple GNSS tests/examples, and finding that the first loop of while (GNSS.busy()) { } never exits. I checked the source and found that it just returns the value of gnss_busy(), but can't find any source for that--I assume it's part of the GPS chip? Regardless, do you know what might be causing it never not to be "busy"?

Downlink Data Location and Receive Window Time

I am using a grasshopper board to send data to TTN whenever i press a button.
The uplink and downlink packets gets incremented everytime i send an uplink packet.

I want to know what is being send as downlink, where it is stored, how to read that downlink message and i know how to use Node Red with Arduino based end nodes to send specific downlink packets, is there any way in which i can send a custom downlink?

Please bear with me as i am just starting with LoRaWAN and grasshopper board.

Firmware LoRaSensorTile.v05

Hello kris.

I wanna know if I can update the firmware of the LoRaSensorTile.v05 to program in python or another language. Because arduino ide consume more resources

Question: Is it possible to change the callback delay?

I am working with the Grasshopper development board. I am using callbacks for uplinks using the example code in this library. This works well, but the callback delay seems to be exactly 3 seconds. I do not know if this is hardcoded somewhere, or if this is actually the time it takes to complete what is necessary to reach the gateway. I am very close to the gateway. Is it possible to shorten this callback time? I am trying to send burst messages and to shorten the time the STM32L0 and antenna are on. I do not know the best way to do so with the code and any help would be greatly appreciated! Thank you!

No Wire.endTransmission() needed after Wire.requestFrom().

In the file "CMWX1ZZABZ/LoRaSensorTile/LoRaSensorTile.v05/VEML6040.cpp", in the function "getRGBWdata()" there is a Wire.endTransmission() after the Wire.requestFrom() in line 41 at the moment. That is not needed, it can be removed.

The Wire.endTransmission() should only be use when writing data.

txPower and DataRate settings

I'd like to modify setDataRate and setTxPower. Could you document valid range of values in // Configure LoRaWAN connection? I tried hunting down the forks and its not clear.. Here's what I found

Valid DataRate

  • LoRaWAN US or AU:
  • 0: SF = 10, BW = 125 kHz, BitRate = 980 bps
  • 1: SF = 9, BW = 125 kHz, BitRate = 1760 bps
  • 2: SF = 8, BW = 125 kHz, BitRate = 3125 bps
  • 3: SF = 7, BW = 125 kHz, BitRate = 5470 bps

Valid TxPower

I believe its expressed in dB
0 to 20 (eu) ... maybe 0 to 14 (us)

Let me know!

Issue with PA12

Hi there. I am having an issue using a B-L072Z-LRWAN1 board and wanted to use PA12 as an output pin. I have checked variant cpp and added (in the digital block - position 3) the line:

{ GPIOA, STM32L0_GPIO_PIN_MASK(STM32L0_GPIO_PIN_PA12), STM32L0_GPIO_PIN_PA12, (PIN_ATTR_EXTI), PWM_INSTANCE_NONE, PWM_CHANNEL_NONE, ADC_CHANNEL_NONE },

I have alse changed:

void initVariant()
{
    //CMWX1ZZABZ_Initialize(STM32L0_GPIO_PIN_PA12, STM32L0_GPIO_PIN_PA11);
CMWX1ZZABZ_Initialize(STM32L0_GPIO_PIN_NONE, STM32L0_GPIO_PIN_PA11);

}

Then in variant.h I have added:
#define PIN_D3 (03ul)
but with no luck.

On the other hand, I have done the same for PA5 (as Analog1 - A1) and it worked fine for that pin.

Is there anything I am missing?
Thank you

STM32L0.sleep() and STM32L0.stop() not working on B-L072Z-LRWAN1

I'm using a B-L072Z-LRWAN1 but methods sleep() and stop() of the STM32L0 library seems to be not working. It compiles without error, but the programs just keeps running no matter what value you put into the methods.

My code:

#include <STM32L0.h>
#include <Adafruit_SHT31.h>
#include <Adafruit_TSL2591.h>
#include "LoRaWAN.h"

const char *appEui = "XXXXXXXXXXXXXXXX";
const char *appKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
const char *devEui = "XXXXXXXXXXXXXXXX";

#define LPP_DATATYPE_TEMPERATURE 0x67
#define LPP_DATATYPE_HUMIDITY 0x68
#define LPP_DATATYPE_ILLUMINANCE 0x65

Adafruit_SHT31 sht31;
Adafruit_TSL2591 tsl = Adafruit_TSL2591(2591);

void setup( void )
{

    Serial.begin(115200);
    sht31.begin(0x44);
    
    tsl.begin();
    tsl.setGain(TSL2591_GAIN_MED);
    tsl.setTiming(TSL2591_INTEGRATIONTIME_100MS);
    
  
    LoRaWAN.begin(EU868);
    LoRaWAN.addChannel(3, 867100000, 0, 5);
    LoRaWAN.addChannel(4, 867300000, 0, 5);
    LoRaWAN.addChannel(5, 867500000, 0, 5);
    LoRaWAN.addChannel(6, 867700000, 0, 5);
    LoRaWAN.addChannel(7, 867900000, 0, 5);
    LoRaWAN.setDataRate(5);
    LoRaWAN.joinOTAA(appEui, appKey, devEui);
}

void loop( void )
{
    
    uint16_t temp = (uint16_t) (sht31.readTemperature() * 10);
    uint16_t rh = (uint16_t) (sht31.readHumidity() * 2);
    Serial.println("Temp: "+String(temp/10));
    Serial.println("RH:   "+String(rh/2));

    uint32_t lum = tsl.getFullLuminosity();
    uint16_t ir, full;
    ir = lum >> 16;
    full = lum & 0xFFFF;
    uint16_t lux = tsl.calculateLux(full, ir);
    Serial.println("Lux:   "+String(lux));

    if (!LoRaWAN.busy() && LoRaWAN.joined())
    {
        int lpp_channel = 0;
        LoRaWAN.beginPacket();
        LoRaWAN.write(lpp_channel++);
        LoRaWAN.write(LPP_DATATYPE_TEMPERATURE);
        LoRaWAN.write((temp >> 8) & 0xFF);
        LoRaWAN.write(temp & 0xFF);
        LoRaWAN.write(lpp_channel++);
        LoRaWAN.write(LPP_DATATYPE_HUMIDITY);
        LoRaWAN.write(rh & 0xFF);
        LoRaWAN.write(lpp_channel++);
        LoRaWAN.write(LPP_DATATYPE_ILLUMINANCE);
        LoRaWAN.write((lux >> 8) & 0xFF);
        LoRaWAN.write(lux & 0xFF);
        LoRaWAN.endPacket();
    }

    STM32L0.stop(5000);
}

LongCricket BME280 odd data

This is up and running successfully, but I am getting possibly wrong data from the BME280. I have the device transmitting every minute for now. The values a) look wrong and b) don't seem to change much/at all over time. GPS looks good. The analog port is returning a value close to 0.00 .. is that right or should it be the battery voltage? I've attached a data dump for the last hr from cayenne .. worth saying that the data from TTN is the data ending up in Cayenne .. last transmission 2 mins ago ..

{
"analog_in_4": 0.02,
"barometric_pressure_3": 1013.3,
"gps_5": "map[altitude:35.51 latitude:51.4571 longitude:-0.2192]",
"relative_humidity_2": 65,
"temperature_1": 18.8
}

The device is in free air, not enclosed.

At the moment external temp is circa 13.5 degC, humidity at 92% (rainy).

Overnight the device was reporting 20 degC all night - i.e. incorrect and not changing.

Any pointers please? Thanks!

9915c234-d25d-4801-8af3-39225d9adfbc.xlsx

You can get at the live data via Cayenne here https://cayenne.mydevices.com/shared/5d060b3489fa9c4e9001cf87

Cricket Asset Tracker Compilation Error (Arduino 1.8.5)

Hello:

AssetTracker_Cricket.v02 doesn't compile with the errors

AssetTracker_Cricket.v02:717: error: 'class GNSSClass' has no member named 'wakeup'
'class GNSSClass' has no member named 'sleep'

Best Regards
Manny

Here is the verbose output:
Arduino: 1.8.5 (Windows 10), TD: 1.42, Board: "Cricket-L082CZ, Serial, None, 32 MHz, Smallest Code"

C:\Arduino1.8.5\arduino-builder -dump-prefs -logger=machine -hardware C:\Arduino1.8.5\hardware -hardware C:\Users\etsar\AppData\Local\Arduino15\packages -tools C:\Arduino1.8.5\tools-builder -tools C:\Arduino1.8.5\hardware\tools\avr -tools C:\Users\etsar\AppData\Local\Arduino15\packages -built-in-libraries C:\Arduino1.8.5\libraries -libraries C:\Users\etsar\Documents\Arduino\libraries -fqbn=TleraCorp:stm32l0:Cricket-L082CZ:usb=cdc,dosfs=none,speed=32,opt=os -vid-pid=0X1209_0X6664 -ide-version=10805 -build-path C:\Users\etsar\AppData\Local\Temp\arduino_build_598570 -warnings=none -build-cache C:\Users\etsar\AppData\Local\Temp\arduino_cache_537538 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.arm-none-eabi-gcc.path=C:\Users\etsar\AppData\Local\Arduino15\packages\arduino\tools\arm-none-eabi-gcc\4.8.3-2014q1 -verbose C:\Arduino1.8.5\libraries\CMWX1ZZABZ\CricketAssetTracker\AssetTracker_Cricket.v02\AssetTracker_Cricket.v02.ino
C:\Arduino1.8.5\arduino-builder -compile -logger=machine -hardware C:\Arduino1.8.5\hardware -hardware C:\Users\etsar\AppData\Local\Arduino15\packages -tools C:\Arduino1.8.5\tools-builder -tools C:\Arduino1.8.5\hardware\tools\avr -tools C:\Users\etsar\AppData\Local\Arduino15\packages -built-in-libraries C:\Arduino1.8.5\libraries -libraries C:\Users\etsar\Documents\Arduino\libraries -fqbn=TleraCorp:stm32l0:Cricket-L082CZ:usb=cdc,dosfs=none,speed=32,opt=os -vid-pid=0X1209_0X6664 -ide-version=10805 -build-path C:\Users\etsar\AppData\Local\Temp\arduino_build_598570 -warnings=none -build-cache C:\Users\etsar\AppData\Local\Temp\arduino_cache_537538 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.arm-none-eabi-gcc.path=C:\Users\etsar\AppData\Local\Arduino15\packages\arduino\tools\arm-none-eabi-gcc\4.8.3-2014q1 -verbose C:\Arduino1.8.5\libraries\CMWX1ZZABZ\CricketAssetTracker\AssetTracker_Cricket.v02\AssetTracker_Cricket.v02.ino
Using board 'Cricket-L082CZ' from platform in folder: C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7
Using core 'arduino' from platform in folder: C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7
Detecting libraries used...
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\AssetTracker_Cricket.v02.ino.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\AssetTracker_Cricket.v02.ino.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\AssetTracker_Cricket.v02.ino.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\AssetTracker_Cricket.v02.ino.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\AssetTracker_Cricket.v02.ino.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\AssetTracker_Cricket.v02.ino.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\AssetTracker_Cricket.v02.ino.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\AssetTracker_Cricket.v02.ino.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\AssetTracker_Cricket.v02.ino.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\BMA280.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\BME280.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\SPIFlash.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src\STM32L0.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src\LoRaWAN.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src\TimerMillis.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src\GNSS.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src\utility\gnss_core.c" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src\RTC.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src\Wire.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src\SPI.cpp" -o "nul"
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src\CayenneLPP.cpp" -o "nul"
Generating function prototypes...
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -w -x c++ -E -CC -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\AssetTracker_Cricket.v02.ino.cpp" -o "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\preproc\ctags_target_for_gcc_minus_e.cpp"
"C:\Arduino1.8.5\tools-builder\ctags\5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\preproc\ctags_target_for_gcc_minus_e.cpp"
Compiling sketch...
"C:\Users\etsar\AppData\Local\Arduino15\packages\adafruit\tools\arm-none-eabi-gcc\4.8.3-2014q1/bin/arm-none-eabi-g++" -mcpu=cortex-m0plus -mthumb -c -g -Os -w -std=gnu++11 -ffunction-sections -fdata-sections -fno-threadsafe-statics -nostdlib -fno-rtti -fno-exceptions -MMD -D_SYSTEM_CORE_CLOCK_=32000000L -DARDUINO=10805 -DARDUINO_STM32L0_CRICKET -DARDUINO_ARCH_STM32L0 -DSTM32L082xx -march=armv6-m -mthumb -mabi=aapcs -mfloat-abi=soft -fsingle-precision-constant -DUSB_VID=0x1209 -DUSB_PID=0x6664 -DUSB_DID=0xffff '-DUSB_MANUFACTURER="Tlera Corporation"' '-DUSB_PRODUCT="Cricket"' '-DUSB_TYPE=USB_TYPE_CDC' -DDOSFS_SDCARD=0 -DDOSFS_SFLASH=0 "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/CMSIS/Device/ST/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7/system/STM32L0xx/Include" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\cores\arduino" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\variants\Cricket-L082CZ" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI\src" "-IC:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP\src" "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\AssetTracker_Cricket.v02.ino.cpp" -o "C:\Users\etsar\AppData\Local\Temp\arduino_build_598570\sketch\AssetTracker_Cricket.v02.ino.cpp.o"
C:\Arduino1.8.5\libraries\CMWX1ZZABZ\CricketAssetTracker\AssetTracker_Cricket.v02\AssetTracker_Cricket.v02.ino: In function 'void loop()':

AssetTracker_Cricket.v02:388: error: 'class GNSSClass' has no member named 'sleep'

         GNSS.sleep(); // once we have a good 3D location fix put CAM M8Q to sleep

              ^

C:\Arduino1.8.5\libraries\CMWX1ZZABZ\CricketAssetTracker\AssetTracker_Cricket.v02\AssetTracker_Cricket.v02.ino: In function 'void callbackNoMotionActivity()':

AssetTracker_Cricket.v02:708: error: 'class GNSSClass' has no member named 'wakeup'

GNSS.wakeup();

    ^

C:\Arduino1.8.5\libraries\CMWX1ZZABZ\CricketAssetTracker\AssetTracker_Cricket.v02\AssetTracker_Cricket.v02.ino: In function 'void callbackInMotionActivity()':

AssetTracker_Cricket.v02:717: error: 'class GNSSClass' has no member named 'wakeup'

GNSS.wakeup();

     ^

Using library STM32L0 at version 1.0 in folder: C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\STM32L0
Using library LoRaWAN at version 1.1.0 in folder: C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\LoRaWAN
Using library TimerMillis at version 1.0 in folder: C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\TimerMillis
Using library GNSS at version 1.0 in folder: C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\GNSS
Using library RTC at version 1.0 in folder: C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\RTC
Using library Wire at version 1.0 in folder: C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\Wire
Using library SPI at version 1.0 in folder: C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\SPI
Using library CayenneLPP at version 1.0.0 in folder: C:\Users\etsar\AppData\Local\Arduino15\packages\TleraCorp\hardware\stm32l0\0.0.7\libraries\CayenneLPP
exit status 1
'class GNSSClass' has no member named 'sleep'

Gnat questions

Hi, thank you for your amazing work! I have 2 questions about Gnat board.

  1. Do you sell the board? I couldn't find it on Tindie.
  2. Do you have the schematic of the board?

Thank you.

GNAT STM32 bootloader/usb driver problem

I connected my new gnat to my computer just fine and compiled a new example sketch from the github. I was able to select the Cricket board from the board manager, correct com port, and load the new sketch just fine. After the sketch loaded I went to open the serial monitor and arduino ide said the com port wasn't found. If I look in my device manager (win 10 64 bit) I only see the STM32 BOOTLOADER showing up under USB devices. No entry showing up in the Ports section. I did the reset option (hold down boot and toggle reset). This doesn't fix the issue. I can hook up my cicada/loratile device and it shows up just fine. any other troubleshooting things to try to get the com port back?

xxMhz timer not working.

I want to use timer of 1Mhz ~ 8Mhz.
So I made code for below.


#include "wiring_private.h"

static stm32l0_timer_t stm32l0_clk;

byte led = 0;

static void clk_event_callback(void *context, uint32_t events)
{
(void)context;
(void)events;

if(led) led = 0;
else    led = 1;

digitalWrite(13, led);

}

void setup ()
{
pinMode(13, OUTPUT);

stm32l0_timer_create(&stm32l0_clk, STM32L0_TIMER_INSTANCE_TIM22, STM32L0_TONE_IRQ_PRIORITY, 0);
stm32l0_timer_enable(&stm32l0_clk, 2 -1, STM32L0_TIMER_OPTION_COUNT_PRELOAD, clk_event_callback, NULL, STM32L0_TIMER_EVENT_PERIOD);
stm32l0_timer_start(&stm32l0_clk, 2 - 1, false);

}

void loop ()
{
}

I chagned prescaler and period, but timer is not changed that fast over 238khz.
Give me some advice.

advice on ttn OTAA integration?

I compiled the sketch just fine for the LoRa tile project (after updating SPIFlash.h to SPIFlashClass.h), but having issues with TTN. I've got the right keys entered in the sketch and the node joins OK (as shown in the device Application data log), but no payload data is delivered to my application. I can see the data payload coming in to my gateway on TTN, but not making its way to the application. btw.. The Framecounter is not incrementing above 0. I can ask on TTN if that's more appropriate!

How Can I receive LoRa Data?

Do you have Example code?
TX is so good.
but RX is not good.

I use below code.
but can't enter.

int packetSize = LoRaWAN.parsePacket();
{
}

Any ideas?

Hang on LoRaWAN.joinOTAA(appEui, appKey, devEui);

Hi guys,

Just getting started with this core and im having a problem with the LoRaWANtest.ino for the grasshopper.

When i put in my keys and run the example it will hang on join. I have verified this with LED blinks.

Where in the code should i start digging to diagnose this? OR what am i missing?

Note that I am not actually using a grasshopper but the ST dev board. B-L072Z-LRWAN1. I have reconfigured the board to operate in standalone mode so it should work the same as a grasshopper.

lorawan mac version

Hello,
how do you find your lorawan mac version .
I am using cmwx1zzabz-078 , not able to loacte the orawan version
Can you please help me locate it ?
thanks in advance.

BME280 using spi

Hi,
i am new to arduino i have created a board inspired from your design .
i want to read bme280 sensor value using spi , do you have any support for it?
ps: i dont have much clue in spi programming.

LoRaSensorTile.v05 hangs after a few iterations

Hello Kris,

I have been testing LoRaSensorTile.v05 example by simply changing the Lora frequency for EU and the appEui, appKey and devEui.

I am unable to keep things running for like more than 3 iterations max. Then the Tile hangs or crashes. Does not wakeup with movement or anything and requires a reboot to get going again. My gut feeling is that its something on the Lora side but I need to do some more testing.
Have you had this code running for more than a few hours ? If so then I dont understand.

Thanks,
Serge

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.