mirror of
https://github.com/rvtr/ctr_firmware.git
synced 2025-10-31 07:51:08 -04:00
FATFSフォーマッタおよびFATFSサンプル追加 git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-09-30%20-%20paladin.7z/paladin/ctr_firmware@257 b871894f-2f95-9b40-918c-086798483c85
48 lines
2.2 KiB
C
48 lines
2.2 KiB
C
/*****************************************************************************
|
|
*Filename: PORTCONF.H - RTFS porting layer tuning constants
|
|
*
|
|
*
|
|
* EBS - RTFS (Real Time File Manager)
|
|
*
|
|
* Copyright EBS Inc, 1993-2003
|
|
* All rights reserved.
|
|
* This code may not be redistributed in source or linkable object form
|
|
* without the consent of its author.
|
|
*
|
|
* Description:
|
|
* This file contains porting layer tuning constants for configuring RTFS.
|
|
* It is included by pcconf.h.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __PORTCONF__
|
|
#define __PORTCONF__ 1
|
|
|
|
/* CPU Configuration section */
|
|
|
|
#define KS_LITTLE_ENDIAN 1 /* See porting reference guide for explanation */
|
|
#define KS_LITTLE_ODD_PTR_OK 0 /* See porting reference guide for explanation */
|
|
#define KS_CONSTANT const /* See porting reference guide for explanation */
|
|
#define KS_FAR /* See porting reference guide for explanation */
|
|
|
|
/* Compile time constants to control device inclusion and includion of
|
|
porting layer subroutines */
|
|
|
|
#define INCLUDE_IDE 0 /* - Include the IDE driver */
|
|
#define INCLUDE_PCMCIA 0 /* - Include the pcmcia driver */
|
|
#define INCLUDE_PCMCIA_SRAM 0 /* - Include the pcmcia static ram card driver */
|
|
#define INCLUDE_COMPACT_FLASH 0 /* - Support compact flash (requires IDE and PCMCIA) */
|
|
#define INCLUDE_CDROM 0 /* - Support ATAPI CD (requires IDE) */
|
|
#define INCLUDE_FLASH_FTL 0 /* - Include the linear flash driver */
|
|
#define INCLUDE_ROMDISK 0 /* - Include the rom disk driver */
|
|
#define INCLUDE_RAMDISK 0 /* - Include the rom disk driver */
|
|
#define INCLUDE_MMCCARD 0 /* - Include the multi media flash card driver */
|
|
#define INCLUDE_SMARTMEDIA 0 /* - Include the smart media flash card driver */
|
|
#define INCLUDE_FLOPPY 0 /* - Include the floppy disk driver */
|
|
#define INCLUDE_HOSTDISK 0 /* - Include the host disk disk simulator */
|
|
#define INCLUDE_WINDEV 0 /* - Include windows direct device access */
|
|
#define INCLUDE_UDMA 0 /* - Include ultra dma support for the ide driver */
|
|
#define INCLUDE_82365_PCMCTRL 0 /* - Include the 82365 pcmcia controller driver */
|
|
|
|
#endif /* __PORTCONF__ */
|