NetBurner 3.0
examples/SSH/SshServerUserKey/effsstd.h
1 /* Revision: 2.8.7 */
2 
3 /******************************************************************************
4 * Copyright 1998-2018 NetBurner, Inc. ALL RIGHTS RESERVED
5 *
6 * Permission is hereby granted to purchasers of NetBurner Hardware to use or
7 * modify this computer program for any use as long as the resultant program
8 * is only executed on NetBurner provided hardware.
9 *
10 * No other rights to use this program or its derivatives in part or in
11 * whole are granted.
12 *
13 * It may be possible to license this or other NetBurner software for use on
14 * non-NetBurner Hardware. Contact sales@Netburner.com for more information.
15 *
16 * NetBurner makes no representation or warranties with respect to the
17 * performance of this computer program, and specifically disclaims any
18 * responsibility for any damages, special or consequential, connected with
19 * the use of this program.
20 *
21 * NetBurner
22 * 5405 Morehouse Dr.
23 * San Diego, CA 92121
24 * www.netburner.com
25 ******************************************************************************/
26 
27 
28 /*
29  *-------------------------------------------------------------------
30  * Embedded Flash File System for on-chip flash memory (EFFS-STD)
31  * configuration file for common parameters.
32  * This file is part of an example that allocates flash space
33  * to the file system, and the rest to the application.
34  *
35  * Note:
36  * COMPCODEFLAGS contain starting and ending addresses
37  * of application. To add file system you must modify the ending
38  * address to provide for the flash used. Not to do so will result
39  * in unpredictable results.
40  *
41  * See"
42  * "NetBurner Embedded Flash File System, Hardware and Software
43  * Guide" for detailed information.
44  *
45  *-------------------------------------------------------------------
46  */
47 
48 #ifndef _EFFSSTD_H_
49 #define _EFFSSTD_H_
50 
51 /*******************************************************************
52  * Definitions
53  *******************************************************************/
54 /* On-chip Flash NOR */
55 #define USE_NOR
56 
57 /* Drive numbers */
58 #define NOR_DRV_NUM 0
59 #define STDRAM_DRV_NUM 1
60 #define MMC_DRV_NUM 2
61 #define CFC_DRV_NUM 3
62 #define HDD_DRV_NUM 3
63 #define FATRAM_DRV_NUM 4
64 
65 #define FS_NO_ERROR FS_NOERR
66 
67 
68 /* Routine definitions */
69 #include <file/fsf.h>
70 #include <file/fwerr.h>
71 
72 
73 #endif /* #ifndef _EFFSSTD_H_ */
74 
Embedded Flash File System API - STD.