2.1.5 failed to load sketch of shield configurator

Discussion about Z-Uno product. Visit http://z-uno.z-wave.me for more details.
Post Reply
MiWa
Posts: 1
Joined: 23 Aug 2019 08:35

2.1.5 failed to load sketch of shield configurator

Post by MiWa »

Hi,

tried to load following sketch of shield configurator and got below response "Can't upload sketch! Something went wrong. Bad response."

Tried different sketches without DS18B20. Works fine. But as soon I add DS18B20 error occurs.
Funny: Sketch with DS18B20 only is fine.

Any ideas?

Thx
MiWa



#include "ZUNO_DS18B20.h"

// Global variables

OneWire ow(11);
DS18B20Sensor ds18b20(&ow);

byte addresses[8 * 1 + 8]; // last one for search
byte number_of_sensors; // Number of sensors found (if less than 1 connected)
signed int temperature[1];

byte pin12SensorBinaryState;

// Z-Wave channels
ZUNO_SETUP_CHANNELS(
ZUNO_SENSOR_MULTILEVEL(ZUNO_SENSOR_MULTILEVEL_TYPE_TEMPERATURE, SENSOR_MULTILEVEL_SCALE_CELSIUS, SENSOR_MULTILEVEL_SIZE_TWO_BYTES, SENSOR_MULTILEVEL_PRECISION_ONE_DECIMAL, pin11SensorDS18B20Getter_1),
ZUNO_SENSOR_BINARY(ZUNO_SENSOR_BINARY_TYPE_GENERAL_PURPOSE, pin12SensorBinaryGetter)
);

void setup() {
number_of_sensors = ds18b20.findAllSensors(addresses);

pinMode(12, INPUT_PULLUP);
pin12SensorBinaryState = !digitalRead(12);
}

void loop() {
if (number_of_sensors >= 1) {
temperature[0] = ds18b20.getTempC100(&addresses[8 * 0])/10;
zunoSendReport(1 + 0);
}

byte _pin12SensorBinaryState = digitalRead(12);
if (pin12SensorBinaryState != _pin12SensorBinaryState) {
pin12SensorBinaryState = _pin12SensorBinaryState;
zunoSendReport(2);
}

delay(20);
}

// Getters and setters

word pin11SensorDS18B20Getter_1() {
return temperature[0];
}

byte pin12SensorBinaryGetter() {
return pin12SensorBinaryState;
}



************* Building Arduino Sketch *************

C:\Users\walbe\AppData\Local\Temp\arduino_build_416001/sketch_digital_output.ino

***************************************************



--- USING a list of libraries from:

C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\hardware\zw8051\2.1.5\libraries

C:\Users\walbe\Documents\Arduino\libraries

*** Collecting prototypes...

Preprocessing file: Custom.c with SDCPP...



Preprocessing file: Print.cpp with SDCPP...

Compiling Print_sdcpp_.cpp ...

Preprocessing file: Stream.cpp with SDCPP...

Compiling Stream_sdcpp_.cpp ...

Preprocessing file: HardwareSerial.cpp with SDCPP...

Compiling HardwareSerial_sdcpp_.cpp ...

Preprocessing file: HLCore.cpp with SDCPP...

Compiling HLCore_sdcpp_.cpp ...

Preprocessing file: ZUNO_OneWire.cpp with SDCPP...

Compiling ZUNO_OneWire_sdcpp_.cpp ...

Preprocessing file: ZUNO_DS18B20.cpp with SDCPP...

Compiling ZUNO_DS18B20_sdcpp_.cpp ...

Preprocessing file: EEPROM.cpp with SDCPP...

Compiling EEPROM_sdcpp_.cpp ...

Preprocessing file: sketch_digital_output.cpp with SDCPP...

Compiling sketch_digital_output_sdcpp_.cpp ...

Preprocessing file: ZWSupport.cpp with SDCPP...

Compiling ZWSupport_sdcpp_.cpp ...

Preprocessing file: Print.cpp with SDCPP...

Compiling Print_sdcpp_.cpp ...

Preprocessing file: Stream.cpp with SDCPP...

Compiling Stream_sdcpp_.cpp ...

Preprocessing file: HardwareSerial.cpp with SDCPP...

Compiling HardwareSerial_sdcpp_.cpp ...

Preprocessing file: HLCore.cpp with SDCPP...

Compiling HLCore_sdcpp_.cpp ...

Preprocessing file: ZUNO_OneWire.cpp with SDCPP...

Compiling ZUNO_OneWire_sdcpp_.cpp ...

