mirror of
https://github.com/markqvist/OpenModem.git
synced 2024-12-18 04:14:20 -05:00
15 lines
247 B
C
15 lines
247 B
C
|
#ifndef SD_H
|
||
|
#define SD_H
|
||
|
|
||
|
#include <avr/io.h>
|
||
|
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
#include "device.h"
|
||
|
#include "util/time.h"
|
||
|
#include "hardware/sdcard/ff.h"
|
||
|
#include "hardware/sdcard/integer.h"
|
||
|
|
||
|
void sd_init(void);
|
||
|
void sd_test(void);
|
||
|
|
||
|
#endif
|