Max Prokhorov

Results 502 comments of Max Prokhorov

How though? My main interest was to have compatible solution for both boards, but we are at a standstill with update() move for some reason (I have not changed it...

Just to note it as a difference, tbh it was a surprise to me that it does that. I'd prefer not solving it :) > We shortened the file version...

Maybe it should do this instead? https://reproducible-builds.org/docs/build-path/ ``` ~> g++ -Os -ffile-prefix-map=(pwd)=/foo (realpath a.cpp) ~> ./a.out /foo/a.cpp a.cpp ``` And yes, I meant the 2nd one - at specific call...

See our build instructions, makefiles & cmake In both cases, .c files can be omitted from builder and .h are only partially installed to esp8266/Arduino include dirs. For the first...

Note of the version difference, most likely upstream v2.1.3 already has those For cherry picking anything else, add it as patches/*.patch? To modify build flags for the lib https://github.com/d-a-v/esp82xx-nonos-linklayer/blob/master/glue-lwip/arduino/lwipopts.h Unused...

No reason why not; isn't the whole idea of altcp is just extra api on top of existing one? so, if we internally or otherwise don't use it, nothing changes...

`LWIP_ALTCP_TLS_MBEDTLS` `LWIP_ALTCP_TLS_BEARSSL` ? I think the idea is `LWIP_ALTCP_TLS` enables TLS, another flag selects implementation. Plus some code to `#error` out when building with both

Don't forget that bssl also has some changes so we don't trigger watchdog timer ``` ~/.p/p/f/t/s/s/bearssl ((b024386d))> git grep 'yield(' src/ec/ec_prime_i15.c: optimistic_yield(10000); src/ec/ec_prime_i31.c: optimistic_yield(10000); src/inner.h: extern void optimistic_yield(uint32_t); src/inner.h: #define...

I apologize for the delay in replying :) There two parts to this: something to trigger data collection, probably with sensor interface. and something to act upon it. First part...

In the process of adapting ArduinoJson6, I needed to have some dummy sensor that does not need any hardware but still allows to report real (and changing) data. Following my...