Jonas Spanoghe
Jonas Spanoghe
Seems like for `stm32l4x5` the `ascr` register will only be available in `stm32-rs` v0.15.0 Maybe this PR can be delayed until that is released.
Some small things needed to be done to update to the new stm32-rs release. Updating the PAC should probably be done in a separate PR, but I wanted to let...
Unsurprisingly, updating to the new stm32-rs release for all devices will be more involved than simply fixing the issues for a single device. I don't know if anyone is already...
I can't immediately explain what's going wrong. If you have the option to step through the `freeze` method with gdb, it usually explains a lot of things. For reference, here's...
I ran into the circular dependency issue as well after restructuring some code. I also don't see a reason for the dependency on `main`, so it would be good if...
I believe there was an issue with TLS renegotiation that was fixed and backported to v4.1 and v4.0. I think it's advisable to use the latest v4.1.x tag or track...
Maybe we can tag some of the folks of Espressif who are active in this repository. @igrr @shahpiyushv @lhespress @projectgus :wave: If anything still needs to be done before this...
Since I would like to have these fixes for WebSockets available, I decided to give a hand and split off the WebSocket-part of this PR into #111.
MQTT over websockets works for me when following @MartinTJDK's instructions and adding some files to `port/CMakeLists.txt`: ``` "${AZURE_IOT_SDK}/iothub_client/src/iothubtransportmqtt_websockets.c" "${AZURE_IOT_SDK}/c-utility/src/gb_rand.c" "${AZURE_IOT_SDK}/c-utility/src/utf8_checker.c" "${AZURE_IOT_SDK}/c-utility/src/uws_client.c" "${AZURE_IOT_SDK}/c-utility/src/uws_frame_encoder.c" "${AZURE_IOT_SDK}/c-utility/src/wsio.c" ``` Is there a reason these files...
Hi @mciantyre, this seemed like a nice thing to have so I gave it a shot. I've mainly borrowed from `imxrt-usbd` + `imxrt-uart-log` and haven't found a way to make...