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>
9 lines
148 B
C
9 lines
148 B
C
#ifndef __SDIOCMDS_H
|
|
#define __SDIOCMDS_H
|
|
|
|
#include <stdint.h> // uint8_t
|
|
|
|
struct sdiodev_s *sdiodev_oid_lookup(uint8_t oid);
|
|
|
|
#endif // sdiocmds.h
|