AdaptiveBrightness/firmware
BlackMark 392a03a23d Fix typo in README 2022-01-18 13:43:57 +01:00
..
Drivers Add watch dog timer 2020-07-09 19:41:13 +02:00
Inc Add watch dog timer 2020-07-09 19:41:13 +02:00
Middlewares/ST/STM32_USB_Device_Library Rename firmware folder 2020-07-09 18:16:41 +02:00
Src Reflect watchdog reset with startup color 2020-07-09 20:08:20 +02:00
.mxproject Add watch dog timer 2020-07-09 19:41:13 +02:00
AdaptiveBrightnessFirmware.ioc Add watch dog timer 2020-07-09 19:41:13 +02:00
Makefile Add watch dog timer 2020-07-09 19:41:13 +02:00
README.md Fix typo in README 2022-01-18 13:43:57 +01:00
STM32F042K6Tx_FLASH.ld Rename firmware folder 2020-07-09 18:16:41 +02:00
startup_stm32f042x6.s Rename firmware folder 2020-07-09 18:16:41 +02:00

README.md

Adaptive Brightness Firmware

Building

Prerequisites

Build instructions

The gcc-arn-none-eabi compiler needs to be in the path. For example by executing export PATH="$(pwd):$PATH" in the bin directory of the toolchain.

Navigate to the firmware directory and do:

$ make

This will build the firmware in a directory called build. By default the firmware will be built in release mode. Change the DEBUG and OPT settings in the Makefile for a debug build like this:

DEBUG = 1
OPT  = -Og

Flashing

The firmware can either be flashed using the built-in DFU bootloader or using the SWD (Serial Wire Debug) interface with, for example, an ST-Link v2 programmer/debugger.

DFU

Prerequisites for DFU

Entering DFU bootloader

The board has a button labeled BOOT, hold this button down while plugging in the device and the DFU bootloader will be executed.

Installing correct driver (Windows only)

Use Zadig to install the WinUSB driver for the device while it is running the bootloader. Make sure to enable the List All Devices option in order to be able to select the device.

This only needs to be done once. Windows will then always use the installed driver for this device.

Flashing with dfu-util

You can check if the device is recognized by executing:

$ dfu-util -l

Found DFU: [0483:df11] ver=2200, devnum=57, cfg=1, intf=0, path="2-13.2.2", alt=1, name="@Option Bytes  /0x1FFFF800/01*016 e", serial="FFFFFFFEFFFF"
Found DFU: [0483:df11] ver=2200, devnum=57, cfg=1, intf=0, path="2-13.2.2", alt=0, name="@Internal Flash  /0x08000000/032*0001Kg", serial="FFFFFFFEFFFF"

The firmware can then be flashed using:

$ dfu-util -a 0 -s 0x08000000 -D AdaptiveBrightnessFirmware.bin

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

You need to unplug and re-plug the device to exit the bootloader and start executing the firmware.

SWD

Instructions vary depending on the SWD device and software used. As an example you could use openocd with an ST-Link v2 like this:

$ openocd -f interface/stlink.cfg  -f target/stm32f0x.cfg -c "program build/AdaptiveBrightnessFirmware.elf verify reset exit"

Note: The STM32 ST-LINK Utility from ST does not issue a reset signal over the SWD interface. This makes flashing using this tool extremely difficult, as the reset line has to be manually triggered for the utility to be able to connect to the chip. openocd does not have this problem.