xiuos/Ubiquitous/XiZi
Liu_Weichao f0f1b1c988 delete error description and wrong define 2022-06-14 16:43:00 +08:00
..
arch 1、add i2c driver for xidatong;2、add touch driver for xidatong;3、add input device for lvgl;4、repair interrupt for m7;5、repair startup sequence for xidatong 2022-05-30 16:19:38 +08:00
board fix pin_mux compile error 2022-06-14 14:46:18 +08:00
fs delete error description and wrong define 2022-06-14 16:43:00 +08:00
kernel Merge branch 'prepare_for_master' of https://git.trustie.net/xuos/xiuos into xidatong 2022-06-14 14:39:48 +08:00
lib feat modify XiUOS_Kernel dir from Ubiquitous/XiUOS to Ubiquitous/XiZi 2022-03-01 14:15:01 +08:00
resources delete error description and wrong define 2022-06-14 16:43:00 +08:00
tool optimize plc motor test and fix the lwip mutex and sem error 2022-03-31 11:27:16 +08:00
.gitignore feat modify XiUOS_Kernel dir from Ubiquitous/XiUOS to Ubiquitous/XiZi 2022-03-01 14:15:01 +08:00
Kconfig feat modify XiUOS_Kernel dir from Ubiquitous/XiUOS to Ubiquitous/XiZi 2022-03-01 14:15:01 +08:00
LICENSE feat modify XiUOS_Kernel dir from Ubiquitous/XiUOS to Ubiquitous/XiZi 2022-03-01 14:15:01 +08:00
Makefile fead support Ubiquitous/XiZi/board/xidatong bsp 2022-03-15 11:18:55 +08:00
README.md update XiZi README.md and ok1052-c board README.md 2022-03-18 10:09:07 +08:00
compiler.mk feat modify XiUOS_Kernel dir from Ubiquitous/XiUOS to Ubiquitous/XiZi 2022-03-01 14:15:01 +08:00
link.mk feat modify XiUOS_Kernel dir from Ubiquitous/XiUOS to Ubiquitous/XiZi 2022-03-01 14:15:01 +08:00
mergebin.py feat modify XiUOS_Kernel dir from Ubiquitous/XiUOS to Ubiquitous/XiZi 2022-03-01 14:15:01 +08:00
path_app.mk feat modify XiUOS_Kernel dir from Ubiquitous/XiUOS to Ubiquitous/XiZi 2022-03-01 14:15:01 +08:00
path_kernel.mk Merge branch 'prepare_for_master' of https://git.trustie.net/xuos/xiuos into xidatong 2022-04-12 10:05:48 +08:00

README.md

XiUOS README

矽璓XiUOS是一款面向智慧车间的工业物联网操作系统主要由一个极简的微型实时操作系统内核XiZi和其上的工业物联框架构成通过高效管理工业物联网设备、支撑工业物联应用在生产车间内实现智能化的“感知环境、联网传输、知悉识别、控制调整”促进以工业设备和工业控制系统为核心的人、机、物深度互联帮助提升生产线的数字化和智能化水平。

目录结构

名称 说明
arch 架构代码
board 板级支持包
fs 文件系统
kernel 内核源码
lib 第三方库源码
resources 驱动文件
tool 系统工具

硬件支持

目前XiUOS支持ARM和RISC-V两种架构的微处理器:

ARM

ARM架构系列的开发板有

aiit-arm32-board nuvoton-m2354 ok1052-c stm32f103-nano stm32f407-st-discovery stm32f407zgt6 xidatong

RISC-V

RISC-V架构系列的开发板有

aiit-riscv64-board gapuino gd32vf103_rvstar hifive1-rev-B kd233 maix-go rv32m1_vega

开发环境

推荐使用:

操作系统: Ubuntu18.04

开发工具: VSCode

依赖包安装:

$ sudo apt-get install build-essential pkg-config
$ sudo apt-get install gcc make libncurses5-dev openssl libssl-dev bison flex libelf-dev autoconf libtool gperf libc6-dev

编译工具链:

ARM arm-none-eabi默认安装到Ubuntu的/usr/bin/arm-none-eabi-,使用如下命令行下载

$ sudo apt-get install gcc-arm-none-eabi

RISC-V: riscv-none-embed-默认安装到Ubuntu的/opt/,下载源码并解压。下载网址

$ tar -zxvf gnu-mcu-eclipse-riscv-none-gcc-8.2.0-2.1-20190425-1021-centos64.tgz -C /opt/

烧写工具

ARMST-LINK NU-LINK

RISC-VK-FLash

每种开发板分别对应board目录下的一个文件夹具体编译及烧录步骤请参见board目录下对应文件夹下的README文件。