diff options
| author | Keith Packard <keithp@keithp.com> | 2013-03-27 01:12:33 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2013-03-27 01:12:33 -0700 |
| commit | e14834817f78a04b4d9b44a8373119dffd42c966 (patch) | |
| tree | d513cac8f9f111b81917fadfcdf253e7a897e997 /src/test/Makefile | |
| parent | 747114786512339211d4981a7828c8c6f1f46c20 (diff) | |
altos: Add SDCARD and FAT16 filesystem support
This adds a fairly primitive FAT16 file system implementation
along with support for SD cards.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/test/Makefile')
| -rw-r--r-- | src/test/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/test/Makefile b/src/test/Makefile index fccc7937..96170cc1 100644 --- a/src/test/Makefile +++ b/src/test/Makefile @@ -2,7 +2,7 @@ vpath % ..:../core:../drivers:../util:../micropeak PROGS=ao_flight_test ao_flight_test_baro ao_flight_test_accel ao_flight_test_noisy_accel ao_flight_test_mm \ ao_gps_test ao_gps_test_skytraq ao_convert_test ao_convert_pa_test ao_fec_test \ - ao_aprs_test ao_micropeak_test + ao_aprs_test ao_micropeak_test ao_fat_test INCS=ao_kalman.h ao_ms5607.h ao_log.h ao_data.h altitude-pa.h altitude.h @@ -64,3 +64,6 @@ check: ao_fec_test ao_flight_test ao_flight_test_baro run-tests ao_micropeak_test: ao_micropeak_test.c ao_microflight.c ao_kalman.h cc $(CFLAGS) -o $@ ao_micropeak_test.c -lm + +ao_fat_test: ao_fat_test.c ao_fat.c ao_bufio.c + cc $(CFLAGS) -o $@ ao_fat_test.c |