Preprocessing file: ZUNO_DS18B20.cpp with SDCPP...

Compiling ZUNO_DS18B20_sdcpp_.cpp ...

Preprocessing file: EEPROM.cpp with SDCPP...

Compiling EEPROM_sdcpp_.cpp ...

Preprocessing file: sketch_digital_output.cpp with SDCPP...

Compiling sketch_digital_output_sdcpp_.cpp ...

Preprocessing file: ZWSupport.cpp with SDCPP...

Compiling ZWSupport_sdcpp_.cpp ...Compiling file "LLCore_arduino.c" by means of SDCC...

sdcc: Calling preprocessor...

sdcc: sdcpp.exe -nostdinc -Wall -obj-ext=.rel -D__SDCC_STACK_AUTO -D__SDCC_MODEL_LARGE -D__SDCC_INT_LONG_REENT -D__SDCC_FLOAT_REENT -D__SDCC=3_5_0 -DSDCC=350 -D__SDCC_REVISION=9253 -D__SDCC_mcs51 -D__STDC_NO_COMPLEX__ -D__STDC_NO_THREADS__ -D__STDC_NO_ATOMICS__ -D__STDC_NO_VLA__ -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include\mcs51" -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include" "LLCore_arduino.c"

sdcc: Generating code...

sdcc: Calling assembler...

sdcc: sdas8051.exe -plosgffw "LLCore_arduino.rel" "LLCore_arduino".asm

strncpyz prevented buffer overrun!

Compiling file "Print_ucxx.c" by means of SDCC...

sdcc: Calling preprocessor...

sdcc: sdcpp.exe -nostdinc -Wall -obj-ext=.rel -D__SDCC_STACK_AUTO -D__SDCC_MODEL_LARGE -D__SDCC_INT_LONG_REENT -D__SDCC_FLOAT_REENT -D__SDCC=3_5_0 -DSDCC=350 -D__SDCC_REVISION=9253 -D__SDCC_mcs51 -D__STDC_NO_COMPLEX__ -D__STDC_NO_THREADS__ -D__STDC_NO_ATOMICS__ -D__STDC_NO_VLA__ -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include\mcs51" -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include" "Print_ucxx.c"

sdcc: Generating code...

sdcc: Calling assembler...

sdcc: sdas8051.exe -plosgffw "Print_ucxx.rel" "Print_ucxx".asm

strncpyz prevented buffer overrun!

Compiling file "Stream_ucxx.c" by means of SDCC...

sdcc: Calling preprocessor...

sdcc: sdcpp.exe -nostdinc -Wall -obj-ext=.rel -D__SDCC_STACK_AUTO -D__SDCC_MODEL_LARGE -D__SDCC_INT_LONG_REENT -D__SDCC_FLOAT_REENT -D__SDCC=3_5_0 -DSDCC=350 -D__SDCC_REVISION=9253 -D__SDCC_mcs51 -D__STDC_NO_COMPLEX__ -D__STDC_NO_THREADS__ -D__STDC_NO_ATOMICS__ -D__STDC_NO_VLA__ -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include\mcs51" -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include" "Stream_ucxx.c"

sdcc: Generating code...

sdcc: Calling assembler...

sdcc: sdas8051.exe -plosgffw "Stream_ucxx.rel" "Stream_ucxx".asm

strncpyz prevented buffer overrun!

Compiling file "HardwareSerial_ucxx.c" by means of SDCC...

sdcc: Calling preprocessor...

sdcc: sdcpp.exe -nostdinc -Wall -obj-ext=.rel -D__SDCC_STACK_AUTO -D__SDCC_MODEL_LARGE -D__SDCC_INT_LONG_REENT -D__SDCC_FLOAT_REENT -D__SDCC=3_5_0 -DSDCC=350 -D__SDCC_REVISION=9253 -D__SDCC_mcs51 -D__STDC_NO_COMPLEX__ -D__STDC_NO_THREADS__ -D__STDC_NO_ATOMICS__ -D__STDC_NO_VLA__ -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include\mcs51" -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include" "HardwareSerial_ucxx.c"

sdcc: Generating code...

sdcc: Calling assembler...

sdcc: sdas8051.exe -plosgffw "HardwareSerial_ucxx.rel" "HardwareSerial_ucxx".asm

strncpyz prevented buffer overrun!

Compiling file "HLCore_ucxx.c" by means of SDCC...

sdcc: Calling preprocessor...

