Firmware doesn't run on unclaimed/brand new device

Is the bootloader actually a bootloader updater application? I can just flash this using YMODEM, right?

Otherwise, is there a DFU-UTIL command, because I’m not seeing it?

EDIT: It would be exceptionally helpful if someone has a tip on how to use dfu-util to flash the bootloader. This would mean I could do four consecutive dfu-util commands that loads part1, part2, bootloader, and application all in one go!

@nrobinson2000

You’re right, the bootloader being an old version is apparently enough to prevent firmware from running… since I need it to run on the test stand, I MUST update the system firmware and the bootloader before it will run.

I just did an update with

particle flash --serial bootloader-0.7.0-p1.bin

…which after having intractable installation problems with particle-cli/npm, unexpectedly worked!

2 Likes

I could help with that. Are you on mac or Linux?

1 Like

Linux.

So far I have a script that looks like

#!/bin/bash

# This script runs commands to update the P1 to 0.7.0 system firmware

dfu-util -d 2b04:d008 -a 0 -s 0x8020000 -D system-part1-0.7.0-p1.bin
dfu-util -d 2b04:d008 -a 0 -s 0x8060000:leave -D system-part2-0.7.0-p1.bin

particle flash --serial bootloader-0.7.0-p1.bin

But I would like something more like:

#!/bin/bash

# This script runs commands to update the P1 to 0.7.0 system firmware

dfu-util -d 2b04:d008 -a 0 -s 0x8020000 -D system-part1-0.7.0-p1.bin
dfu-util -d 2b04:d008 -a 0 -s 0x8060000 -D system-part2-0.7.0-p1.bin
dfu-util -d 2b04:d008 -a 0 -s 0x80?0000 -D bootloader-0.7.0-p1.bin
dfu-util -d 2b04:d008 -a 0 -s 0x80A0000:leave -D app.bin

What improvements are you looking for exactly?

If you need to have the P1 go into dfu mode automatically I would suggest incorporating custom-baud.c into your script.

I think you could also use:

particle flash --usb bootloader-0.7.0-p1.bin

To have it automatically write to the correct dfu address.

                                  v--What goes here??
dfu-util -d 2b04:d008 -a 0 -s 0x80?0000 -D bootloader-0.7.0-p1.bin

I can't find this information anywhere. I'm trying to avoid the particle command line tools because I have found them to be very flaky and somewhat unpredictable to install and use, especially since I'm integrating them into a larger script.

Also,

Works like a charm!

Understood.

I just tried this (note the -v flag):

$ particle flash --usb -v temp-photon.bin
dfu-util 0.9

Copyright 2005-2009 Weston Schmidt, Harald Welte and OpenMoko Inc.
Copyright 2010-2016 Tormod Volden and Stefan Schmidt
This program is Free Software and has ABSOLUTELY NO WARRANTY
Please report bugs to http://sourceforge.net/p/dfu-util/tickets/

dfu-util: Invalid DFU suffix signature
dfu-util: A valid DFU suffix will be required in a future dfu-util release!!!
Opening DFU capable USB device...
ID 2b04:d006
Run-time device DFU version 011a
Claiming USB DFU Interface...
Setting Alternate Setting #0 ...
Determining device status: state = dfuIDLE, status = 0
dfuIDLE, continuing
DFU mode device DFU version 011a
Device returned transfer size 4096
DfuSe interface name: "Internal Flash   "
Downloading to address = 0x080a0000, size = 3252
Download	[=========================] 100%         3252 bytes
Download done.
File downloaded successfully

Flash success

Right here:

Downloading to address = 0x080a0000, size = 3252

In this example 0x080a0000 is the address.

EDIT:

I think if you tried:

particle flash --usb -v bootloader-0.7.0-p1.bin

The address would be revealed.

Error writing firmware...unknown module function 2, use --force to override

I assume you are flashing the bootloader in the right step of the sequence?

That error sounds dumb.

It successfully flashes over serial with no complaints.

I am concerned that :particle:magic:particle: is happening behind the scenes here since information has been suspiciously omitted.

Perhaps. Did you try --force?

Dare I? :grimacing:

It's the only way to be sure.

EDIT:

Note: DFU over USB on Electron/Photon/P1 (sequence not required)

You may update to 0.7.0 directly, but make sure you have installed v1.29.0 of the CLI (check with particle --version) then run particle update.

Note: P1/Photon Bootloader

The cloud will automatically update the bootloader on P1/Photon devices. If your device does not connect to the cloud, you should flash the bootloader to the device using particle flash --serial. This should be done after upgrading system firmware.

Definitely some particle magic here.

1 Like

And now I am sure that doesn't work!

Edited:
Somewhat as expected, it wrote to 0x080a0000, so no different than an application.

It ended up continuously fast flashing white. I recovered it by writing my test firmware back over the address at 0x080a0000.

I think that bootloader-0.7.0-p1.bin is a "bootloader updater application" that has a :particle:magic component.. or I think the serial handler does something special with it....

Interesting. It's a shame that you are forced to used particle flash --serial. Out of curiosity, does -v have any effect?

It actually doesn't change the output at all using --serial.

Dang it.

shakes fist at particle for using particle magic

EDIT:

I just found this which explains it well.

1 Like

Nope, the bootloader is running DFU Mode, so with the device in DFU Mode you can't replace the bootloader, but --serial is using YModem and this way you can replace the bootloader.

1 Like

You have probably figured this out by now but the bootloader cannot be flashed via DFU and must be flashed via YModem or OTA for Photon and P1 with particle flash --serial bootloader.bin and only after you flash system parts.

2 Likes

Yes, I am successfully updating the bootloader using

echo f > $p1
sb -vv bootloader-0.7.0-p1.bin < $p1 > $p1

where $p1 is the name of the P1 serial device, usually /dev/ttyACA0 or /dev/ttyACA1

2 Likes