20 lines
475 B
Plaintext
20 lines
475 B
Plaintext
|
|
:name: QuickLogic QuickFeather
|
||
|
|
:description: This script runs Zephyr RTOS "Dining philosophers" sample on a QuickFeather board.
|
||
|
|
|
||
|
|
$name?="QuickFeather"
|
||
|
|
|
||
|
|
using sysbus
|
||
|
|
mach create $name
|
||
|
|
machine LoadPlatformDescription @platforms/boards/eos-s3-quickfeather.repl
|
||
|
|
|
||
|
|
$bin?=@https://dl.antmicro.com/projects/renode/quickfeather--zephyr_philosophers.elf-s_454444-fa95db2148ba0aba675edc0e9f3a51a739a37608
|
||
|
|
|
||
|
|
showAnalyzer uart
|
||
|
|
|
||
|
|
macro reset
|
||
|
|
"""
|
||
|
|
sysbus LoadELF $bin
|
||
|
|
"""
|
||
|
|
runMacro $reset
|
||
|
|
|