sdcc: sdcpp.exe -nostdinc -Wall -obj-ext=.rel -D__SDCC_STACK_AUTO -D__SDCC_MODEL_LARGE -D__SDCC_INT_LONG_REENT -D__SDCC_FLOAT_REENT -D__SDCC=3_5_0 -DSDCC=350 -D__SDCC_REVISION=9253 -D__SDCC_mcs51 -D__STDC_NO_COMPLEX__ -D__STDC_NO_THREADS__ -D__STDC_NO_ATOMICS__ -D__STDC_NO_VLA__ -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include\mcs51" -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include" "HLCore_ucxx.c"

sdcc: Generating code...

sdcc: Calling assembler...

sdcc: sdas8051.exe -plosgffw "HLCore_ucxx.rel" "HLCore_ucxx".asm

strncpyz prevented buffer overrun!

HLCore_ucxx.c:612: warning 85: in function delayLoops unreferenced function argument : 'v'

Compiling file "ZUNO_OneWire_ucxx.c" by means of SDCC...

sdcc: Calling preprocessor...

sdcc: sdcpp.exe -nostdinc -Wall -obj-ext=.rel -D__SDCC_STACK_AUTO -D__SDCC_MODEL_LARGE -D__SDCC_INT_LONG_REENT -D__SDCC_FLOAT_REENT -D__SDCC=3_5_0 -DSDCC=350 -D__SDCC_REVISION=9253 -D__SDCC_mcs51 -D__STDC_NO_COMPLEX__ -D__STDC_NO_THREADS__ -D__STDC_NO_ATOMICS__ -D__STDC_NO_VLA__ -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include\mcs51" -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include" "ZUNO_OneWire_ucxx.c"

sdcc: Generating code...

sdcc: Calling assembler...

sdcc: sdas8051.exe -plosgffw "ZUNO_OneWire_ucxx.rel" "ZUNO_OneWire_ucxx".asm

strncpyz prevented buffer overrun!

ZUNO_OneWire_ucxx.c:1139: warning 85: in function __cxx__OneWire__method__crc8_02p0505 unreferenced function argument : 'v__this'

Compiling file "ZUNO_DS18B20_ucxx.c" by means of SDCC...

sdcc: Calling preprocessor...

sdcc: sdcpp.exe -nostdinc -Wall -obj-ext=.rel -D__SDCC_STACK_AUTO -D__SDCC_MODEL_LARGE -D__SDCC_INT_LONG_REENT -D__SDCC_FLOAT_REENT -D__SDCC=3_5_0 -DSDCC=350 -D__SDCC_REVISION=9253 -D__SDCC_mcs51 -D__STDC_NO_COMPLEX__ -D__STDC_NO_THREADS__ -D__STDC_NO_ATOMICS__ -D__STDC_NO_VLA__ -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include\mcs51" -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include" "ZUNO_DS18B20_ucxx.c"

sdcc: Generating code...

sdcc: Calling assembler...

sdcc: sdas8051.exe -plosgffw "ZUNO_DS18B20_ucxx.rel" "ZUNO_DS18B20_ucxx".asm

strncpyz prevented buffer overrun!

strncpyz prevented buffer overrun!

Compiling file "EEPROM_ucxx.c" by means of SDCC...

sdcc: Calling preprocessor...

sdcc: sdcpp.exe -nostdinc -Wall -obj-ext=.rel -D__SDCC_STACK_AUTO -D__SDCC_MODEL_LARGE -D__SDCC_INT_LONG_REENT -D__SDCC_FLOAT_REENT -D__SDCC=3_5_0 -DSDCC=350 -D__SDCC_REVISION=9253 -D__SDCC_mcs51 -D__STDC_NO_COMPLEX__ -D__STDC_NO_THREADS__ -D__STDC_NO_ATOMICS__ -D__STDC_NO_VLA__ -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include\mcs51" -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include" "EEPROM_ucxx.c"

sdcc: Generating code...

sdcc: Calling assembler...

sdcc: sdas8051.exe -plosgffw "EEPROM_ucxx.rel" "EEPROM_ucxx".asm

strncpyz prevented buffer overrun!

Compiling file "sketch_digital_output_ucxx.c" by means of SDCC...

sdcc: Calling preprocessor...

sdcc: sdcpp.exe -nostdinc -Wall -obj-ext=.rel -D__SDCC_STACK_AUTO -D__SDCC_MODEL_LARGE -D__SDCC_INT_LONG_REENT -D__SDCC_FLOAT_REENT -D__SDCC=3_5_0 -DSDCC=350 -D__SDCC_REVISION=9253 -D__SDCC_mcs51 -D__STDC_NO_COMPLEX__ -D__STDC_NO_THREADS__ -D__STDC_NO_ATOMICS__ -D__STDC_NO_VLA__ -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include\mcs51" -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include" "sketch_digital_output_ucxx.c"

