-
-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(config): remove default config file and update related tests
Showing
8 changed files
with
29 additions
and
93 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
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) | ||
hostname = unknown-hostname # Override the hostname we get from the OS | ||
regex = usb|acm|com # Regular expression to filter serial port list | ||
v = true # show debug logging | ||
gc = std | ||
hostname = this-is-a-config-file-from-xdghome-dir | ||
regex = usb|acm|com | ||
v = true | ||
appName = CreateAgent/Stable | ||
updateUrl = https://downloads.arduino.cc/ | ||
origins = https://local.arduino.cc:8000 | ||
#httpProxy = http://your.proxy:port # Proxy server for HTTP requests | ||
crashreport = false # enable crashreport logging | ||
autostartMacOS = true # the Arduino Create Agent is able to start automatically after login on macOS (launchd agent) | ||
crashreport = false | ||
autostartMacOS = true |
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
config/testdata/noconfig/.config/ArduinoCreateAgent/config.ini
This file was deleted.
Oops, something went wrong.