Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gregdavill/CH32V003-makefile-example
CH32V003 is an ultra-cheap RISC-V MCU with 2KB SRAM, 16KB flash, and up to 18 GPIOs
https://github.com/gregdavill/CH32V003-makefile-example
Last synced: 3 months ago
JSON representation
CH32V003 is an ultra-cheap RISC-V MCU with 2KB SRAM, 16KB flash, and up to 18 GPIOs
- Host: GitHub
- URL: https://github.com/gregdavill/CH32V003-makefile-example
- Owner: gregdavill
- License: apache-2.0
- Created: 2022-12-17T09:16:50.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-21T08:38:04.000Z (almost 2 years ago)
- Last Synced: 2024-05-02T00:12:43.677Z (7 months ago)
- Language: Makefile
- Size: 106 KB
- Stars: 14
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Basic CH32V003 RISCV Makefile project
Requirements:
- xpack riscv toolchain
Download from releases here, and add to your path.
(https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/latest)Set up udev rules for WCH link
```
sudo cp ./50-wch.rules /etc/udev/rules.d
sudo udevadm control --reload-rules
```Make project
```
make
```# Licence
Unless otherwise stated files are licensed as Apache-2.0
Files under `vendor/` are from openwch (https://github.com/openwch/ch32v003) Licensed under Apache-2.0
Makefile is based on an example here: https://github.com/gregdavill/CH32V307-makefile-example