Mini Cheetah Actuator Branch Superseded by: https://github.com/bgkatz/motorcontrol

Dependencies:   mbed-dev-f303 FastPWM3

Superseded by: https://github.com/bgkatz/motorcontrol

PreferenceWriter/PreferenceWriter.h

Committer:
benkatz
Date:
2019-10-10
Revision:
56:fe5056ac6740
Parent:
23:2adf23ee0305

File content as of revision 56:fe5056ac6740:

#ifndef __PREFERENCE_WRITER_H
#define __PREFERENCE_WRITER_H

#include "mbed.h"
#include "FlashWriter.h"

class PreferenceWriter {
public:
    PreferenceWriter(uint32_t sector);
    void open();
    bool ready();
    void write(int x, int index);
    void write(float x, int index);
    void flush();
    void load();
    void close();
private:
    FlashWriter *writer;
    uint32_t __sector;
    bool __ready;
};

#endif