* I'd love to build a proper abstraction for logging, but I don't have the time to do so right now. * The dataflash libs need to be pushed into the AP_HAL_AVR anyway, so I'll do that now and replace the interface with a better logging driver later.
14 lines
210 B
C++
14 lines
210 B
C++
|
|
#ifndef __AP_HAL_DATAFLASH_H__
|
|
#define __AP_HAL_DATAFLASH_H__
|
|
|
|
#include "AP_HAL_Namespace.h"
|
|
|
|
class AP_HAL::Dataflash {
|
|
public:
|
|
virtual void init(int machtnicht) = 0;
|
|
};
|
|
|
|
#endif // __AP_HAL_DATAFLASH_H__
|
|
|