All Projects → kendryte → Kendryte Freertos Sdk

kendryte / Kendryte Freertos Sdk

Licence: apache-2.0
Kendryte K210 SDK with FreeRTOS

Programming Languages

c
50402 projects - #5 most used programming language

Labels

Projects that are alternatives of or similar to Kendryte Freertos Sdk

Nodejs Sdk
百度AI开放平台 Node.js SDK
Stars: ✭ 222 (+35.37%)
Mutual labels:  ai, sdk
Dotnet Sdk
百度AI开放平台 .Net SDK
Stars: ✭ 312 (+90.24%)
Mutual labels:  ai, sdk
Hyperdash Sdk Py
Official Python SDK for Hyperdash
Stars: ✭ 190 (+15.85%)
Mutual labels:  ai, sdk
Java Sdk
百度AI开放平台 Java SDK
Stars: ✭ 495 (+201.83%)
Mutual labels:  ai, sdk
Ultimatemrz Sdk
Machine-readable zone/travel document (MRZ / MRTD) detector and recognizer using deep learning
Stars: ✭ 66 (-59.76%)
Mutual labels:  ai, sdk
Amadeus Node
Node library for the Amadeus Self-Service travel APIs
Stars: ✭ 91 (-44.51%)
Mutual labels:  ai, sdk
Python Sdk
百度AI开放平台 Python SDK
Stars: ✭ 285 (+73.78%)
Mutual labels:  ai, sdk
Alexa Skills Kit Sdk For Java
The Alexa Skills Kit SDK for Java helps you get a skill up and running quickly, letting you focus on skill logic instead of boilerplate code.
Stars: ✭ 758 (+362.2%)
Mutual labels:  ai, sdk
Clarifai Apple Sdk
Artificial Intelligence with a Vision
Stars: ✭ 46 (-71.95%)
Mutual labels:  ai, sdk
Php Sdk
百度AI开放平台 PHP SDK
Stars: ✭ 81 (-50.61%)
Mutual labels:  ai, sdk
Smartopencv
🔥 🔥 🔥 SmartOpenCV是一个OpenCV在Android端的增强库,解决了OpenCV Android SDK在图像预览方面存在的诸多问题,且无需修改OpenCV SDK源码,与OpenCV的SDK解耦
Stars: ✭ 1,869 (+1039.63%)
Mutual labels:  ai, sdk
Contentful Management.js
JavaScript library for Contentful's Management API (node & browser)
Stars: ✭ 160 (-2.44%)
Mutual labels:  sdk
Airsim
Open source simulator for autonomous vehicles built on Unreal Engine / Unity, from Microsoft AI & Research
Stars: ✭ 12,528 (+7539.02%)
Mutual labels:  ai
Best ai paper 2020
A curated list of the latest breakthroughs in AI by release date with a clear video explanation, link to a more in-depth article, and code
Stars: ✭ 2,140 (+1204.88%)
Mutual labels:  ai
Pokidex
Android app that identifies and detects Pokemons in the provided Image using Tensorflow Lite and Firebase MLKit
Stars: ✭ 157 (-4.27%)
Mutual labels:  ai
Weixinxiaochengxu
小帅一点资讯微信小程序图像识别源码,微信小程序百度AI接口源码,微信小程序图片上传显示缩放缩略图,人工智能,图像识别,人脸颜值分析,植物、动物、车型、LOGO、食材、手写文字识别等
Stars: ✭ 162 (-1.22%)
Mutual labels:  ai
Onesignal Unity Sdk
OneSignal is a free push notification service for mobile apps. This plugin makes it easy to integrate your Unity app with OneSignal. https://onesignal.com
Stars: ✭ 161 (-1.83%)
Mutual labels:  sdk
Nacos Sdk Csharp
🌹 nacos csharp sdk
Stars: ✭ 157 (-4.27%)
Mutual labels:  sdk
Arcgis Pro Sdk
ArcGIS Pro SDK for Microsoft .NET is the new .NET SDK for the ArcGIS Pro Application.
Stars: ✭ 156 (-4.88%)
Mutual labels:  sdk
Styletransfer Ios
Stars: ✭ 155 (-5.49%)
Mutual labels:  ai

Kendryte K210 FreeRTOS SDK

Build Status License

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

[warning]This project is no longer maintained.Not recommended for product development.

Usage

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

  • Linux and OSX

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
  • Windows

Download and install latest CMake.

Download cmake-3.14.1-win64-x64.msi

Download and install latest toolchain.

Download 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.

$env:Path="E:\kendryte-toolchain\bin;C:\Program Files\CMak
e\bin" +  $env:Path

mkdir build && cd build
cmake -G "MinGW Makefiles" ../../../..
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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].