jgromes / RadioLib

Universal wireless communication library for embedded devices
https://jgromes.github.io/RadioLib/
MIT License
1.47k stars 369 forks source link

Cubecell HTCC-AB02 compiling error #397

Closed sheggy012 closed 2 years ago

sheggy012 commented 2 years ago
/*
   RadioLib SX126x Transmit Example
   This example transmits packets using SX1262 LoRa radio module.
   Each packet contains up to 256 bytes of data, in the form of:
    - Arduino String
    - null-terminated char array (C-string)
    - arbitrary binary data (byte array)
   Other modules from SX126x family can also be used.
   For default module settings, see the wiki page
   https://github.com/jgromes/RadioLib/wiki/Default-configuration#sx126x---lora-modem
   For full API reference, see the GitHub Pages
   https://jgromes.github.io/RadioLib/
*/
#include "Arduino.h"
#define RADIOLIB_SOFTWARE_SERIAL_UNSUPPORTED
#define RADIOLIB_HARDWARE_SERIAL_PORT Serial1
#define __ASR6501__
#include <RadioLib.h>

// SX1262 has the following connections:
// NSS pin:   10
// DIO1 pin:  2
// NRST pin:  3
// BUSY pin:  9
SX1262 radio = new Module(10, 2, 3, 9);

// or using RadioShield
// https://github.com/jgromes/RadioShield
//SX1262 radio = RadioShield.ModuleA;

void setup() {
  Serial.begin(9600);

  // initialize SX1262 with default settings
  Serial.print(F("[SX1262] Initializing ... "));
  int state = radio.begin();
  if (state == ERR_NONE) {
    Serial.println(F("success!"));
  } else {
    Serial.print(F("failed, code "));
    Serial.println(state);
    while (true);
  }

  // some modules have an external RF switch
  // controlled via two pins (RX enable, TX enable)
  // to enable automatic control of the switch,
  // call the following method
  // RX enable:   4
  // TX enable:   5
  /*
    radio.setRfSwitchPins(4, 5);
  */
}

void loop() {
  Serial.print(F("[SX1262] Transmitting packet ... "));

  // you can transmit C-string or Arduino string up to
  // 256 characters long
  // NOTE: transmit() is a blocking method!
  //       See example SX126x_Transmit_Interrupt for details
  //       on non-blocking transmission method.
  int state = radio.transmit("Hello World!");

  // you can also transmit byte array up to 256 bytes long
  /*
    byte byteArr[] = {0x01, 0x23, 0x45, 0x56, 0x78, 0xAB, 0xCD, 0xEF};
    int state = radio.transmit(byteArr, 8);
  */

  if (state == ERR_NONE) {
    // the packet was successfully transmitted
    Serial.println(F("success!"));

    // print measured data rate
    Serial.print(F("[SX1262] Datarate:\t"));
    Serial.print(radio.getDataRate());
    Serial.println(F(" bps"));

  } else if (state == ERR_PACKET_TOO_LONG) {
    // the supplied packet was longer than 256 bytes
    Serial.println(F("too long!"));

  } else if (state == ERR_TX_TIMEOUT) {
    // timeout occured while transmitting packet
    Serial.println(F("timeout!"));

  } else {
    // some other error occurred
    Serial.print(F("failed, code "));
    Serial.println(state);

  }

  // wait for a second before transmitting again
  delay(1000);
}

Hardware setup Heltec Cubecell HTCC AB-02 unmodified

Debug mode output


