We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362cf15 commit c23fbd0Copy full SHA for c23fbd0
exe/arduino_ci.rb
@@ -24,6 +24,7 @@ def self.parse(options)
24
ci_config: {
25
"unittest" => unit_config
26
},
27
+ min_free_space: 0,
28
}
29
30
opt_parser = OptionParser.new do |opts|
@@ -49,6 +50,10 @@ def self.parse(options)
49
50
unit_config["testfiles"]["reject"] << p
51
end
52
53
+ opts.on("--min-free-space=VALUE", "Minimum free SRAM memory for stack/heap") do |p|
54
+ output_options[:min_free_space] = p.to_i()
55
+ end
56
+
57
opts.on("-h", "--help", "Prints this help") do
58
puts opts
59
puts
0 commit comments