Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:13

0001 /**
0002  * @file
0003  *
0004  * This driver maps an NV disk to static RAM. You can use this
0005  */
0006 
0007 /*
0008  * RTEMS Project (http://www.rtems.org/)
0009  *
0010  * Copyright 2007 Chris Johns (chrisj@rtems.org)
0011  */
0012 
0013 #if !defined (_RTEMS_NVDISK_SRAM_H_)
0014 #define _RTEMS_NVDISK_SRAM_H_
0015 
0016 #include <rtems/nvdisk.h>
0017 
0018 /**
0019  * The handlers for the NV Disk SRAM driver.
0020  */
0021 extern const rtems_nvdisk_driver_handlers rtems_nvdisk_sram_handlers;
0022 
0023 #endif