Change SDK dir name. Use OpenOCD only.

Signed-off-by: Drasko DRASKOVIC <drasko.draskovic@gmail.com>
This commit is contained in:
Drasko DRASKOVIC 2017-05-14 18:47:13 +02:00
parent 05b731b5f3
commit eeb7f808ae
1446 changed files with 1 additions and 65 deletions

View file

@ -0,0 +1,7 @@
#ifndef _ATADRIVE_H_
#define _ATADRIVE_H_
#include "fatfs_ext/inc/ff_driver.h"
extern ll_diskio_drv ATA_disk_Driver;
#endif

View file

@ -0,0 +1,6 @@
#ifndef _SDCARD_H_
#define _SDCARD_H_
#include "fatfs_ext/inc/ff_driver.h"
extern ll_diskio_drv SD_disk_Driver;
#endif

View file

@ -0,0 +1,8 @@
#ifndef _USBDISK_H_
#define _USBDISK_H_
#include "fatfs_ext/inc/ff_driver.h"
extern ll_diskio_drv USB_disk_Driver;
#endif