开发者学堂课程【极简开发 - 平头哥 YoC 平台如何帮助开发者快速入门 AIoT :YoC 上的必备工序(一)】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/735/detail/13099
YoC 上的必备工序(一)
目录:
一. YoC 介绍
二. YoC 开发环境
三. YoC 芯片 SDK 对接
四. 芯片组件上传到 OCC
前言:
一颗芯片如何对接到 YoC 平台当中、运行到 YoC 必备的工序是什么、如何高效完成对接、移植开发核心步骤是什么YoC 芯片 SDK 对接
一.YoC 介绍
1.什么是 YoC
YoC 是 Yun on Chip,基于 Alios-Things,Alios-Things 可下载,OCC 呈现。平头哥芯片深度优化,重点在统一芯片接口,对接 CSI 接口后可快速芯片 SDK 开发,让 SDK 输出更加快捷并且让产品开发更简单。
CSI 芯片系统接口对接完成后可直接使用 Alios-Things 上组件的资源。基于 Alios-Things 上有基础组件仓库,针对不同芯片的视觉应用子系统、语音应用子系统、安全应用子系统、无线接入子系统,几大板块完整组装就是 YoC 的开发平台。
2.YoC 自由组装的芯片 SDK 框架
YoC 的 SDK通过自由组装的方式,提供很多芯片组件、通用的组件、板子的组件。组件在 OCC 组件仓库池子里,一个芯片需要生成自己的 SDK,可以通过 OCC 的组件仓库,将组件一个个拉下来,结合自身芯片的组件组装成芯片 SDK,三个 SDK 区别是用到的组件不同。比如芯片A用 TEE 技术,将 TEE 拉下来。芯片B是多核的架构,将 IPC 组件拉下来,组装成自己芯片的 SDK。
3.国际认证
YoC 软件平台通过 TUeV 国际认证
TEE 安全系统通过 GP 安全国际认证
BLE&Mesh 通过 SIG BQB 国际认证
二.YoC 开发环境
两种开发环境,命令行开发环境---yoctools、IDE
1.命令行开发环境---yoctools
工具介绍
yoctools 是 YoC 软件开发平台的命令行编译系统,通过 yoctools 工具建立 YoC 开发环境,支持 YoC 组件管理、程序编译、烧录等功能。
chen lf006f796c8fd1d:~/yoc_workspace$yoc init
chen lf@06f796c8fdld:~/yoc_workspace$yoc help
usage:yoc CoMMAND [ARGS]
The complete list of recognized yoc commands are:
addkey Add your RSA public key into repo
convert Directory to component
cpu list support cpu models
export Export component to dest directory
format Format component packageyaml file
help Display detailed help on a command
init Initialize yoc workspace in the current directory
install Install component into project environment
list List component
protect set branch protection
rename Component rename <old name> to <new name>
sdk Generate current solution SDK
search Search for components whose name or summary contains <query>
show Display the detailed compilation information of the current solution
sync Update working tree to the latest revision
toolchain Install toolchain
upload Upload component to OCC
users add or delete user to repo
variable Display variables for the current solution
See 'yoc help <command>’ for more information on a specific command.
General Options:
-V,--version Show version and exit.
安装,标准的安装命令
sudo pip install yoctools
命令,主要体现三个命令,基本上 YoC 开发环境组装好
yoc help
yoc init
yoc install helloworld
更多命令可通过 OCC 网站了解,对 yoctools 有更多的介绍。安装后可看 yoctools 实现的原理,可改装成自己的命令或贡献新颖的命令。
2.CDK 的 IDE 开发环境
Yoc 7.3 工程有 app,Boards、Chips、通用组件,通过图标区别组件的类型。上面是调试开发的按钮。