ardupilot/libraries/AP_HAL_Linux/Storage.h
bugobliterator 4b2f7cd163 HAL_Linux: Add FRAM HAL driver support for non-volatile storage
Support for File System starage mode is retained, appropriate Storage
mode can be set by defining USE_FS_STORAGE for File System storage
aand US_FRAM_STORAGE for FRAM storage.  Note: FS storage and FRAM
storage are never synced as of now.
2014-08-19 10:08:16 +10:00

11 lines
170 B
C

#ifndef __AP_HAL_LINUX_STORAGE_H__
#define __AP_HAL_LINUX_STORAGE_H__
#if HAL_STORAGE == USE_FRAM
#include "Storage_FRAM.h"
#else
#include "Storage_FS.h"
#endif
#endif