File indexing completed on 2025-05-11 08:23:43
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #if !defined (_RTEMS_AM29LV160_H_)
0015 #define _RTEMS_AM29LV160_H_
0016
0017 #include <rtems/flashdisk.h>
0018
0019
0020
0021
0022 #define rtems_am29lv160t_segment_count (4)
0023 extern const rtems_fdisk_segment_desc rtems_am29lv160t_segments[4];
0024
0025
0026
0027
0028 #define rtems_am29lv160b_segment_count (4)
0029 extern const rtems_fdisk_segment_desc rtems_am29lv160b_segments[4];
0030
0031
0032
0033
0034 extern const rtems_fdisk_driver_handlers rtems_am29lv160_handlers;
0035
0036
0037
0038
0039 typedef struct rtems_am29lv160_config
0040 {
0041 int bus_8bit;
0042 void* base;
0043 } rtems_am29lv160_config;
0044
0045
0046
0047
0048 extern const rtems_am29lv160_config rtems_am29lv160_configuration[];
0049
0050
0051
0052
0053 extern uint32_t rtems_am29lv160_configuration_size;
0054
0055 #endif