C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -hardware C:\Users\Sergej\AppData\Local\Arduino15\packages -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -tools C:\Users\Sergej\AppData\Local\Arduino15\packages -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Sergej\Documents\Arduino\libraries -fqbn=CubeCell:CubeCell:CubeCell-BoardPlus:LORAWAN_REGION=6,LORAWAN_CLASS=0,LORAWAN_DEVEUI=0,LORAWAN_NETMODE=0,LORAWAN_ADR=0,LORAWAN_UPLINKMODE=0,LORAWAN_Net_Reserve=0,LORAWAN_AT_SUPPORT=0,LORAWAN_RGB=1,LORAWAN_DebugLevel=0 -ide-version=10812 -build-path C:\Users\Sergej\AppData\Local\Temp\arduino_build_447486 -warnings=none -build-cache C:\Users\Sergej\AppData\Local\Temp\arduino_cache_346623 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.CubeCellflash.path=C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\tools\CubeCellflash\0.0.1 -prefs=runtime.tools.CubeCellflash-0.0.1.path=C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\tools\CubeCellflash\0.0.1 -prefs=runtime.tools.CubeCellelftool.path=C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\tools\CubeCellelftool\0.0.1 -prefs=runtime.tools.CubeCellelftool-0.0.1.path=C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\tools\CubeCellelftool\0.0.1 -prefs=runtime.tools.gcc-arm-none-eabi.path=C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\tools\gcc-arm-none-eabi\8-2019-q3 -prefs=runtime.tools.gcc-arm-none-eabi-8-2019-q3.path=C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\tools\gcc-arm-none-eabi\8-2019-q3 -verbose C:\Users\Sergej\Documents\Arduino\sketch_oct29a\sketch_oct29a.ino
C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -hardware C:\Users\Sergej\AppData\Local\Arduino15\packages -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -tools C:\Users\Sergej\AppData\Local\Arduino15\packages -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Sergej\Documents\Arduino\libraries -fqbn=CubeCell:CubeCell:CubeCell-BoardPlus:LORAWAN_REGION=6,LORAWAN_CLASS=0,LORAWAN_DEVEUI=0,LORAWAN_NETMODE=0,LORAWAN_ADR=0,LORAWAN_UPLINKMODE=0,LORAWAN_Net_Reserve=0,LORAWAN_AT_SUPPORT=0,LORAWAN_RGB=1,LORAWAN_DebugLevel=0 -ide-version=10812 -build-path C:\Users\Sergej\AppData\Local\Temp\arduino_build_447486 -warnings=none -build-cache C:\Users\Sergej\AppData\Local\Temp\arduino_cache_346623 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.CubeCellflash.path=C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\tools\CubeCellflash\0.0.1 -prefs=runtime.tools.CubeCellflash-0.0.1.path=C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\tools\CubeCellflash\0.0.1 -prefs=runtime.tools.CubeCellelftool.path=C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\tools\CubeCellelftool\0.0.1 -prefs=runtime.tools.CubeCellelftool-0.0.1.path=C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\tools\CubeCellelftool\0.0.1 -prefs=runtime.tools.gcc-arm-none-eabi.path=C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\tools\gcc-arm-none-eabi\8-2019-q3 -prefs=runtime.tools.gcc-arm-none-eabi-8-2019-q3.path=C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\tools\gcc-arm-none-eabi\8-2019-q3 -verbose C:\Users\Sergej\Documents\Arduino\sketch_oct29a\sketch_oct29a.ino
Using board 'CubeCell-BoardPlus' from platform in folder: C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\hardware\CubeCell\1.3.0
Using core 'asr650x' from platform in folder: C:\Users\Sergej\AppData\Local\Arduino15\packages\CubeCell\hardware\CubeCell\1.3.0
Detecting libraries used...
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "C:\\Users\\Sergej\\AppData\\Local\\Temp\\arduino_build_447486\\sketch\\sketch_oct29a.ino.cpp" -o nul
Alternatives for RadioLib.h: [RadioLib@4.6.0]
ResolveLibrary(RadioLib.h)
  -> candidates: [RadioLib@4.6.0]
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\AppData\\Local\\Temp\\arduino_build_447486\\sketch\\sketch_oct29a.ino.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\ISerial.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\Module.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\CC1101\\CC1101.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\ESP8266\\ESP8266.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\HC05\\HC05.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\JDY08\\JDY08.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\LLCC68\\LLCC68.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\RF69\\RF69.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\RFM9x\\RFM95.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\RFM9x\\RFM96.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\RFM9x\\RFM97.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX1231\\SX1231.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX126x\\SX1261.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX126x\\SX1262.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX126x\\SX1268.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX126x\\SX126x.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX127x\\SX1272.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX127x\\SX1273.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX127x\\SX1276.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX127x\\SX1277.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX127x\\SX1278.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX127x\\SX1279.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX127x\\SX127x.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX128x\\SX1280.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX128x\\SX1281.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX128x\\SX1282.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\SX128x\\SX128x.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\Si443x\\Si4430.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\Si443x\\Si4431.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\Si443x\\Si4432.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\Si443x\\Si443x.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\XBee\\XBee.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\modules\\nRF24\\nRF24.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\protocols\\AFSK\\AFSK.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\protocols\\AX25\\AX25.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\protocols\\FSK4\\FSK4.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\protocols\\HTTP\\HTTP.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\protocols\\Hellschreiber\\Hellschreiber.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\protocols\\MQTT\\MQTT.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\protocols\\Morse\\Morse.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\protocols\\PhysicalLayer\\PhysicalLayer.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\protocols\\RTTY\\RTTY.cpp" -o nul
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src\\protocols\\SSTV\\SSTV.cpp" -o nul
Generating function prototypes...
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti -w -x c++ -E -CC "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\AppData\\Local\\Temp\\arduino_build_447486\\sketch\\sketch_oct29a.ino.cpp" -o "C:\\Users\\Sergej\\AppData\\Local\\Temp\\arduino_build_447486\\preproc\\ctags_target_for_gcc_minus_e.cpp"
"C:\\Program Files (x86)\\Arduino\\tools-builder\\ctags\\5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "C:\\Users\\Sergej\\AppData\\Local\\Temp\\arduino_build_447486\\preproc\\ctags_target_for_gcc_minus_e.cpp"
Sketch wird kompiliert...
"C:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\tools\\gcc-arm-none-eabi\\8-2019-q3/bin/arm-none-eabi-g++" -DREGION_EU868 -DCubeCell_BoardPlus -DARDUINO=10812 -DACTIVE_REGION=LORAMAC_REGION_EU868 -DLORAWAN_DEVEUI_AUTO=0 -DLORAWAN_CLASS=CLASS_A -DLORAWAN_NETMODE=true -DLORAWAN_ADR=true -DLORAWAN_UPLINKMODE=true -DLORAWAN_NET_RESERVE=false -DAT_SUPPORT=1 -DLoraWan_RGB=1 -DLoRaWAN_DEBUG_LEVEL=0 -DSOFT_SE -DCY_CORE_ID=0 -DCONFIG_LORA_USE_TCXO "-DCONFIG_MANUFACTURER=\"ASR\"" "-DCONFIG_DEVICE_MODEL=\"6501\"" "-DCONFIG_VERSION=\"v4.0\"" -DARDUINO_ARCH_ASR650X -D__asr650x__ -D__ASR6502__ -DF_CPU=48000000L "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/src/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/board/inc/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/radio/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/device/sx126x/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/loramac/region/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/lora/system/crypto/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/port/include/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/projects/PSoC4/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/cores/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Serial/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/Wire/" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0/cores/asr650x/SPI/" -mcpu=cortex-m0plus -mthumb -w -Wall -g -gdwarf-2 -MMD -Os -mapcs-frame -mthumb-interwork -fno-common -ffat-lto-objects -ffunction-sections -fdata-sections -fno-builtin-printf -fno-builtin-sprintf -fno-builtin-snprintf -fno-builtin-fflush -Wno-strict-aliasing -c -fno-exceptions -fexceptions -fno-rtti "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\cores\\asr650x" "-IC:\\Users\\Sergej\\AppData\\Local\\Arduino15\\packages\\CubeCell\\hardware\\CubeCell\\1.3.0\\variants\\CubeCell-BoardPlus" "-IC:\\Users\\Sergej\\Documents\\Arduino\\libraries\\RadioLib\\src" "C:\\Users\\Sergej\\AppData\\Local\\Temp\\arduino_build_447486\\sketch\\sketch_oct29a.ino.cpp" -o "C:\\Users\\Sergej\\AppData\\Local\\Temp\\arduino_build_447486\\sketch\\sketch_oct29a.ino.cpp.o"
In file included from C:\Users\Sergej\Documents\Arduino\libraries\RadioLib\src/RadioLib.h:45:0,

                 from C:\Users\Sergej\Documents\Arduino\sketch_oct29a\sketch_oct29a.ino:18:

