📄 app_cfg.h
字号:
/*
**************************************************************************************************************
* USB Host Stack
*
* (c) Copyright 2008, OnChip Technologies LLC
* All Rights Reserved
*
* www.onchiptech.com
*
* LICENSING TERMS:
*
* This software is protected by international copyright laws. Knowledge of the source code may not be used to
* write a similar product. This file may only be used in accordance with a license and should not be
* redistributed in any way. We appreciate your understanding, fairness and honesty.
*
* This material or any other copies thereof may not be provided or otherwise made available to any other
* person without written permission by Onchip Technologies. Its receipt and/or possession does
* not convey any right to alter, reproduce, disclose, transmit, manufacture, use or sell anything it may
* describe.
*
* File : app_cfg.h
* Programmer(s) : Ravikanth.P
* Version : V1.00
*
**************************************************************************************************************
*/
#if !defined(APP_CFG_H)
#define APP_CFG_H
/*
**************************************************************************************************************
* MACROS
**************************************************************************************************************
*/
#define DEF_ENABLED 1
#define DEF_DISABLED 0
/*
**************************************************************************************************************
* DEBUG UART CONFIGURATION OPTIONS
**************************************************************************************************************
*/
#define USBH_CFG_UART_KEIL_MCB2300 1 /* Keil MCB2300 board UART#1 */
#define USBH_CFG_UART_EA_OEM_LPC2468 2 /* Embedded Artists OEM LPC2468 board UART#1 */
#define USBH_CFG_UART_SEL USBH_CFG_UART_KEIL_MCB2300 /* Use Keil MCB2300 board UART#1 PIN settings */
/*
**************************************************************************************************************
* USB HOST STACK CONFIGURATION OPTIONS
**************************************************************************************************************
*/
#define USBH_CFG_TASK_PRIO 2 /* USB Host stack thread priority */
/*
**************************************************************************************************************
* APPLICATION CONFIGURATION OPTIONS
**************************************************************************************************************
*/
#define APP_CFG_TASK_STK_SIZE 512 /* App thread stack size */
#define APP_CFG_TASK_PRIO 11 /* App thread priority */
/* Any one of the following test must be selected */
#define APP_CFG_TEST_COPY DEF_DISABLED
#define APP_CFG_TEST_DEL_FILE DEF_DISABLED
#define APP_CFG_TEST_CREAT_DIR DEF_DISABLED
#define APP_CFG_TEST_DEL_DIR DEF_DISABLED
#define APP_CFG_TEST_NAV DEF_ENABLED
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -