diff options
| author | Keith Packard <keithp@keithp.com> | 2011-01-06 22:37:38 -0800 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2011-01-06 22:37:38 -0800 |
| commit | 569a1dac55b70c30f01afa7bcb74442ecdd85d85 (patch) | |
| tree | 197d6048f3b6694aeaf1f23f4605d494757902f5 /src/Makefile.proto | |
| parent | e4ba9bf4291bf17c777c8c3ef7c71e4a30b9947a (diff) | |
altos: Move common storage code to ao_storage.c. Add M25P80 driver
This reworks the storage API so that you erase blocks and then store
data to them so that the M25P80 driver will work.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/Makefile.proto')
| -rw-r--r-- | src/Makefile.proto | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Makefile.proto b/src/Makefile.proto index c79638ac..709cbca7 100644 --- a/src/Makefile.proto +++ b/src/Makefile.proto @@ -94,15 +94,25 @@ TM_DRIVER_SRC = \ # # 25LC1024 driver source EE_DRIVER_SRC = \ + ao_storage.c \ ao_ee.c # # AT45DB161D driver source FLASH_DRIVER_SRC = \ + ao_storage.c \ ao_flash.c # +# Numonyx M25P80 driver source +# + +M25_DRIVER_SRC = \ + ao_storage.c \ + ao_m25.c + +# # SiRF driver source # SIRF_DRIVER_SRC = \ |
