Mathias Rasmussen
Mathias Rasmussen
Okay, I see. I wondered if it could be related to a dshot issue but seems to not be the case then.
Do you want to make the ESC continue attempting to start the motors when stalling? There is also a stall boost feature that will apply more power on startup according...
Okay, there are some different ways to go about it. You could change the following part: https://github.com/bitdump/BLHeli/blob/139f5c6a7a21e1bfa285f9ed166faa1a5fa3d4c5/BLHeli_S%20SiLabs/BLHeli_S.asm#L4529-L4534 Here `4` is the max number of stalls. To also disable the stall...
> Ideally, we would like the ESC to keep commanding the motor without any pause/stop. If we could keep the boost up to 100% in the beginning, that would also...
Right, there is actually some more startup protection you can disable. You can change the following code: https://github.com/bitdump/BLHeli/blob/139f5c6a7a21e1bfa285f9ed166faa1a5fa3d4c5/BLHeli_S%20SiLabs/BLHeli_S.asm#L1841-L1851 To something like this: ```asm set_startup_pwm: ; Adjust startup power mov Pwm_Limit_Beg,...
Hi, I extracted the querystring implementation from the node.js core at https://github.com/mathiasvr/querystring. It seems to work fine in browsers, passing the tests down to IE9. I could make a PR,...
@SpainTrain Nodes querystring implementation is updated quite often and is relying more and more on ES6 features. Because of this I've been thinking about using babel to generate the future...
How do you detect data loss? Do you get any exceptions? I'm not sure how to reproduce. I'm seeing that the emit event can delay data but it's still the...
The only thing I can think of is that there could be an issue with the way the previous instance is closed (when seeking to new offset), however since the...