Ambroz Bizjak
Ambroz Bizjak
Route lookup should return the longest prefix match in case of more than one match. See https://en.wikipedia.org/wiki/Longest_prefix_match and https://www.rfc-editor.org/rfc/rfc1812.txt (look for "Longest Match"). https://github.com/saminiir/level-ip/blob/c1950ea0e0f9feceb5602432f1751b8ce71c4952/src/route.c#L53
Sequence numbers must not be compared for inequality "naively", since they are designed to wrap around. For example there is an issue here when checking if an incoming segment has...
We have experienced a problem that when log4cplus is used on Windows (with Visual Studio) as a DLL or statically linked into a DLL, that if the application is terminated...
Misspelled words which are not detected: avalible, handeled, evalulated, deciced, pressent, senting.
- Implement software PWM for fan control and use it by default. - Implement increasing software PWM frequency for fan and heaters, and increase fan frequency 4 times by default....
Fixes https://github.com/reprappro/Marlin/issues/4 .
Fixes https://github.com/reprappro/Marlin/issues/7 .
I find the PWM noise from the fan incredibly annoying; the noise is much worse for powerful fans. Software PWM which is already used for heaters is more appropriate than...
After turning the fan on from Pronterface by sending M106, it will take up to 5 seconds for the fan to turn on; same goes for turning it off. I...