Deomid Ryabkov

Results 363 comments of Deomid Ryabkov

i think you are right here. i looked closer in the datasheet and ECC private key is the _typical_ use for slots 0-7. when implementing this, i misinterpreted it. i'll...

that should be a simple matter of relaxing the constraint, setting keys from pem is already supported.

it can be set in mos.yml via SDK options. for example, to run at 240 mhz: ESP_IDF_SDKCONFIG_OPTS: "${build_vars.ESP_IDF_SDKCONFIG_OPTS} CONFIG_ESP32_DEFAULT_CPU_FREQ_80= CONFIG_ESP32_DEFAULT_CPU_FREQ_160= CONFIG_ESP32_DEFAULT_CPU_FREQ_240=y CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=240" changing frequency at runtime should be possible as...

so, even setting to the same value does not work? bummer. i'll do it, but may not get around to it for a while. in the mean time, PRs welcome....

ahem... well, OTA is not implemented for CC3220 yet. [the whole thing](https://github.com/cesanta/mongoose-os/blob/7284eca3c781f177aec379e0693dabd4bef46300/fw/platforms/cc3220/src/cc3220_updater.c#L42) is basically a stub. so... yeah. :)

"Stack canary watchpoint triggered" - this suggests stack overflow, and that is a huge stack,indeed. looks like you're sending logs to websocket, and that log entry is emitted from networking...

i see. i think the task mentioned is the timer task, can you increase CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH from 4096 to, say. 6144 and see if that helps? ```yaml build_vars: ESP_IDF_SDKCONFIG_OPTS: > ${build_vars.ESP_IDF_SDKCONFIG_OPTS}...

i might, let me think about it some more...

mgos_bitbang is not currently suited for outputting continuous signals. you are better off using hardware timer.