Bash, serial I/O and Arduino

后端 未结 10 2339
眼角桃花
眼角桃花 2020-12-23 18:53

So, I\'m in a bit over my head, and I feel like I\'m very close to a solution, but it\'s just not working quite yet. Here\'s my situation:

I\'m working with an Ardui

10条回答
  •  执笔经年
    2020-12-23 18:55

    Try adding an ampersand (&) to the end of the commands to put the process in the background. If the console is hanging up, then that means the script or process is still running on your current terminal, and you won't be able to input or click on anything until the process or script is done.

    You can also try running the command in 1 terminal window, and open a new terminal window/tab, and try tailing from there.

提交回复
热议问题