mirror of
https://github.com/markqvist/OpenModem.git
synced 2024-12-18 12:24:21 -05:00
14 lines
210 B
C
14 lines
210 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"
|
|
|
|
void sd_init(void);
|
|
void sd_test(void);
|
|
|
|
#endif |