nvfsio.h

来自「在ARM7和UC/OSII的平台上实现了GPS自动报站的功能,涉及GPS模块LE」· C头文件 代码 · 共 80 行

H
80
字号
/*
 * FILENAME: nvfsio.h
 *
 * Copyright 1998- 2000 By InterNiche Technologies Inc. All rights reserved
 *
 * Definitions for generic file system NV parm IO.
 *
 * MODULE: TCP
 *
 *
 * PORTABLE: yes
 */

#ifndef _NVFSIO_H_
#define  _NVFSIO_H_  1

/* define these only if building with NVPARMS */
#ifdef INCLUDE_NVPARMS

struct nvparm_info;
struct nvparm_format;

int   get_file_parms(char * filename, struct nvparm_format *, int *);

#ifndef  NV_LINELENGTH
#define  NV_LINELENGTH     80
#endif

/* map non-volatile parameters file IO to VFS or local disk system,
 * as appropriate
 */

#ifdef HT_LOCALFS    /* write NV parameters file to disk */
#define  NV_FILE        FILE
#define  nv_fopen       fopen
#define  nv_fclose      fclose
#define  nv_fprintf     fprintf
#define  nv_fgets       fgets
#define  nv_fread       fread
#define  nv_fwrite      fwrite
#define  nv_fseek       fseek
#else /* no HT_LOCALFS, must use VFS */
#ifndef VFS_FILES
#error must have VFS_FILES or HT_LOCALFS
#endif   /* no VFSFILES */
#define  NV_FILE        VFILE
#define  nv_fopen       vfopen
#define  nv_fclose      vfclose
#define  nv_fread       vfread
#define  nv_fwrite      vfwrite
#define  nv_fseek       vfseek
#ifndef  _NVFSIO_C_  /* Don't include varargs protottype in code file */
int      nv_fprintf(void * fd, char * format, ...);
char *   nv_fgets(char * buffer, int maxlen, void * fd);
#endif   /* _NVFSIO_C_ */
#endif   /*  HT_LOCALFS */


/* optional per-port routine to write nvfs image to flash part */
extern   void (*nv_writeflash)(void);

#endif   /* INCLUDE_NVPARMS */

#ifdef   HT_SYNCDEV

/* The next two routines implement the mapping from vfs_sync to a 
 * generic flash device, e.g. the AMD AM29F04. The flash code must
 * export these routines for SYNCDEV to work.
 */


extern   int   ProgramFlash(u_long fd, char * buf, unsigned bytes_to_write);
extern   int   EraseFlash(int sector);

#endif /* HT_SYNCDEV */

#endif   /* _NVFSIO_H_ */


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?