# iec61850 **Repository Path**: zenghaiqing/iec61850 ## Basic Information - **Project Name**: iec61850 - **Description**: 基于 libiec61850 的应用程序 - **Primary Language**: C++ - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-11 - **Last Updated**: 2026-01-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # iec61850 #### 介绍 #### 软件架构 #### 安装教程 ##### 克隆仓库 ```shell git clone https://gitee.com/zenghaiqing/iec61850.git ``` ##### 查看帮助 ```shell ./build.sh show_help ``` ##### 全量编译(生成 ARM-Linux 可执行文件) ```shell ./build.sh all ``` ##### 清理中间文件 ```shell ./build.sh clean ``` #### 使用说明 ##### 编译例程 编译 **libiec61850** 的例程方法, 如编译 **server_example_simple** 可执行以下命令: ```shell cd build/libiec61850/examples/server_example_simple make TARGET=LINUX-ARM ARM_TOOLCHAIN_PREFIX=arm-none-linux-gnueabihf- ```