1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/*
* Copyright : (C) 2022 Phytium Information Technology, Inc.
* All Rights Reserved.
*
* This program is OPEN SOURCE software: you can redistribute it and/or modify it
* under the terms of the Phytium Public License as published by the Phytium Technology Co.,Ltd,
* either version 1.0 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the Phytium Public License for more details.
*
*
* FilePath: cmd_usb.c
* Date: 2022-09-19 14:34:44
* LastEditTime: 2022-09-19 14:34:45
* Description: This files is for letter shell command implmentation
*
* Modify History:
* Ver Who Date Changes
* ----- ------ -------- --------------------------------------
* 1.0 zhugengyu 2022/9/20 init commit
*/
#include <string.h>
#include <stdio.h>
#include "strto.h"
#include "sdkconfig.h"
#include "FreeRTOS.h"
#include "../src/shell.h"
#include "usb_host.h"
static int USBCmdEntry(int argc, char *argv[])
{
int ret = 0;
u32 bytes = 32;
u32 usb_id = 0U;
if (!strcmp(argv[1], "init"))
{
ret = FFreeRTOSInitUsb();
}
else if (!strcmp(argv[1], "disk"))
{
ret = FFreeRTOSWriteReadUsbDisk();
}
else if (!strcmp(argv[1], "hid"))
{
ret = FFreeRTOSRecvInput();
}
else if (!strcmp(argv[1], "lsusb"))
{
ret = FFreeRTOSListUsb(argc - 1, &argv[1]);
}
return ret;
}
SHELL_EXPORT_CMD(SHELL_CMD_TYPE(SHELL_TYPE_CMD_MAIN), usb, USBCmdEntry, test freertos usb driver);
|