As of August 2020 the site you are on (wiki.newae.com) is deprecated, and content is now at rtfm.newae.com.

Changes

Jump to: navigation, search
Setting a Password on the Bootloader
<p>As a test try just entering <code>self</code>, which is a Python reference to the ChipWhisperer object. You can explore other options &amp; Python will report the data-type, for example:</p>
<pre>>>> self
<__main__.ChipWhispererCapture object CWCaptureGUIobject at 0x05E27800>>>> self.target.driver.ser<chipwhisperer.capture.targets.SimpleSerialsimpleserial_readers.cw.SimpleSerial_ChipWhisperer object at 0x05E2BAF80x06E61030></pre></li>
<li><p>You can also call methods. For example we can send a string with the following:</p>
<pre>>>> self.targetapi.drivergetTarget().ser.write("@@@")</pre></li><li><p>And to retreive the data we would call the read() function, where we specify the number of bytes to attempt to read. As before if we fail to get a response you may need to resend the [mailto:%22@@@ "@@@]" prompt:</p><pre>>>> self.targetapi.drivergetTarget().ser.write("@@@")
>>> self.targetapi.drivergetTarget().ser.read(255)
u''
>>> self.targetapi.drivergetTarget().ser.write("@@@")>>> self.targetapi.drivergetTarget().ser.read(255)
u'TSB\x7f\x1c\xf0\x1e\x95\x0f@\xc0>\xff\x03\xaa\xaa!'</pre></li>
<li><p>To make typing easier, create variables that point to the read and write functions:</p>
<pre>>>> read = self.targetapi.drivergetTarget().ser.read>>> write = self.targetapi.drivergetTarget().ser.write</pre></li>
<li>To set the bootloader on TSB, we need to modify a special page of FLASH memory. First, ensure you've recently (e.g. within < 30 seconds) received the <code>TSB</code> signon prompt. If not resend the <code>@@@</code> string until the call to <code>read(255)</code> returns the <code>TSB</code> prompt. You should read the next step before doing this however.</li>
<li><p>Send the command 'c' to read the last page of flash. Rather than printing to console, simply save this to a variable:</p>
<syntaxhighlight>
>>> write('q')
>>> write([mailto:'@@@' '@@@'])
>>> read(255)
u''
Approved_users, bureaucrat, administrator
1,956
edits

Navigation menu