mirror of
https://github.com/markqvist/OpenModem.git
synced 2025-05-15 04:42:15 -04:00
Basic SD card functions
This commit is contained in:
parent
6258e1e62e
commit
23b6de25fb
16 changed files with 6133 additions and 155 deletions
15
hardware/SD.h
Normal file
15
hardware/SD.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue