You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gc = std# Type of garbage collection. std = Normal garbage collection allowing system to decide (this has been known to cause a stop the world in the middle of a CNC job which can cause lost responses from the CNC controller and thus stalled jobs. use max instead to solve.), off = let memory grow unbounded (you have to send in the gc command manually to garbage collect or you will run out of RAM eventually), max = Force garbage collection on each recv or send on a serial port (this minimizes stop the world events and thus lost serial responses, but increases CPU usage)
2
-
hostname = unknown-hostname # Override the hostname we get from the OS
3
-
regex = usb|acm|com# Regular expression to filter serial port list
4
-
v = true# show debug logging
1
+
gc = std
2
+
hostname = this-is-a-config-file-from-xdghome-dir
3
+
regex = usb|acm|com
4
+
v = true
5
5
appName = CreateAgent/Stable
6
6
updateUrl = https://downloads.arduino.cc/
7
7
origins = https://local.arduino.cc:8000
8
-
#httpProxy = http://your.proxy:port # Proxy server for HTTP requests
9
-
crashreport = false # enable crashreport logging
10
-
autostartMacOS = true # the Arduino Create Agent is able to start automatically after login on macOS (launchd agent)
0 commit comments