代码之家  ›  专栏  ›  技术社区  ›  JP Silvashy Gautam Rege

无法从文件执行Ruby脚本,但IRB工作正常吗?

  •  1
  • JP Silvashy Gautam Rege  · 技术社区  · 15 年前

    我有一个很小的shell脚本,可以写入串行设备:

    #!/usr/bin/ruby
    
    require 'rubygems'
    require 'serialport'
    
    @sp = SerialPort.new "/dev/tty.usbserial-A6004cNN", 19200
    @sp.write ["\x01\x01\x04\x00", "n", "\xff\xff\xff"]
    

    这不会在我运行时写入串行设备 ./script.sh 在那个目录里。但是,当我跳到IRB并运行时:

    require 'serialport' #=> true
    @sp = SerialPort.new "/dev/tty.usbserial-A6004cNN", 19200 #=> #<SerialPort:0x1016bd698>
    @sp.write ["\x01\x01\x04\x00", "n", "\xff\xff\xff"] #=> 8
    

    这条路行得通…我困惑不解。这可能是我输出字节数组的方式吗?这似乎不正确,只是这里的原始红宝石,没有明显的依赖关系。另外,脚本不会抛出异常,它执行得很好,但是设备没有响应。

    我该如何调试这个呢?我不知道从哪里开始。

    2 回复  |  直到 10 年前
        1
  •  4
  •   Brian Campbell Dennis Williamson    15 年前

    我不知道serial port gem,但有可能是对串行端口的输出进行缓冲,而不是在脚本退出之前进行刷新,而irb在返回提示时为刷新缓冲提供了时间。我试着加入 @sp.flush 看看这是否有帮助。

        2
  •  0
  •   Scott Swezey    15 年前

    不要让它是一个shell脚本,而是将其设为.rb ruby脚本,然后用

    ruby <name_of_my_script>.rb
    

    然后一切都会好起来的。