mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
4b2f7cd163
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.
11 lines
170 B
C
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
|