|
|
||
|---|---|---|
| Core | ||
| Drivers | ||
| Lib/YMF262-HAL | ||
| cmake | ||
| .gitignore | ||
| .mxproject | ||
| CMakeLists.txt | ||
| CMakePresets.json | ||
| README.md | ||
| STM32F722XX_FLASH.ld | ||
| YMF262_Devboard_Firmware.ioc | ||
| startup_stm32f722xx.s | ||
README.md
YMF-262 Firmware for Nucleo F722RE Board and STM32F7 MCU
Building
To build a Flashable .elf file issue the following commands:
-
Debug:
cmake --preset Debug && cmake --build --preset Debug -
Release:
cmake --preset Release && cmake --build --preset Release
Flashing:
To flash the .elf file please issue the folowing command:
openocd -f interface/stlink.cfg -f target/stm32f7x.cfg -c "program YMF262_Devboard_Firmware.elf verify reset exit"