I have a question about CWNANO. I am attempting to conduct an electromagnetic attack using CWNANO. To do this, I split the CWNANO into two parts and connected them with jumper wires, as shown in the picture. However, when I try to execute it, I encounter the following error. Could you tell me what might be wrong?
OSError Traceback (most recent call last)
Cell In[1], line 2
1 import chipwhisperer as cw
----> 2 scope = cw.scope()
File c:\users\murase_ryou\chipwhisperer5_64\cw\home\portable\chipwhisperer\software\chipwhisperer\__init__.py:384, in scope(scope_type, name, sn, idProduct, bitstream, force, prog_speed, **kwargs)
381 raise ValueError
383 if scope_type is None:
--> 384 scope_type = get_cw_type(**kwargs)
385 rtn : scopes.ScopeTypes = scope_type()
386 try:
File c:\users\murase_ryou\chipwhisperer5_64\cw\home\portable\chipwhisperer\software\chipwhisperer\common\utils\util.py:522, in get_cw_type(sn, idProduct, hw_location, **kwargs)
519 possible_ids = [0xace0, 0xace2, 0xace3, 0xace5]
521 cwusb = NAEUSB_Backend()
--> 522 device = cwusb.find(serial_number=sn, idProduct=possible_ids, hw_location=hw_location)
523 name = device.getProduct()
524 cwusb.usb_ctx.close()
File c:\users\murase_ryou\chipwhisperer5_64\cw\home\portable\chipwhisperer\software\chipwhisperer\hardware\naeusb\naeusb.py:344, in NAEUSB_Backend.find(self, serial_number, idProduct, hw_location)
342 dev_list = self.get_possible_devices(idProduct, attempt_access=(not hw_location))
343 if len(dev_list) == 0:
--> 344 raise OSError("Could not find ChipWhisperer. Is it connected?")
346 # if more than one CW, we require a serial number
347 if hw_location:
OSError: Could not find ChipWhisperer. Is it connected?