# drivers **Repository Path**: iot-solution_admin/drivers ## Basic Information - **Project Name**: drivers - **Description**: {"name": "drivers", "description": "通用驱动,主要包含直接调用CSI驱动的实现。", "versions": "v7.3.0", "license": "Apache license v2.0", "type": "common", "depends": ["csi", "rhino", "aos"]} - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: V1.0.3 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-08 - **Last Updated**: 2021-02-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 概述 驱动组件,以csi接口为基础实现对应HAL层的设备结构体功能,目前支持uart、spiflash、eflash、iic等,并提供设备注册接口。 **非csi接口直接实现,建议单独在componets下创建对应组件** # 示例 ```c #include void board_yoc_init() { uart_csky_register(0); iic_csky_register(0); } ```