📄 fs_conf.h
字号:
/*
**********************************************************************
* Micrium, Inc.
* 949 Crestview Circle
* Weston, FL 33327-1848
*
* uC/FS
*
* (c) Copyright 2001 - 2003, Micrium, Inc.
* All rights reserved.
*
***********************************************************************
----------------------------------------------------------------------
File : fs_conf.h
Purpose : File system configuration of the PC trial version
---------------------------END-OF-HEADER------------------------------
*/
#ifndef _FS_CONF_H_
#define _FS_CONF_H_
#define FS_OS_WINDOWS 1
/*********************************************************************
*
* Specify which driver do you want
*/
#define FS_USE_WINDRIVE_DRIVER 0 /* Switch on to access real drives on your machine */
#define FS_USE_RAMDISK_DRIVER 1
/*********************************************************************
*
* Win driver configuration
*
* Any drive on your machine can be used. Default are the floppys A: and B:,
* but you can use any other drive or flash card reader.
* Use with care and at your own risc !
*/
#define FS_WD_MAXDEV 2 /* number of windows drives */
#define FS_WD_DEV0NAME "\\\\.\\A:" /* Windows drive name for "windrv:0:" */
#define FS_WD_DEV1NAME "\\\\.\\B:" /* Windows drive name for "windrv:1:" */
/*********************************************************************
*
* Setup Debug Level
*/
#define FS_DEBUG_LEVEL 1
/*********************************************************************
*
* RAMDISK_DRIVER configuration
*/
#if FS_USE_RAMDISK_DRIVER
/*
* Define size of your RAM disk here.
* You specify the number of sectors (512 bytes) here.
*/
#define FS_RR_BLOCKNUM 32 /* 16KB RAM */
#endif
#endif /* Avoid multiple inclusion */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -