gdoumen

Results 3 comments of gdoumen

I am having the same issue. The process rmm generates a high load. Whenever I tried to kill that process, the camera was rebooting. What is this process doing? Where...

The issue seems to be caused by the fact that `this._aclBuffers.length` is 0, when `Hci.prototype.writeAclDataPkt` is being called File: lib/hci-socket/hci.js, lines 654ff ``` const l2capLength = 4 /* l2cap header...

I could make my app work by changing ``` const first = Buffer.alloc(aclLength + 5 /* acl header */); ``` to ``` const first = Buffer.alloc(l2capLength+ 5 /* acl header...