xiuos/Ubiquitous/XiZi_IIoT
xuedongliang 02c82025c8 support amp
it is OK
2024-07-29 11:11:32 +08:00
..
arch support rzg2ul-m33 2024-02-28 16:28:16 +08:00
board support amp 2024-07-29 11:11:32 +08:00
fs 可以运行,但是还有BUG 2024-01-11 11:25:46 +08:00
kernel support rzg2ul-m33 2024-02-28 16:28:16 +08:00
lib fix adapter lora bug on edu-arm32 board 2023-08-24 14:38:24 +08:00
resources modify webserver function using mongoose.a(compile using arm-none-eabi-gcc (15:6.3.1+svn253039-1build1) 6.3.1 20170620) 2023-12-13 14:30:40 +08:00
tool fix bug about the letter shell can`t be used in board rzg2ul 2024-03-06 13:45:33 +08:00
.gitignore modify XiUOS DIR : (1.add plc_demo in APP_Framework/control_app; 2.add industrial_network、industrial_fieldbus and industrial_wlan; 3.add XiZi_AIoT and modify XiZi as XiZi_IIoT.) 2022-09-27 20:39:52 +08:00
Kconfig 1、Adapt ota-related interfaces to the XiZi_IIoT/tool/bootloader directory 2023-05-06 13:28:16 +08:00
LICENSE modify XiUOS DIR : (1.add plc_demo in APP_Framework/control_app; 2.add industrial_network、industrial_fieldbus and industrial_wlan; 3.add XiZi_AIoT and modify XiZi as XiZi_IIoT.) 2022-09-27 20:39:52 +08:00
Makefile support rzg2ul-m33 from chuyunfei 2024-03-12 16:28:14 +08:00
README.md feat change edu arm32 board name from hc32f4a0 to edu-arm32 2023-07-27 10:21:37 +08:00
compiler.mk Support double lwip eport, use mongoose.a 2023-12-06 15:59:27 +08:00
link.mk feat: support tcp client 2023-12-13 19:30:37 +08:00
link_libc.mk modify XiUOS DIR : (1.add plc_demo in APP_Framework/control_app; 2.add industrial_network、industrial_fieldbus and industrial_wlan; 3.add XiZi_AIoT and modify XiZi as XiZi_IIoT.) 2022-09-27 20:39:52 +08:00
link_lwip.mk modify XiUOS DIR : (1.add plc_demo in APP_Framework/control_app; 2.add industrial_network、industrial_fieldbus and industrial_wlan; 3.add XiZi_AIoT and modify XiZi as XiZi_IIoT.) 2022-09-27 20:39:52 +08:00
link_mongoose.mk Support double lwip eport, use mongoose.a 2023-12-06 15:59:27 +08:00
mergebin.py Fix: mergebin.py generate .bin file according to board 2023-08-23 13:53:04 +08:00
path_app.mk add frermodbustcp and CIP protocol; add three PLC test demo and readme, include ab L30、850and abb PM5630 2024-02-02 10:21:22 +08:00
path_kernel.mk support amp 2024-07-29 11:11:32 +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-arm32 edu-arm32

RISC-V

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

aiit-riscv64-board gapuino gd32vf103-rvstar hifive1-rev-B kd233 maix-go rv32m1-vega edu-riscv64

开发环境

推荐使用:

操作系统: 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文件。