diff options
author | H. Gregor Molter <gregor.molter@secretlab.de> | 2023-02-20 19:52:36 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2023-02-20 19:55:25 -0500 |
commit | d7bd7f1f4ba6cecd19daa566fdc1864561269ae1 (patch) | |
tree | d57d02e2dd5fb12359b2ba95080241483f02fbb0 /src/sdiocmds.h | |
parent | 848a78d1a548cfe28af20d5d0ab021558368cfae (diff) | |
download | kutter-d7bd7f1f4ba6cecd19daa566fdc1864561269ae1.tar.gz kutter-d7bd7f1f4ba6cecd19daa566fdc1864561269ae1.tar.xz kutter-d7bd7f1f4ba6cecd19daa566fdc1864561269ae1.zip |
stm32: Add sdio support
Adds sdio support for the stm32f4 to allow for SD card flash updates
without power cycling some boards, e.g. BTT Octopus Pro.
Signed-off-by: H. Gregor Molter <gregor.molter@secretlab.de>
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/sdiocmds.h')
-rw-r--r-- | src/sdiocmds.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sdiocmds.h b/src/sdiocmds.h new file mode 100644 index 00000000..24ec9811 --- /dev/null +++ b/src/sdiocmds.h @@ -0,0 +1,8 @@ +#ifndef __SDIOCMDS_H +#define __SDIOCMDS_H + +#include <stdint.h> // uint8_t + +struct sdiodev_s *sdiodev_oid_lookup(uint8_t oid); + +#endif // sdiocmds.h |