2018 revision to classic DataBus AVC code.

Dependencies:   LSM303DLM Servo SerialGraphicLCD L3G4200D IncrementalEncoder SimpleShell

Config.h

Committer:
shimniok
Date:
2018-12-02
Revision:
3:4ffb1f9ba166
Parent:
1:7019a60fd585
Child:
4:de7feb458652

File content as of revision 3:4ffb1f9ba166:

#ifndef __CONFIG_H
#define __CONFIG_H

#include "mbed.h"

class Config {
public:
    int load(char *filename);
    void attach(Callback<void(char *)> cb);
    void attach(Callback<void(int)> cb);
    void attach(Callback<void(float)> cb);
    void attach(Callback<void(double)> cb);
}

#endif