V3:Setting up Software for B1

It is assumed that you've already followed the guide in Installing_ChipWhisperer. Thus it is assumed you are able to communicate with the ChipWhisperer CW1173 hardware (or whatever capture hardware you are using). Note in particular you must have configured the FPGA bitstream in the ChipWhisperer-Capture software, all part of the description in the Installing_ChipWhisperer guide.

Assuming this setup is complete, you can confirm you are able to communicate with the hardware by running the example capture of traces given in the CW1173_ChipWhisperer-Lite quick-start.

Programming the Example

Note with the CW1173 you need to configure a clock before programming of the device will succeed. Programming of the target device will be done as part of the CW-Capture software setup, discussed next.

Communicating from CW-Capture Software

Next, open the CW-Capture software. Then perform the following steps:

image

  1. Switch to the General Settings tab.
  2. As the Scope Module, select the ChipWhisperer/OpenADC option.
  3. As the Target Module, select the Simple Serial option.

Next, you'll have to configure the scope device in use.

image

  1. Switch to the Scope Settings tab.
  2. As the connection, select the ChipWhisperer Lite protocol.

Next, you'll have to configure the target module:

image

  1. Switch to the Target Settings tab
  2. As the connection, select the NewAE USB (CWLite/CW1200) option

image

  1. Press the button labeled Master: DIS, where DIS has a circle around it. If it works, it will switch to green and say CON.

image

We will now need to configure the clock to the XMEGA target device.

image

  1. Switch to the Scope Settings tab.
  2. Scroll down to the CLKGEN section, and enter the Desired Frequency as 7.37 MHz. Hit <enter> and you should see the multiply and divide settings change. Be careful of the units - you may need to click just on the numbers and enter that. You can also check the frequency settings using the Frequency Counter - to use this switch the Freq Counter Src to be CLKGEN. It should read 7.37 MHz. *If the red ADC Lock Failed LED light is on you may need to click Reset ADC DCM.

    We now need to feed this generated clock to an output pin.

image

  1. Scroll further down until you find the Target HS IO-Out function, set this to CLKGEN. The clock is now being sent on the Target-IO HS2 pin, which is used by the XMEGA as the input clock.

    For dumb historical reasons the XMEGA and AVR have opposite TX/RX pinouts (on the original multi-target board, the AVR and XMEGA are designed such they can communicate, which required opposite TX/RX connections). Anyway you now need to switch the IO1 and IO2 functions from default:

image

  1. Change the Target IO1 function to be RXD.
  2. Change the Target IO2 function to be TXD.
  3. You can now program the XMEGA device! To do so, open the XMEGA Programmer from the Tools menu:

    image

  4. Hit the Check Signature button and confirm the device is detected. If not you may have issues with the clock setup.

    image

  5. Using the Find button, navigate to the simpleserial-base.hex which you built earlier with the make command. You can then press the Erase/Program/Verify button, and confirm the file is programmed into the XMEGA device:

    image

    Note the programmer dialog not only shows the successful programming status, but also shows when the .hex file was last modified. Always confirm this matches with when you last remember compiling the program -- if it is widely different this suggests you have selected the wrong file!

    Finally we can check communications with the programmed file:

image

  1. Close the XMEGA programmer dialog.
  2. Open the status monitor under Tools > Encryption Status Monitor.
  3. Resize the monitor window. The monitor will show sent & received data to the target.
  4. Hit the Run 1 button (image). You may have to hit it a few times, as the very first serial data is often lost. You should see data populate in the Text Out field of the monitor window. Note that each byte of the Text In is incremented in the Text Out field.