kendryte-standalone-sdk/README.md

51 lines
1.8 KiB
Markdown
Raw Permalink Normal View History

# Kendryte K210 standalone SDK
[![Build Status](https://travis-ci.org/kendryte/kendryte-standalone-sdk.svg)](https://travis-ci.org/kendryte/kendryte-standalone-sdk)
2019-04-11 08:13:58 -04:00
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
2018-09-13 10:06:11 -04:00
This SDK is for Kendryte K210 without OS support.
If you have any questions, please be free to contact us.
## Usage
2018-09-13 10:06:11 -04:00
If you want to start a new project, for instance, `hello_world`, you only need to:
- Linux and OSX
2019-03-20 07:32:23 -04:00
`mkdir` your project in `src/`, `cd src && mkdir hello_world`, then put your codes in it, enter SDK root directory and build it.
2018-09-13 10:06:11 -04:00
```bash
2018-09-13 10:06:11 -04:00
mkdir build && cd build
cmake .. -DPROJ=<ProjectName> -DTOOLCHAIN=/opt/riscv-toolchain/bin && make
```
- Windows
Download and install latest CMake.
[Download cmake-3.14.1-win64-x64.msi](https://github.com/Kitware/CMake/releases/download/v3.14.1/cmake-3.14.1-win64-x64.msi)
Download and install latest toolchain.
[Download kendryte-toolchain-win-i386-8.2.0-20190409.tar.xz](https://github.com/kendryte/kendryte-gnu-toolchain/releases/download/v8.2.0-20190409/kendryte-toolchain-win-i386-8.2.0-20190409.tar.xz)
Open a Windows Powershell, cd to Project directory.
`mkdir` your project in `src/`, `cd src && mkdir hello_world`, then put your codes in it, and build it.
```powershell
$env:Path="E:\kendryte-toolchain\bin;C:\Program Files\CMak
e\bin" + $env:Path
mkdir build && cd build
cmake -G "MinGW Makefiles" ../../../..
make
```
2018-09-13 10:06:11 -04:00
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 <ProjectName>.bin to your flash.
This is very important, don't make a mistake in files.