Allow TABS in config
[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 "ConfigValue.h"
12 #include "ConfigSource.h"
13 #include "ConfigCache.h"
14 #include "checksumm.h"
15
16 using namespace std;
17 #include <string>
18
19 #define FIRM_CONFIGSOURCE_CHECKSUM CHECKSUM("firm")
20
21 class FirmConfigSource : public ConfigSource {
22 public:
23 FirmConfigSource(uint16_t name_checksum = FIRM_CONFIGSOURCE_CHECKSUM);
24 void transfer_values_to_cache( ConfigCache* cache );
25 bool is_named( uint16_t check_sum );
26 void write( string setting, string value );
27 string read( uint16_t check_sums[3] );
28
29 };
30
31
32
33 #endif // FIRMCONFIGSOURCE_H