Use of an external serial converter

Hello,
I would like to use an external USB-serial converter, shown as COM port on my windows machine, to control CW308 targets. Is there a way to use simpeserial.py with it, by calling simpleserial_write/read as if I were using a CW capture board?

Kind regards,
Marco

You won’t be able to use it directly, but we do have a SimpleSerialv2 class that’s designed to work with
serial COM ports: https://github.com/newaetech/chipwhisperer/blob/develop/software/chipwhisperer/capture/targets/SimpleSerial2.py#L658

If you need to use SimpleSerialv1, you should be able to copy what we’ve done with the SimpleSerial2_CDC class by inheriting SimpleSerial and changing out stuff like con, write, read, etc.

Alex

Thank you, I’ll use SimpleSerial v2.

Marco