MCPcopy Create free account
hub / github.com/bdring/FluidNC / StringSetting

Method StringSetting

FluidNC/src/Settings.cpp:208–219  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206}
207
208StringSetting::StringSetting(const char* description,
209 type_t type,
210 permissions_t permissions,
211 const char* grblName,
212 const char* name,
213 const char* defVal,
214 int32_t min,
215 int32_t max) :
216 Setting(description, type, permissions, grblName, name),
217 _defaultValue(defVal), _currentValue(defVal), _minLength(min), _maxLength(max) {
218 load();
219};
220
221void StringSetting::load() {
222 size_t len = 0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected