Merge remote-tracking branch 'upstream/edge' into upstream-master
[clinton/Smoothieware.git] / src / libs / ConfigSources / FirmConfigSource.h
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
11 #include "ConfigSource.h"
12 #include "checksumm.h"
13
14 class ConfigCache;
15
16 using namespace std;
17 #include <string>
18
19 class FirmConfigSource : public ConfigSource
20 {
21 public:
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
30 private:
31 const char *start, *end;
32 };
33
34
35
36 #endif // FIRMCONFIGSOURCE_H