sdcc: Generating code...

sdcc: Calling assembler...

sdcc: sdas8051.exe -plosgffw "sketch_digital_output_ucxx.rel" "sketch_digital_output_ucxx".asm

strncpyz prevented buffer overrun!

Compiling file "ZWSupport_ucxx.c" by means of SDCC...

sdcc: Calling preprocessor...

sdcc: sdcpp.exe -nostdinc -Wall -obj-ext=.rel -D__SDCC_STACK_AUTO -D__SDCC_MODEL_LARGE -D__SDCC_INT_LONG_REENT -D__SDCC_FLOAT_REENT -D__SDCC=3_5_0 -DSDCC=350 -D__SDCC_REVISION=9253 -D__SDCC_mcs51 -D__STDC_NO_COMPLEX__ -D__STDC_NO_THREADS__ -D__STDC_NO_ATOMICS__ -D__STDC_NO_VLA__ -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include\mcs51" -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include" "ZWSupport_ucxx.c"

sdcc: Generating code...

sdcc: Calling assembler...

sdcc: sdas8051.exe -plosgffw "ZWSupport_ucxx.rel" "ZWSupport_ucxx".asm

strncpyz prevented buffer overrun!

ZWSupport_ucxx.c:1056: warning 85: in function zunoCallback unreferenced local variable : 'i'

sdcc: Calling preprocessor...

sdcc: sdcpp.exe -nostdinc -Wall -obj-ext=.rel -D__SDCC_STACK_AUTO -D__SDCC_MODEL_LARGE -D__SDCC_INT_LONG_REENT -D__SDCC_FLOAT_REENT -D__SDCC=3_5_0 -DSDCC=350 -D__SDCC_REVISION=9253 -D__SDCC_mcs51 -D__STDC_NO_COMPLEX__ -D__STDC_NO_THREADS__ -D__STDC_NO_ATOMICS__ -D__STDC_NO_VLA__ -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include\mcs51" -isystem "C:\Users\walbe\Documents\ArduinoData\packages\Z-Uno\tools\zuno_toolchain\00.08.80/zuno_toolchain/sdcc/\bin\..\include" "main.c"

sdcc: Generating code...

sdcc: Calling assembler...

sdcc: sdas8051.exe -plosgffw "main.rel" "main".asm

sdcc: Calling linker...

sdcc: sdld.exe -nf "main.lk"

strncpyz prevented buffer overrun!

Making firmware file: C:\Users\walbe\AppData\Local\Temp\arduino_build_416001/sketch_digital_output.ino-0215.hex ...packihx: read 244 lines, wrote 460: OK.

Fixing ISR table in C:\Users\walbe\AppData\Local\Temp\arduino_build_416001/sketch_digital_output.ino-0215.hex ...

Making binary firmware file C:\Users\walbe\AppData\Local\Temp\arduino_build_416001/sketch_digital_output.ino-0215.bin. Use it in Z-Way for wireless update procedure.[Done]



Elapsed:18.9049999714 s

Der Sketch verwendet 7150 Bytes (22%) des Programmspeicherplatzes. Das Maximum sind 32256 Bytes.
Globale Variablen verwenden 225 Bytes des dynamischen Speichers.

Openning port ..............................
Openning port .............................. OK

Stoping the user code ..............................
Stoping the user code .............................. OK

Closing port ..............................
Closing port .............................. OK

Openning port ..............................
Openning port .............................. OK


