ardupilot/libraries/DataFlash/DataFlash_SITL.h

52 lines
2.0 KiB
C
Raw Normal View History

2012-12-12 18:19:09 -04:00
/* ************************************************************ */
/* DataFlash_SITL Log library */
/* ************************************************************ */
#ifndef __DATAFLASH_SITL_H__
#define __DATAFLASH_SITL_H__
2015-05-04 03:17:39 -03:00
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
2012-12-12 18:19:09 -04:00
#include <AP_HAL.h>
2015-06-25 10:53:20 -03:00
#include "DataFlash_Block.h"
2012-12-12 18:19:09 -04:00
class DataFlash_SITL : public DataFlash_Block
2012-12-12 18:19:09 -04:00
{
private:
//Methods
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();
2012-12-12 18:19:09 -04:00
uint8_t ReadStatusReg();
uint8_t ReadStatus();
uint16_t PageSize();
void PageErase (uint16_t PageAdr);
void BlockErase (uint16_t BlockAdr);
void ChipErase();
// write size bytes of data to a page. The caller must ensure that
// the data fits within the page, otherwise it will wrap to the
// start of the page
// If pHeader is not NULL then write the header bytes before the data
void BlockWrite(uint8_t BufferNum, uint16_t IntPageAdr,
const void *pHeader, uint8_t hdr_size,
const void *pBuffer, uint16_t size);
// read size bytes of data to a page. The caller must ensure that
// the data fits within the page, otherwise it will wrap to the
// start of the page
bool BlockRead(uint8_t BufferNum, uint16_t IntPageAdr, void *pBuffer, uint16_t size);
2012-12-12 18:19:09 -04:00
AP_HAL::SPIDeviceDriver *_spi;
AP_HAL::Semaphore *_spi_sem;
public:
2015-06-25 10:53:20 -03:00
DataFlash_SITL(DataFlash_Class &front) :
DataFlash_Block(front) { }
void Init(const struct LogStructure *structure, uint8_t num_types);
2012-12-12 18:19:09 -04:00
void ReadManufacturerID();
bool CardInserted();
};
2015-05-04 03:17:39 -03:00
#endif // CONFIG_HAL_BOARD == HAL_BOARD_SITL
2012-12-12 18:19:09 -04:00
#endif // __DATAFLASH_SITL_H__