|
ra8-firmware 0.1.0
Bare-metal firmware for the Renesas RA8 family (RA8D2 / RA8P1)
|
Directories | |
| inc | |
| src | |
Two independently compiled images – one Cortex-M85, one Cortex-M33 – stitched into a single flashable image, with both cores running at once and exchanging messages through a shared-SRAM mailbox. Each round the M85 sends an operand and the M33 returns n*3 + 1. That tiny computation is the point: a correct reply can only have been produced by the second core executing, so it is honest evidence of life rather than the M85 reading back its own write.
This is the two-*cores* axis. For the Secure/Non-Secure flavour of "two images" on a single core, see the TrustZone e-reader application.
Only the M85 narrates. Each core has its own ITM on hardware, but the emulator wires only the primary core's to the console, so rather than print lines nobody can see, the M33 stays silent and the M85 reports the replies it received – values that can only have come from the M33.
A default build is silent because ra8_log_info is compiled out below INFO level. The dual-core exchange still runs; a Debug build is what makes it visible.