Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-cli
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Operations
Operations
Metrics
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-cli
Commits
899dc91b
Unverified
Commit
899dc91b
authored
Jun 06, 2022
by
Cristian Maglie
Committed by
GitHub
Jun 06, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[skip-changelog] Fixed pluggable monitor specification to match the de-facto implementation (#1748)
Fix #1738
parent
78d013bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
docs/pluggable-monitor-specification.md
docs/pluggable-monitor-specification.md
+5
-5
No files found.
docs/pluggable-monitor-specification.md
View file @
899dc91b
...
@@ -70,7 +70,7 @@ port configuration, and which parameters are available to the user.
...
@@ -70,7 +70,7 @@ port configuration, and which parameters are available to the user.
"baudrate": {
"baudrate": {
"label": "Baudrate",
"label": "Baudrate",
"type": "enum",
"type": "enum",
"value
s
": [
"value": [
"300", "600", "750", "1200", "2400", "4800", "9600",
"300", "600", "750", "1200", "2400", "4800", "9600",
"19200", "38400", "57600", "115200", "230400", "460800",
"19200", "38400", "57600", "115200", "230400", "460800",
"500000", "921600", "1000000", "2000000"
"500000", "921600", "1000000", "2000000"
...
@@ -80,19 +80,19 @@ port configuration, and which parameters are available to the user.
...
@@ -80,19 +80,19 @@ port configuration, and which parameters are available to the user.
"parity": {
"parity": {
"label": "Parity",
"label": "Parity",
"type": "enum",
"type": "enum",
"value
s
": [ "N", "E", "O", "M", "S" ],
"value": [ "N", "E", "O", "M", "S" ],
"selected": "N"
"selected": "N"
},
},
"bits": {
"bits": {
"label": "Data bits",
"label": "Data bits",
"type": "enum",
"type": "enum",
"value
s
": [ "5", "6", "7", "8", "9" ],
"value": [ "5", "6", "7", "8", "9" ],
"selected": "8"
"selected": "8"
},
},
"stop_bits": {
"stop_bits": {
"label": "Stop bits",
"label": "Stop bits",
"type": "enum",
"type": "enum",
"value
s
": [ "1", "1.5", "2" ],
"value": [ "1", "1.5", "2" ],
"selected": "1"
"selected": "1"
}
}
}
}
...
@@ -111,7 +111,7 @@ types may be added in the future if needed), and the `selected` value for each p
...
@@ -111,7 +111,7 @@ types may be added in the future if needed), and the `selected` value for each p
The parameter name can not contain spaces, the allowed characters are alphanumerics, underscore
`_`
, dot
`.`
, and dash
The parameter name can not contain spaces, the allowed characters are alphanumerics, underscore
`_`
, dot
`.`
, and dash
`-`
.
`-`
.
The
`enum`
types must have a list of possible
`values`
.
The
`enum`
types must have a list of possible
values in the
`value`
list field
.
The client/IDE may expose these configuration values to the user via a config file or a GUI, in this case the
`label`
The client/IDE may expose these configuration values to the user via a config file or a GUI, in this case the
`label`
field may be used for a user readable description of the parameter.
field may be used for a user readable description of the parameter.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment