├── .gitattributes ├── .gitignore ├── .gitmodules ├── .vscode ├── .cortex-debug.registers.state.json ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── Makefile ├── README.md ├── bochsrc ├── boot ├── arm │ ├── boot-armv5.s │ ├── boot-armv7-a.s │ ├── boot-armv7.s │ ├── boot.s │ ├── config.h │ ├── init-armv5.c │ ├── init-armv7-a.c │ ├── init-armv7.c │ ├── init.h │ ├── link-cubieboard2.ld │ ├── link-miyoo.ld │ ├── link-orangepi-pc.ld │ ├── link-raspi2.ld │ ├── link-rk3128.ld │ ├── link-rk3288.ld │ ├── link-stm32f4xx.ld │ ├── link-t113-s3.ld │ ├── link-v3s.ld │ ├── link.ld │ ├── user-versatilepb.ld │ └── ya.py ├── arm64 │ ├── boot-armv8-a.s │ ├── link-raspi3.ld │ └── ya.py ├── riscv │ ├── SConscript │ ├── boot.s │ ├── config.h │ ├── init.c │ ├── init.h │ ├── link.ld │ └── ya.py ├── x86-duck │ ├── SConscript │ ├── config.h │ ├── init.c │ └── init.h ├── x86 │ ├── SConscript │ ├── boot-x86.s │ ├── boot.s │ ├── init.c │ ├── init.h │ ├── link.ld │ ├── util.s │ └── ya.py ├── xtensa │ ├── SConscript │ ├── boot.s │ ├── esp32.h │ ├── init.c │ ├── init.h │ ├── link.ld │ └── ya.py └── ya.py ├── docs ├── demo │ ├── etk-gui.jpeg │ ├── etk-terminal.png │ ├── etk.png │ ├── game-dev.jpg │ ├── group.jpeg │ ├── lvgl-gui.png │ ├── lvgl.mp4 │ ├── lvgl2.png │ ├── microui.jpg │ ├── shell.png │ ├── starup.png │ ├── v3s.mp4 │ └── yiyiya.png ├── develop │ ├── image │ │ ├── 2022-11-19-19-30-22.png │ │ ├── 2022-11-19-19-35-15.png │ │ ├── 2022-11-19-20-41-32.png │ │ ├── 2022-11-27-00-34-44.png │ │ ├── 2022-11-27-00-36-53.png │ │ ├── 2022-11-27-00-45-11.png │ │ ├── 2023-06-18-11-25-44.png │ │ ├── 2023-07-16-12-08-27.png │ │ ├── 2024-01-07-13-24-25.png │ │ ├── 2024-01-07-15-01-06.png │ │ ├── 2024-01-07-15-04-13.png │ │ ├── 2024-01-07-15-04-33.png │ │ ├── 2024-01-07-15-05-42.png │ │ ├── 2024-01-07-15-20-18.png │ │ ├── 2024-01-07-15-20-40.png │ │ ├── 2024-01-07-15-44-54.png │ │ ├── 2024-01-07-15-45-01.png │ │ ├── 2024-01-07-15-59-37.png │ │ ├── 2024-01-07-16-15-16.png │ │ ├── 2024-01-20-15-53-16.png │ │ ├── 2024-01-20-16-25-29.png │ │ ├── 2024-01-20-16-26-27.png │ │ ├── 2024-01-20-16-26-56.png │ │ ├── 2024-01-20-16-27-58.png │ │ ├── 2024-01-20-16-37-45.png │ │ ├── 2024-01-21-17-19-45.png │ │ └── 2024-04-05-18-34-19.png │ ├── 内核开发.md │ ├── 实例Demo.md │ ├── 应用开发.md │ ├── 开发板运行.md │ ├── 开发环境.md │ ├── 微内核.md │ ├── 性能分析.md │ ├── 标准库.md │ ├── 源码目录.md │ ├── 硬件调试.md │ ├── 移植适配.md │ ├── 简介.md │ └── 驱动开发.md ├── image │ ├── app-build.png │ ├── arch.png │ ├── debug-entry.png │ ├── debug-stm32.png │ ├── jlink-server.png │ ├── qemu-raspi2.jpg │ ├── stm32-shell.png │ ├── stm32.jpg │ ├── v3s.png │ ├── vcxsrv-ac.png │ ├── vcxsrv-one.png │ ├── vcxsrv-win.png │ └── vscode.png ├── install │ ├── linux.md │ ├── mac.md │ ├── windows.md │ └── wsl.md └── material │ ├── memory.md │ ├── st7735.md │ └── syscall.md ├── image ├── kernel-cubieboard2.its ├── kernel-miyoo.its ├── kernel-orangepi-pc.its ├── kernel-raspi2.its ├── kernel-rk3128.its ├── kernel-t113-s3.its ├── kernel-v3s.its ├── kernel.its └── ya.py ├── tools ├── bmp2h.py ├── gmenu.py ├── mksunxi │ ├── Makefile │ ├── mksunxiboot.c │ └── spl.h └── trace.py ├── xconfig ├── STM32F401.svd └── stm32f4xx.jlink ├── xenv ├── env.py ├── show.py └── support.py └── ya.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/.cortex-debug.registers.state.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/README.md -------------------------------------------------------------------------------- /bochsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/bochsrc -------------------------------------------------------------------------------- /boot/arm/boot-armv5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/boot-armv5.s -------------------------------------------------------------------------------- /boot/arm/boot-armv7-a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/boot-armv7-a.s -------------------------------------------------------------------------------- /boot/arm/boot-armv7.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/boot-armv7.s -------------------------------------------------------------------------------- /boot/arm/boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/boot.s -------------------------------------------------------------------------------- /boot/arm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/config.h -------------------------------------------------------------------------------- /boot/arm/init-armv5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/init-armv5.c -------------------------------------------------------------------------------- /boot/arm/init-armv7-a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/init-armv7-a.c -------------------------------------------------------------------------------- /boot/arm/init-armv7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/init-armv7.c -------------------------------------------------------------------------------- /boot/arm/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/init.h -------------------------------------------------------------------------------- /boot/arm/link-cubieboard2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/link-cubieboard2.ld -------------------------------------------------------------------------------- /boot/arm/link-miyoo.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/link-miyoo.ld -------------------------------------------------------------------------------- /boot/arm/link-orangepi-pc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/link-orangepi-pc.ld -------------------------------------------------------------------------------- /boot/arm/link-raspi2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/link-raspi2.ld -------------------------------------------------------------------------------- /boot/arm/link-rk3128.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/link-rk3128.ld -------------------------------------------------------------------------------- /boot/arm/link-rk3288.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/link-rk3288.ld -------------------------------------------------------------------------------- /boot/arm/link-stm32f4xx.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/link-stm32f4xx.ld -------------------------------------------------------------------------------- /boot/arm/link-t113-s3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/link-t113-s3.ld -------------------------------------------------------------------------------- /boot/arm/link-v3s.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/link-v3s.ld -------------------------------------------------------------------------------- /boot/arm/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/link.ld -------------------------------------------------------------------------------- /boot/arm/user-versatilepb.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/user-versatilepb.ld -------------------------------------------------------------------------------- /boot/arm/ya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm/ya.py -------------------------------------------------------------------------------- /boot/arm64/boot-armv8-a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm64/boot-armv8-a.s -------------------------------------------------------------------------------- /boot/arm64/link-raspi3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm64/link-raspi3.ld -------------------------------------------------------------------------------- /boot/arm64/ya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/arm64/ya.py -------------------------------------------------------------------------------- /boot/riscv/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/riscv/SConscript -------------------------------------------------------------------------------- /boot/riscv/boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/riscv/boot.s -------------------------------------------------------------------------------- /boot/riscv/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/riscv/config.h -------------------------------------------------------------------------------- /boot/riscv/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/riscv/init.c -------------------------------------------------------------------------------- /boot/riscv/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/riscv/init.h -------------------------------------------------------------------------------- /boot/riscv/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/riscv/link.ld -------------------------------------------------------------------------------- /boot/riscv/ya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/riscv/ya.py -------------------------------------------------------------------------------- /boot/x86-duck/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/x86-duck/SConscript -------------------------------------------------------------------------------- /boot/x86-duck/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/x86-duck/config.h -------------------------------------------------------------------------------- /boot/x86-duck/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/x86-duck/init.c -------------------------------------------------------------------------------- /boot/x86-duck/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/x86-duck/init.h -------------------------------------------------------------------------------- /boot/x86/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/x86/SConscript -------------------------------------------------------------------------------- /boot/x86/boot-x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/x86/boot-x86.s -------------------------------------------------------------------------------- /boot/x86/boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/x86/boot.s -------------------------------------------------------------------------------- /boot/x86/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/x86/init.c -------------------------------------------------------------------------------- /boot/x86/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/x86/init.h -------------------------------------------------------------------------------- /boot/x86/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/x86/link.ld -------------------------------------------------------------------------------- /boot/x86/util.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/x86/util.s -------------------------------------------------------------------------------- /boot/x86/ya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/x86/ya.py -------------------------------------------------------------------------------- /boot/xtensa/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/xtensa/SConscript -------------------------------------------------------------------------------- /boot/xtensa/boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/xtensa/boot.s -------------------------------------------------------------------------------- /boot/xtensa/esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/xtensa/esp32.h -------------------------------------------------------------------------------- /boot/xtensa/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/xtensa/init.c -------------------------------------------------------------------------------- /boot/xtensa/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/xtensa/init.h -------------------------------------------------------------------------------- /boot/xtensa/link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/xtensa/link.ld -------------------------------------------------------------------------------- /boot/xtensa/ya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/xtensa/ya.py -------------------------------------------------------------------------------- /boot/ya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/boot/ya.py -------------------------------------------------------------------------------- /docs/demo/etk-gui.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/etk-gui.jpeg -------------------------------------------------------------------------------- /docs/demo/etk-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/etk-terminal.png -------------------------------------------------------------------------------- /docs/demo/etk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/etk.png -------------------------------------------------------------------------------- /docs/demo/game-dev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/game-dev.jpg -------------------------------------------------------------------------------- /docs/demo/group.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/group.jpeg -------------------------------------------------------------------------------- /docs/demo/lvgl-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/lvgl-gui.png -------------------------------------------------------------------------------- /docs/demo/lvgl.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/lvgl.mp4 -------------------------------------------------------------------------------- /docs/demo/lvgl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/lvgl2.png -------------------------------------------------------------------------------- /docs/demo/microui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/microui.jpg -------------------------------------------------------------------------------- /docs/demo/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/shell.png -------------------------------------------------------------------------------- /docs/demo/starup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/starup.png -------------------------------------------------------------------------------- /docs/demo/v3s.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/v3s.mp4 -------------------------------------------------------------------------------- /docs/demo/yiyiya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/demo/yiyiya.png -------------------------------------------------------------------------------- /docs/develop/image/2022-11-19-19-30-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2022-11-19-19-30-22.png -------------------------------------------------------------------------------- /docs/develop/image/2022-11-19-19-35-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2022-11-19-19-35-15.png -------------------------------------------------------------------------------- /docs/develop/image/2022-11-19-20-41-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2022-11-19-20-41-32.png -------------------------------------------------------------------------------- /docs/develop/image/2022-11-27-00-34-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2022-11-27-00-34-44.png -------------------------------------------------------------------------------- /docs/develop/image/2022-11-27-00-36-53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2022-11-27-00-36-53.png -------------------------------------------------------------------------------- /docs/develop/image/2022-11-27-00-45-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2022-11-27-00-45-11.png -------------------------------------------------------------------------------- /docs/develop/image/2023-06-18-11-25-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2023-06-18-11-25-44.png -------------------------------------------------------------------------------- /docs/develop/image/2023-07-16-12-08-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2023-07-16-12-08-27.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-07-13-24-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-07-13-24-25.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-07-15-01-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-07-15-01-06.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-07-15-04-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-07-15-04-13.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-07-15-04-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-07-15-04-33.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-07-15-05-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-07-15-05-42.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-07-15-20-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-07-15-20-18.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-07-15-20-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-07-15-20-40.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-07-15-44-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-07-15-44-54.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-07-15-45-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-07-15-45-01.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-07-15-59-37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-07-15-59-37.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-07-16-15-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-07-16-15-16.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-20-15-53-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-20-15-53-16.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-20-16-25-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-20-16-25-29.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-20-16-26-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-20-16-26-27.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-20-16-26-56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-20-16-26-56.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-20-16-27-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-20-16-27-58.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-20-16-37-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-20-16-37-45.png -------------------------------------------------------------------------------- /docs/develop/image/2024-01-21-17-19-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-01-21-17-19-45.png -------------------------------------------------------------------------------- /docs/develop/image/2024-04-05-18-34-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/image/2024-04-05-18-34-19.png -------------------------------------------------------------------------------- /docs/develop/内核开发.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/内核开发.md -------------------------------------------------------------------------------- /docs/develop/实例Demo.md: -------------------------------------------------------------------------------- 1 | # 实例 2 | 3 | ## ls应用 4 | 5 | -------------------------------------------------------------------------------- /docs/develop/应用开发.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/应用开发.md -------------------------------------------------------------------------------- /docs/develop/开发板运行.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/开发板运行.md -------------------------------------------------------------------------------- /docs/develop/开发环境.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/开发环境.md -------------------------------------------------------------------------------- /docs/develop/微内核.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/微内核.md -------------------------------------------------------------------------------- /docs/develop/性能分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/性能分析.md -------------------------------------------------------------------------------- /docs/develop/标准库.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/标准库.md -------------------------------------------------------------------------------- /docs/develop/源码目录.md: -------------------------------------------------------------------------------- 1 | # 源码目录 2 | 3 | -------------------------------------------------------------------------------- /docs/develop/硬件调试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/硬件调试.md -------------------------------------------------------------------------------- /docs/develop/移植适配.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/移植适配.md -------------------------------------------------------------------------------- /docs/develop/简介.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/简介.md -------------------------------------------------------------------------------- /docs/develop/驱动开发.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/develop/驱动开发.md -------------------------------------------------------------------------------- /docs/image/app-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/app-build.png -------------------------------------------------------------------------------- /docs/image/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/arch.png -------------------------------------------------------------------------------- /docs/image/debug-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/debug-entry.png -------------------------------------------------------------------------------- /docs/image/debug-stm32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/debug-stm32.png -------------------------------------------------------------------------------- /docs/image/jlink-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/jlink-server.png -------------------------------------------------------------------------------- /docs/image/qemu-raspi2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/qemu-raspi2.jpg -------------------------------------------------------------------------------- /docs/image/stm32-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/stm32-shell.png -------------------------------------------------------------------------------- /docs/image/stm32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/stm32.jpg -------------------------------------------------------------------------------- /docs/image/v3s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/v3s.png -------------------------------------------------------------------------------- /docs/image/vcxsrv-ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/vcxsrv-ac.png -------------------------------------------------------------------------------- /docs/image/vcxsrv-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/vcxsrv-one.png -------------------------------------------------------------------------------- /docs/image/vcxsrv-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/vcxsrv-win.png -------------------------------------------------------------------------------- /docs/image/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/image/vscode.png -------------------------------------------------------------------------------- /docs/install/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/install/linux.md -------------------------------------------------------------------------------- /docs/install/mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/install/mac.md -------------------------------------------------------------------------------- /docs/install/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/install/windows.md -------------------------------------------------------------------------------- /docs/install/wsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/install/wsl.md -------------------------------------------------------------------------------- /docs/material/memory.md: -------------------------------------------------------------------------------- 1 | ## 内存管理 -------------------------------------------------------------------------------- /docs/material/st7735.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/docs/material/st7735.md -------------------------------------------------------------------------------- /docs/material/syscall.md: -------------------------------------------------------------------------------- 1 | 2 | ## 系统调用 3 | 4 | ```c 5 | 6 | ``` 7 | -------------------------------------------------------------------------------- /image/kernel-cubieboard2.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/image/kernel-cubieboard2.its -------------------------------------------------------------------------------- /image/kernel-miyoo.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/image/kernel-miyoo.its -------------------------------------------------------------------------------- /image/kernel-orangepi-pc.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/image/kernel-orangepi-pc.its -------------------------------------------------------------------------------- /image/kernel-raspi2.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/image/kernel-raspi2.its -------------------------------------------------------------------------------- /image/kernel-rk3128.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/image/kernel-rk3128.its -------------------------------------------------------------------------------- /image/kernel-t113-s3.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/image/kernel-t113-s3.its -------------------------------------------------------------------------------- /image/kernel-v3s.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/image/kernel-v3s.its -------------------------------------------------------------------------------- /image/kernel.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/image/kernel.its -------------------------------------------------------------------------------- /image/ya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/image/ya.py -------------------------------------------------------------------------------- /tools/bmp2h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/tools/bmp2h.py -------------------------------------------------------------------------------- /tools/gmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/tools/gmenu.py -------------------------------------------------------------------------------- /tools/mksunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/tools/mksunxi/Makefile -------------------------------------------------------------------------------- /tools/mksunxi/mksunxiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/tools/mksunxi/mksunxiboot.c -------------------------------------------------------------------------------- /tools/mksunxi/spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/tools/mksunxi/spl.h -------------------------------------------------------------------------------- /tools/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/tools/trace.py -------------------------------------------------------------------------------- /xconfig/STM32F401.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/xconfig/STM32F401.svd -------------------------------------------------------------------------------- /xconfig/stm32f4xx.jlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/xconfig/stm32f4xx.jlink -------------------------------------------------------------------------------- /xenv/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/xenv/env.py -------------------------------------------------------------------------------- /xenv/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/xenv/show.py -------------------------------------------------------------------------------- /xenv/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/xenv/support.py -------------------------------------------------------------------------------- /ya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilbinary/YiYiYa/HEAD/ya.py --------------------------------------------------------------------------------