newaetech / chipwhisperer-jupyter

Interactive ChipWhisperer tutorials using Jupyter notebooks.
220 stars 70 forks source link

Error in 1 - Connecting to hardware - newline should be in quotations #54

Open 5t00g1t opened 1 month ago

5t00g1t commented 1 month ago

target.write('p' + "00"16 + \n) File "", line 1 target.write('p' + "00"16 + \n) ^ SyntaxError: unexpected character after line continuation character

Solution: target.write('p' + "00"*16 + "\n")