ardupilot/libraries/DataFlash/DataFlash_APM2.h

38 lines
1.2 KiB
C
Raw Normal View History

/* ************************************************************ */
2011-11-25 19:11:14 -04:00
/* DataFlash_APM2 Log library */
/* ************************************************************ */
2011-11-25 19:11:14 -04:00
#ifndef __DATAFLASH_APM2_H__
#define __DATAFLASH_APM2_H__
2012-12-08 00:24:06 -04:00
#include <AP_HAL.h>
#include "DataFlash.h"
2011-11-25 19:11:14 -04:00
class DataFlash_APM2 : public DataFlash_Class
{
private:
//Methods
uint8_t BufferRead (uint8_t BufferNum, uint16_t IntPageAdr);
void BufferWrite (uint8_t BufferNum, uint16_t IntPageAdr, uint8_t Data);
void BufferToPage (uint8_t BufferNum, uint16_t PageAdr, uint8_t wait);
void PageToBuffer(uint8_t BufferNum, uint16_t PageAdr);
void WaitReady();
uint8_t ReadStatusReg();
uint8_t ReadStatus();
uint16_t PageSize();
void PageErase (uint16_t PageAdr);
void BlockErase (uint16_t BlockAdr);
2012-12-08 00:24:06 -04:00
void ChipErase();
AP_HAL::SPIDeviceDriver* _spi;
AP_HAL::Semaphore* _spi_sem;
public:
DataFlash_APM2() {}
void Init();
void ReadManufacturerID();
bool CardInserted();
};
#endif