mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 22:48:29 -04:00
5e4f66e525
this moves out all the high level logic from ArduPlane/ArduCopter to the library. It also adds a "config page", as the last page in the flash. This is used to check if the flash needs erasing. We only erase now if the DF_LOGGING_FORMAT has changed. This patch also adds a public CardInserted() method, which is used to disable logging on APM2 if a dataflash card is not inserted
33 lines
968 B
C++
33 lines
968 B
C++
/* ************************************************************ */
|
|
/* Test for DataFlash Log library */
|
|
/* ************************************************************ */
|
|
#ifndef __DATAFLASH_APM1_H__
|
|
#define __DATAFLASH_APM1_H__
|
|
|
|
#include "DataFlash.h"
|
|
|
|
class DataFlash_APM1 : public DataFlash_Class
|
|
{
|
|
private:
|
|
//Methods
|
|
unsigned char BufferRead (unsigned char BufferNum, uint16_t IntPageAdr);
|
|
void BufferWrite (unsigned char BufferNum, uint16_t IntPageAdr, unsigned char Data);
|
|
void BufferToPage (unsigned char BufferNum, uint16_t PageAdr, unsigned char wait);
|
|
void PageToBuffer(unsigned char BufferNum, uint16_t PageAdr);
|
|
void WaitReady();
|
|
unsigned char ReadStatusReg();
|
|
unsigned char ReadStatus();
|
|
uint16_t PageSize();
|
|
void PageErase (uint16_t PageAdr);
|
|
void ChipErase ();
|
|
|
|
public:
|
|
|
|
DataFlash_APM1(); // Constructor
|
|
void Init();
|
|
void ReadManufacturerID();
|
|
bool CardInserted(void);
|
|
};
|
|
|
|
#endif // __DATAFLASH_APM1_H__
|