mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
36 lines
588 B
C
36 lines
588 B
C
/*
|
|
* Copyright (c) 2022, ArtInChip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <aos/kernel.h>
|
|
#include <aos/debug.h>
|
|
#include "ff.h"
|
|
#include "soc.h"
|
|
|
|
__WEAK int USB_disk_status(void)
|
|
{
|
|
return 0;
|
|
}
|
|
__WEAK int USB_disk_initialize(void)
|
|
{
|
|
return 0;
|
|
}
|
|
__WEAK int USB_disk_read(BYTE *buff, LBA_t sector, UINT count)
|
|
{
|
|
return 0;
|
|
}
|
|
__WEAK int USB_disk_write(const BYTE *buff, LBA_t sector, UINT count)
|
|
{
|
|
return 0;
|
|
}
|
|
__WEAK int USB_disk_ioctl(BYTE cmd, void *buff)
|
|
{
|
|
return 0;
|
|
}
|
|
|