|
Paparazzi UAS
v5.10_stable-5-g83a0da5-dirty
Paparazzi is a free software Unmanned Aircraft System.
|
SDIO interface using ChibiOS API for Paparazzi. More...
#include "std.h"#include <string.h>#include <ch.h>#include <hal.h>#include "mcu_periph/sdio.h"#include <stdarg.h>
Include dependency graph for sdio_arch.c:Go to the source code of this file.
Enumerations | |
| enum | { STOP, CONNECT } |
Functions | |
| bool | sdio_connect (void) |
| Connect a SD card on SDIO peripheral. More... | |
| bool | sdio_disconnect (void) |
| Disconnect a SD card on SDIO peripheral. More... | |
| bool | is_card_inserted (void) |
| Check if a SD card is inserted. More... | |
Variables | |
| static enum { ... } | cnxState = STOP |
SDIO interface using ChibiOS API for Paparazzi.
Definition in file sdio_arch.c.
| anonymous enum |
| Enumerator | |
|---|---|
| STOP | |
| CONNECT | |
Definition at line 43 of file sdio_arch.c.
| bool is_card_inserted | ( | void | ) |
Check if a SD card is inserted.
Definition at line 97 of file sdio_arch.c.
| bool sdio_connect | ( | void | ) |
Connect a SD card on SDIO peripheral.
Definition at line 46 of file sdio_arch.c.
References cnxState, CONNECT, FALSE, GPIOC, GPIOC_SDIO_CK, GPIOC_SDIO_D0, GPIOC_SDIO_D1, GPIOC_SDIO_D2, GPIOC_SDIO_D3, GPIOD, GPIOD_SDIO_CMD, and TRUE.
Referenced by sdLogInit(), and thdUsbStorage().
Here is the caller graph for this function:| bool sdio_disconnect | ( | void | ) |
Disconnect a SD card on SDIO peripheral.
Definition at line 85 of file sdio_arch.c.
References cnxState, FALSE, STOP, and TRUE.
Referenced by sdLogInit(), and thdUsbStorage().
Here is the caller graph for this function:| enum { ... } cnxState |
Referenced by sdio_connect(), and sdio_disconnect().