EasyManua.ls Logo

NewAE CHIPSHOUTER CW520 - Python API Interface

NewAE CHIPSHOUTER CW520
66 pages
Print Icon
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
ChipSHOUTER Users Manual: Python API Interface
61
Python API Interface
The ChipSHOUTER can be manipulated via python which allows
the device to be incorporated into more complex test setups.
By writing custom python scripts the ChipSHOUTER can be used
in conjunction with the chipwhisperer platform, oscillo-
scopes, and anything else that can be hooked into python.
Below is a usage example for the Python API. For further ex-
amples and full documentation visit:
https://github.com/newaetech/ChipSHOUTER
and see the Python API.
from chipshouter import ChipSHOUTER
#Configure ChipSHOUTER connection
cs = ChipSHOUTER("com3")
#Configure ChipSHOUTER pulse settings
cs.pulse.width = 80
cs.pulse.repeat = 1
cs.pulse.deadtime = 10
cs.voltage = 500
#arm and pulse
cs.armed = 1
cs.pulse = 1
#disarm
cs.armed = 0

Table of Contents