Zhang Shihe
Zhang Shihe
After `service docker restart`, things back to normal.
Hi @arkodg , the container is running quite long ago. So I may miss some info about it. I think it was running normally for a while. Later I replaced...
``` $ history | grep dems 2 docker cp dems-1.0-SNAPSHOT.jar dems:/app.jar 3 sudo docker cp dems-1.0-SNAPSHOT.jar dems:/app.jar 4 sudo docker start dems 6 docker logs dems 7 sudo docker logs...
类似比较老的论坛会有精华帖,但类似V2EX并没有这种分类,所以只能搜索。 作为一个对某一节点感兴趣的(新)用户,想看同一节点内的高质量老帖。 在该节点总主题数较多的情况下,希望能比较容易的看到一些值得被推荐的帖子(高回复,高收藏之类) 这种情况下,因为没有主题,所以纯按时间排序似乎没有意义了。 类似stackoverflow里查看某一tag下的按votes排序的使用方式。
建议推出类似Google Trends类似的热度分析
`onReadHoldingRegisterRange: address 0, quantity 10` It seems like 10 registers are required. However, ``` hr = new ModbusHoldingRegisters(10); hr.set(0, 12345); hr.set(1, 111); ``` you only set two. It's a usage...
see the [example](https://github.com/kochedykov/jlibmodbus/blob/master/examples/com/intelligt/modbus/examples/SimpleSlaveTCP.java) below line 94 ``` if (slave.isListening()) { Runtime.getRuntime().addShutdownHook(new Thread() { @Override public void run() { synchronized (slave) { slave.notifyAll(); } } }); synchronized (slave) { slave.wait(); }...
Hi @ippodamia, What do you mean by? > it still does not interrupt the communication with the Master. What type of `Slave` you are using?
**To a beginner.** I would recommend the Modbus wiki https://en.wikipedia.org/wiki/Modbus And http://jamod.sourceforge.net/ which is jamod project site, has a better documentation. You would find they are simply designed. And there...