Updated streaming scripts. Compiler compatibility for _delay_ms().
- Moved obsolete streaming scripts to folder for reference. - Added a more complex Python streaming script which uses the serial buffer as an additional streaming buffer. - Removed all references to a _delay_ms(variable) to allow for better porting across different compilers.
This commit is contained in:
50
script/Obsolete/stream.rb
Normal file
50
script/Obsolete/stream.rb
Normal file
@@ -0,0 +1,50 @@
|
||||
require 'rubygems'
|
||||
require 'optparse'
|
||||
require 'serialport'
|
||||
|
||||
|
||||
options_parser = OptionParser.new do |opts|
|
||||
opts.banner = "Usage: stream [options] gcode-file"
|
||||
opts.on('-v', '--verbose', 'Output more information') do
|
||||
$verbose = true
|
||||
end
|
||||
|
||||
opts.on('-p', '--prebuffer', 'Prebuffer commands') do
|
||||
$prebuffer = true
|
||||
end
|
||||
|
||||
opts.on('-h', '--help', 'Display this screen') do
|
||||
puts opts
|
||||
exit
|
||||
end
|
||||
end
|
||||
options_parser.parse!
|
||||
if ARGV.empty?
|
||||
puts options_parser
|
||||
exit
|
||||
end
|
||||
|
||||
# SerialPort.open('/dev/tty.FireFly-A964-SPP-1', 115200) do |sp|
|
||||
SerialPort.open('/dev/tty.usbserial-A700e0GO', 9600) do |sp|
|
||||
sp.write("\r\n\r\n");
|
||||
sleep 1
|
||||
ARGV.each do |file|
|
||||
puts "Processing file #{file}"
|
||||
prebuffer = $prebuffer ? 20 : 0
|
||||
File.readlines(file).each do |line|
|
||||
next if line.strip == ''
|
||||
puts line.strip
|
||||
sp.write("#{line.strip}\r\n");
|
||||
if prebuffer == 0
|
||||
begin
|
||||
result = sp.gets.strip
|
||||
puts "Grbl >> #{result}" #unless result == 'ok'
|
||||
end while !(result =~ /^ok|^error/)
|
||||
else
|
||||
prebuffer -= 1
|
||||
end
|
||||
end
|
||||
end
|
||||
puts "Done."
|
||||
sleep 500
|
||||
end
|
||||
Reference in New Issue
Block a user