C:\Users\Sergej\Documents\Arduino\libraries\RadioLib\src/Module.h:427:12: error: declaration does not declare anything [-fpermissive]

     static void yield();

            ^

Bibliothek RadioLib in Version 4.6.0 im Ordner: C:\Users\Sergej\Documents\Arduino\libraries\RadioLib  wird verwendet
exit status 1
Fehler beim Kompilieren für das Board CubeCell-Board Plus(HTCC-AB02).

Additional info (please complete):

Hello all, 2 days ago the Cubecell module was added to the supported modules. However, I just can't get it to compile. I use a simple Example Sketch. I have only defined 4 single lines in the top. Don't know if it's right. I hope someone can help. Would be happy to be able to use the library on the module

jgromes commented 2 years ago

I was unable to replicate this, couple of thoughts:

  1. Please don't add the extra definitions, you will confuse the platform detection.
  2. Which version of the CubeCell core are you running? Myself (and the automated compilation in the repository, which is done prior to every release for every single platform) is using the latest CubeCell version available from Arduino IDE boards manager (1.2.0).
sheggy012 commented 2 years ago

Okay thanks for the info. I have used the version 1.3.0. Now changed to 1.2.0 and look it runs! Thanks a lot!

With version 1.3.0 without the difines I get the message: C:\Users\Sergej\Documents\Arduino\libraries\RadioLib\src/Module.h:8:28: fatal error: SoftwareSerial.h: No such file or directory That's why I added those above.

jgromes commented 2 years ago

If support for SoftwareSerial is about to be dropped from CubeCell, then it's probably better to just remove it from RadioLib now and save some trouble in the future.

I'll also take a look at that error you had for further future-proofing.

jgromes commented 2 years ago

Installed version 1.3.0 and managed to replicate the issue you had, which is due to the fact that with every version, CubeCell is even more broken than before. Honestly it's a stretch to call that pile of junk "Arduino-compatible" ...

Anyway, future issues resolved, 1.3.0 should work now too.