arduino / arduino/ArduinoCore-API
SD library API for use with SDIO port
- 主要语言
- C++
- 星标
- 306
- 派生
- 150
- PR 合并指标
- 30 天内没有已合并 PR
描述
All SD cards support 2 access methods, native SDIO mode and a simpler/slower SPI mode meant for microcontrollers. Some newer 32 bit microcontrollers are featuring native SDIO ports. I'm working with one right now....
Would like any input on how the SD library API should be extended to support these? So far, my main thought is to define a symbol like SDIO_PORT
```
SD.begin(4); // use SPI mode with pin 4 as chip select
SD.begin(SDIO_PORT); // use native SDIO port, which does not have a chip select line
```
Does this look reasonable? Or has anyone already made other plans or ideas for supporting chips with native SDIO?
贡献指南
这个仓库没有索引到贡献指南
调研方向
首先审查 SD library API 以及 issue 中展示的现有 SD.begin() 用法。将当前的 SPI-mode API 与提议的原生 SDIO_PORT 形式进行比较,并调查 Arduino cores 如何公开 SDIO 端口。达成 API 设计共识并记录所需行为即视为完成;issue 未提供指定的文件或测试。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- cpp
- 领域
- api, embedded-iot
- Issue 类型
- 功能
- 难度
- 5/5
- 预计耗时
- 一周以上
- 活跃度
- 停滞
- 描述清晰度
- 需要澄清
- 新手友好度
- 20/100