Generated content. This page is produced by cargo run --bin gen_docs (src-tauri/src/bin/gen_docs/) reading proto/maslow/v1/*.proto's compiled FileDescriptorSet, via prost-reflect, re-run on every docs-site build. Do not hand-edit it: fix the generator or the source it reads instead.
Full name: maslow.v1.ConfigService
Methods
ListConfigEntries
GetConfigEntry
UpdateConfigEntry
Types
Every message and enum reachable from this service's requests and responses, including shared types defined in common.proto.
ConfigEntry
One editable leaf of the FluidNC config tree. path is the /-joined key
path a write expects (e.g. "axes/x/steps_per_mm", "Maslow_Scale_X"); the
resource name for Get/List is "configEntries/{path}".
| Field | Type | Description |
|---|
path | string | |
value | string | |
kind | ConfigKind | |
ConfigKind
Best-effort value type, letting a caller pick an appropriate input widget
or parser.
| Value | Number | Description |
|---|
CONFIG_KIND_UNSPECIFIED | 0 | |
CONFIG_KIND_BOOL | 1 | |
CONFIG_KIND_INT | 2 | |
CONFIG_KIND_FLOAT | 3 | |
CONFIG_KIND_TEXT | 4 | |
GetConfigEntryRequest
| Field | Type | Description |
|---|
name | string | "configEntries/{path}" |
ListConfigEntriesRequest
| Field | Type | Description |
|---|
page_size | int32 | |
page_token | string | |
force_refresh | bool | When true, request a fresh dump from the machine ("$CD") instead of serving the last cached one. |
ListConfigEntriesResponse
| Field | Type | Description |
|---|
config_entries | repeated ConfigEntry | |
next_page_token | string | |
UpdateConfigEntryRequest
| Field | Type | Description |
|---|
config_entry | optional ConfigEntry | |
save | bool | Whether to also persist the change to flash ("$CO") after writing it. |