RAW Info:
AA AA BB BB 01 15 01 10
00 01 02 0F 66 C2 26 CC
02 7F C6 62 83 7F FF 7F
FC 01 15 02 0F 4C A3 02
00 16 12 4C 08 3E 8A AF
F8 A7 1A 2A 20 2C 26 3F
2F E1 0F 53 40 C3 97 2C
2E B6 EE 0F 23 72 7C 9B
14 D0 41 0C 12 06 B9 02
AA 10 E3 04 01 1E
----------------------------------------------------------
FIRMWARE DATA
----------------------------------------------------------
REVISION:02.15
Z-WAVE FREQUENCY:EU
ORIGINAL FW. CRC32: 66 C2 26 CC
MAXIMUM CODE SIZE: 30 KB
CURRENT FW. CRC16: 4C A3
RADIO CHANNELS: 02
----------------------------------------------------------
HARDWARE DATA
----------------------------------------------------------
CALIBRATION
MAIN:00 TX: 16 12
DEVICE PUBLIC KEY:
HEX: 31 31 FB A3 9D B2 3C 6C 9A 7F C8 1F F7 98 17 A0 65 CA 25 4A 87 A6 39 2C 11 2C 3D 16 01 BF 11 41
DEC: 12593-64419-40370-15468-39551-51231-63384-06048-26058-09546-34726-14636-04396-15638-00447-04417
----------------------------------------------------------
PRODUCTION DATA
----------------------------------------------------------
YOUR ZUNO S/N: 0C 12 06 B9 02 AA 10 04 01
----------------------------------------------------------
PRODUCTION TIME:
WEEK:12 YEAR:2018
WORKSTATION:
NUMBER:16 SEQUENCE:682
HARDWARE:
CHIP:1721 REVISION:1025
----------------------------------------------------------

Writing NVM data [> ] (0%)
Writing NVM data [> ] (0%)
Writing NVM data [> ] (1%)
Writing NVM data [=> ] (2%)
Writing NVM data [=> ] (2%)
Writing NVM data [=> ] (3%)
Writing NVM data [==> ] (4%)
Writing NVM data [==> ] (4%)
Writing NVM data [==> ] (5%)
Writing NVM data [===> ] (6%)
Writing NVM data [===> ] (6%)
Writing NVM data [===> ] (7%)
Writing NVM data [====> ] (8%)
Writing NVM data [====> ] (8%)
Writing NVM data [====> ] (9%)
Writing NVM data [=====> ] (10%)
Writing NVM data [=====> ] (10%)
Writing NVM data [=====> ] (11%)
Writing NVM data [======> ] (12%)
Writing NVM data [======> ] (12%)
Writing NVM data [======> ] (13%)
Writing NVM data [=======> ] (14%)
Writing NVM data [=======> ] (14%)
Writing NVM data [=======> ] (15%)
Writing NVM data [========> ] (16%)
Writing NVM data [========> ] (16%)
Writing NVM data [========> ] (17%)
Writing NVM data [=========> ] (18%)
Writing NVM data [=========> ] (18%)
Writing NVM data [=========> ] (19%)
Writing NVM data [==========> ] (20%)
Writing NVM data [==========> ] (20%)
Writing NVM data [==========> ] (21%)
Writing NVM data [===========> ] (22%)
Writing NVM data [===========> ] (22%)
Writing NVM data [===========> ] (23%)
Writing NVM data [============> ] (24%)
Writing NVM data [============> ] (24%)
Writing NVM data [============> ] (25%)
Writing NVM data [=============> ] (26%)
Writing NVM data [=============> ] (26%)
Writing NVM data [=============> ] (27%)
Writing NVM data [==============> ] (28%)
Writing NVM data [==============> ] (28%)
Writing NVM data [==============> ] (29%)
Writing NVM data [===============> ] (30%)
Writing NVM data [===============> ] (30%)
Writing NVM data [===============> ] (31%)
Writing NVM data [================> ] (32%)
Writing NVM data [================> ] (32%)
Writing NVM data [================> ] (33%)
Writing NVM data [=================> ] (34%)
Writing NVM data [=================> ] (34%)
Writing NVM data [=================> ] (35%)
Writing NVM data [==================> ] (36%)
Writing NVM data [==================> ] (36%)
Writing NVM data [==================> ] (37%)
Writing NVM data [===================> ] (38%)
Writing NVM data [===================> ] (38%)
Writing NVM data [===================> ] (39%)
Writing NVM data [====================> ] (40%)
Writing NVM data [====================> ] (40%)
Writing NVM data [====================> ] (41%)
Writing NVM data [=====================> ] (42%)
Writing NVM data [=====================> ] (42%)
Writing NVM data [=====================> ] (43%)
Writing NVM data [======================> ] (44%)
Writing NVM data [======================> ] (44%)
Writing NVM data [======================> ] (45%)
Writing NVM data [=======================> ] (46%)
Writing NVM data [=======================> ] (46%)
Writing NVM data [=======================> ] (47%)
Writing NVM data [========================> ] (48%)
Writing NVM data [========================> ] (48%)
Writing NVM data [========================> ] (49%)
Writing NVM data [=========================> ] (50%)
Writing NVM data [=========================> ] (50%)
Writing NVM data [=========================> ] (51%)
Writing NVM data [==========================> ] (52%)
Writing NVM data [==========================> ] (52%)
Writing NVM data [==========================> ] (53%)
Writing NVM data [===========================> ] (54%)
Writing NVM data [===========================> ] (54%)
Writing NVM data [===========================> ] (55%)
Writing NVM data [============================> ] (56%)
Writing NVM data [============================> ] (56%)
Writing NVM data [============================> ] (57%)
Writing NVM data [=============================> ] (58%)
Writing NVM data [=============================> ] (58%)
Writing NVM data [=============================> ] (59%)
Writing NVM data [==============================> ] (60%)
Writing NVM data [==============================> ] (60%)
Writing NVM data [==============================> ] (61%)
Writing NVM data [===============================> ] (62%)
Writing NVM data [===============================> ] (62%)
Writing NVM data [===============================> ] (63%)
Writing NVM data [================================> ] (64%)
Writing NVM data [================================> ] (64%)
Writing NVM data [================================> ] (65%)
Writing NVM data [=================================> ] (66%)
Writing NVM data [=================================> ] (66%)
Writing NVM data [=================================> ] (67%)
Writing NVM data [==================================> ] (68%)
Writing NVM data [==================================> ] (68%)
Writing NVM data [==================================> ] (69%)
Writing NVM data [===================================> ] (70%)
Writing NVM data [===================================> ] (70%)
Writing NVM data [===================================> ] (71%)
Writing NVM data [====================================> ] (72%)
Writing NVM data [====================================> ] (72%)
Writing NVM data [====================================> ] (73%)
Writing NVM data [=====================================> ] (74%)
Writing NVM data [=====================================> ] (74%)
Writing NVM data [=====================================> ] (75%)
Writing NVM data [======================================> ] (76%)
Writing NVM data [======================================> ] (76%)
Writing NVM data [======================================> ] (77%)
Writing NVM data [=======================================> ] (78%)
Writing NVM data [=======================================> ] (78%)
Writing NVM data [=======================================> ] (79%)
Writing NVM data [========================================> ] (80%)
Writing NVM data [========================================> ] (80%)
Writing NVM data [========================================> ] (81%)
Writing NVM data [=========================================> ] (82%)
Writing NVM data [=========================================> ] (82%)
Writing NVM data [=========================================> ] (83%)
Writing NVM data [==========================================> ] (84%)
Writing NVM data [==========================================> ] (84%)
Writing NVM data [==========================================> ] (85%)
Writing NVM data [===========================================> ] (86%)
Writing NVM data [===========================================> ] (86%)
Writing NVM data [===========================================> ] (87%)
Writing NVM data [============================================> ] (88%)
Writing NVM data [============================================> ] (88%)
Writing NVM data [============================================> ] (89%)
Writing NVM data [=============================================> ] (90%)
Writing NVM data [=============================================> ] (90%)
Writing NVM data [=============================================> ] (91%)
Writing NVM data [==============================================> ] (92%)
Writing NVM data [==============================================> ] (92%)
Writing NVM data [==============================================> ] (93%)
Writing NVM data [===============================================> ] (94%)
Writing NVM data [===============================================> ] (94%)
Writing NVM data [===============================================> ] (95%)
Writing NVM data [================================================> ] (96%)
Writing NVM data [================================================> ] (96%)
Writing NVM data [================================================> ] (97%)
Writing NVM data [=================================================>] (98%)
Writing NVM data [=================================================>] (98%)
Writing NVM data [=================================================>] (99%)
Writing NVM data .............................. OK
Sketch crc16:7fe1 size:1c1e (7.03 kB)

Pushing sketch ..............................NEEDED:2 GET:0



**** **** **** **** **** *
* * * * * * * * * *
* * * * * * * * * *
**** *** *** * * *** *
* * * * * * * * *
**** * * * * **** * * *



Error 0 Can't upload sketch! Something went wrong. Bad response.
NEEDED:1 GET:0
NEEDED:1 GET:0
NEEDED:1 GET:0
NEEDED:1 GET:0
NEEDED:1 GET:0
NEEDED:1 GET:0

Reseting chip ..............................
Reseting chip .............................. OK

Closing port ..............................
Closing port .............................. OK
ELAPSED:16.2039999962s
User avatar
PoltoS
Posts: 7565
Joined: 26 Jan 2011 19:36

Re: 2.1.5 failed to load sketch of shield configurator

Post by PoltoS »

Looks like the sketch is too big. This can be with S2 bootloader - it has only 6k for your sketch. Try S0
Post Reply