Merge pull request #736 from Smoothieware/development/test-framework
[clinton/Smoothieware.git] / src / libs / ConfigSources / FirmConfigSource.h
CommitLineData
33110301
L
1/*
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
4 Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
6*/
7
8#ifndef FIRMCONFIGSOURCE_H
9#define FIRMCONFIGSOURCE_H
10
33110301 11#include "ConfigSource.h"
61134a65 12#include "checksumm.h"
33110301 13
66383b80
JM
14class ConfigCache;
15
33110301
L
16using namespace std;
17#include <string>
18
93ea6adb
JM
19class FirmConfigSource : public ConfigSource
20{
21public:
22 FirmConfigSource(const char *name);
23 FirmConfigSource(const char* name, const char *start, const char *end);
24
25 void transfer_values_to_cache( ConfigCache *cache );
26 bool is_named( uint16_t check_sum );
27 bool write( string setting, string value );
28 string read( uint16_t check_sums[3] );
29
30private:
31 const char *start, *end;
33110301
L
32};
33
34
35
36#endif // FIRMCONFIGSOURCE_H