Go to file
Huang Rui 84b47d6584 Move demo git repo to other place
Signed-off-by: Huang Rui <vowstar@gmail.com>
2019-03-19 13:02:21 +08:00
.github Add github issue and PR templates 2018-09-20 15:00:33 +08:00
cmake Fix format in cmake compile flags 2019-03-15 11:42:55 +08:00
lds Enlarge minimal stack size 2019-01-25 14:03:17 +08:00
lib modify spi slave driver 2019-03-15 16:57:37 +08:00
src remove un-used cmake instructions. notice user see example cmake file. 2018-09-20 23:48:29 +08:00
third_party fix network driver:add select,ioctl;expand TCP packet length 2019-02-27 18:09:54 +08:00
.gitignore Update dmac isr 2018-11-21 16:15:35 +08:00
.travis.yml Move demo git repo to other place 2019-03-19 13:02:21 +08:00
CHANGELOG.md first commit 2018-09-13 21:42:46 +08:00
CMakeLists.txt Set PROJ var automatically 2019-03-15 14:19:35 +08:00
CMakeLists.txt.example.cmake first commit 2018-09-13 21:42:46 +08:00
LICENSE first commit 2018-09-13 21:42:46 +08:00
README.md Add badge for travis CI 2019-03-14 20:02:43 +08:00

README.md

Kendryte K210 FreeRTOS SDK

Build Status

This SDK is for Kendryte K210 which contains FreeRTOS support. If you have any questions, please be free to contact us.

Usage

If you want to start a new project, for instance, hello_world, you only need to:

mkdir your project in src/, cd src && mkdir hello_world, then put your codes in it, and build it.

mkdir build && cd build
cmake .. -DPROJ=<ProjectName> -DTOOLCHAIN=/opt/riscv-toolchain/bin && make

You will get 2 key files, hello_world and hello_world.bin.

  1. If you are using JLink to run or debug your program, use hello_world
  2. If you want to flash it in UOG, using hello_world.bin, then using flash-tool(s) burn .bin to your flash.

This is very important, don't make a mistake in files.

If you don't like place code inside SDK, see CMakeLists.txt.example.cmake