jrahlf
jrahlf
Are there any updates on this?
Hi @RKOUSTM, As said by @atsju, adding const to function parameters does not break any API. It merely informs the caller that the function will not / cannot modify the...
:birthday: :birthday: :birthday: :birthday: 1 year anniversary :birthday: :birthday: :birthday: :birthday:
Are we going for 2 years?
https://github.com/fastfloat/fast_float/blob/8c4405e76e8bdac4246eb9973e75bdc7962c8dd5/include/fast_float/fast_table.h#L34 If you change these to float, the table size shrinks from 1302 to 208, i.e. you can save approximately 8kB. So one could add another table `power_of_five_128` for float...
So I got a proof of concept: #103 I added the files: `example_test_float.cpp` and `example_test_mixed.cpp`. With the HEAD version, the file sizes are as follows (Ubuntu gcc9.3): ``` 34072 Sep...
Interesting find. There is also [ryu](https://github.com/ulfjack/ryu). I think both yours and ryu do not use any double arithmetic, so it also interesting from perspective of PR #84. However, it undermines...
Hi, for me the ds4drv correctly creates /dev/input/event0 (raspberry pi 3). However, fftest cannot play any rumble effects ("Error: function not implemented"). The code posted above does not work ("invalid...
_Not_ depending on pthread cannot eliminate the `esp_pthread_init()` call in `startup.c`. Maybe it helps in stripping the `pthread_create` function symbol from the binary. The above diff shows that 380Bytes IRAM...
If you trace the driver setup functions, it will call `esp_rom_gpio_connect_out_signal` somewhere. You can copy the call with the same signal index and just replace the `gpio_num`. That is it....