Skip to content
Failed

#27206 (Mar 3, 2026, 12:04:24 PM)

Started 4 hr 46 min ago
Took 2.4 sec on build5-deb12build-ansible

Started by upstream project gerrit-osmo-asf4-dfu build number 118
originally caused by:

This run spent:

  • 6.4 sec waiting;
  • 2.4 sec build duration;
  • 8.9 sec total from scheduled to completion.
Revision: 6d6e9a5f9e76b4c3b0c9faaea85aae8152870d29
Repository: $GERRIT_REPO_URL
  • master
Implement a blinking LED using Timer Counter 0

Sadly the LED is connected to a GPIO doesn't have useful functions.
The only other function is ETM tracing.
The GPIO can't be controlled by a Timer Counter (TC) or
Timer Counter for Control (TCC) because only certain GPIOs
are able to be controlled by it.

Use a Timer Counter to count the time in one-shot mode
and trigger the LED from the main main loop.
This has the advantage of keeping the interference to a minimum in difference
to a Timer Counter interrupt.
Additional by using the ARM core to change the LED, it can be used as heart beat,
if the LED blinks, the ARM core is still 'alive'.

There are other possibilities to trigger the LED:
- use a TC to trigger the Event System, which toggles the GPIO.
- use a TC to trigger the DMA engine, which transfer 1 byte toggles the GPIO.

Change-Id: I8144120d07f73356855d084016edcb77d202da7f
lynxis at