Welcome to the Zephyr RTOS training! This repository includes a ready-to-use development environment based on Zephyr 4.3.0, which you can set up in one of three ways:
Follow the following guide:
Make sure to select appropriate OS and to perform all steps till Build the Blinky Sample.
The Blinky application was built and flashed on a Renesas EK-RA6B1 evaluation board.
The required board support is currently available through an internal Renesas Zephyr BSP and is not included in this repository.
# Enter workspace to have access to west etc.
cd ~/zephyrproject
# Build target from the directory you want.
west build -b ek_ra6b1 ~/zephyr-course-dio/app
# Copy .elf file to Windows FS, to be later accessed by Jlink
cp /home/turing/zephyrproject/build/zephyr/zephyr.elf /mnt/c/Users/a5165721/
# Edit configuration (Kconfig) using UI
west build -t menuconfig
# Move on to Jlink.exe ...# ... Open JLink.exe
# Initial configuration
> connect
> R7KA6B1BG
> S (SWD)
> 4000 kHz
# Load the .elf file
> loadfile C:\Users\a5165721\zephyr.elf
# Reset
> r
# Execute code
> g