File tree 2 files changed +3
-10
lines changed
2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 13
13
// Arduino software without disclosing the source code of your own applications.
14
14
// To purchase a commercial license, send an email to license@arduino.cc.
15
15
16
+ // Documentation about pluggable monitor is available here:
17
+ // https://arduino.github.io/arduino-cli/latest/pluggable-monitor-specification/
16
18
package monitor
17
19
18
20
import (
@@ -30,16 +32,6 @@ import (
30
32
"github.com/sirupsen/logrus"
31
33
)
32
34
33
- // To work correctly a Pluggable Monitor must respect the state machine specifed on the documentation:
34
- // https://arduino.github.io/arduino-cli/latest/pluggable-monitor-specification/#state-machine
35
- // States a PluggableMonitor can be in
36
- const (
37
- Alive int = iota
38
- Idle
39
- Opened
40
- Dead
41
- )
42
-
43
35
// PluggableMonitor is a tool that communicates with a board through a communication port.
44
36
type PluggableMonitor struct {
45
37
id string
Original file line number Diff line number Diff line change 109
109
- library-specification.md
110
110
- platform-specification.md
111
111
- Pluggable discovery specification : pluggable-discovery-specification.md
112
+ - Pluggable monitor specification : pluggable-monitor-specification.md
112
113
- Package index specification : package_index_json-specification.md
113
114
114
115
extra :
You can’t perform that action at this time.
0 commit comments