Thorsten von Eicken

Results 148 comments of Thorsten von Eicken

I hit the same issue. Is it realty that much work to update? From a usage point of view it's the difference between being able to just download a caddy...

Just as a heads-up, building caddy is not that easy... To install xcaddy I had to use: ``` go install github.com/caddyserver/xcaddy/cmd/xcaddy@latest ``` And I built caddy: ``` xcaddy build v2.4.1...

Every time I need to do something different with ffmpeg I have to spend time looking up docs, blogs, and stackexchange... After digging into it, I'm not sure whether it's...

If this still reproduces with the latest changes, can you please post more of the console output of the board? It seems that the watchdog tries to mark the current...

I'm afraid that's not the case: #5973, #5840, #5953 are also still open... I've been taking a bit of a break from MicroPython 'cause getting PRs in just takes so...

I have not see that error, looks like a problem with your partition table: you are missing the otadata partition.

I use MQTTS with mosquitto and have it configured with a user and password for each device. I set the mqtt config dict as shown in https://github.com/tve/mqboard/blob/master/board/board_config_tmpl.py#L26-L33 except that I...

I have to admit that I have not used key/cert... The ssl_params dict gets passed pretty much straight through to `modssl.wrap_socket` converted into keyword args: https://github.com/tve/micropython/blob/tve-1.13/extmod/uasyncio/stream.py#L101-L117 So according to the...

Great progress! Yes, need to add the options and send the info to the broker.

The error states that message 21 got lost (it received message 22 when it expected 21). I have to admit I haven't seen that error triggered... mqboard doesn't use flow-control...