Skip to content

Commit e75199e

Browse files
committed
[DOCS] Added SDIO overview.
1 parent f604439 commit e75199e

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

_includes/docs_contents.html

+4
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ <h4>API</h4>
5454
<a href="{{ site.url }}/docs/api/rtc">RTC Subsystem</a>
5555
</li>
5656

57+
<li class="{% if page.title == "SDIO Subsystem" %}current{% endif %}">
58+
<a href="{{ site.url }}/docs/api/sdio">SDIO Subsystem</a>
59+
</li>
60+
5761
<li class="{% if page.title == "Semaphores & Mutex's" %}current{% endif %}">
5862
<a href="{{ site.url }}/docs/api/semaphore">Semaphores & Mutex's</a>
5963
</li>

docs/sdio/sdio.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: docs
3+
title: SDIO Subsystem
4+
next_section: usage-rules
5+
permalink: /docs/api/sdio/
6+
header_path: drivers/mmc/core.h
7+
source_path: drivers/mmc/sdcard.c
8+
---
9+
10+
Manages SD Host controller interface devices, e.g. SDHCI or SPI based SD-card drivers.
11+
12+
13+
# Further Reading
14+
15+
The full API is defined under:
16+
17+
{% include api/header-path.md %}
18+
19+
See the implementation under:
20+
21+
{% include api/source-path.md %}

0 commit comments

Comments
 (0)