Patrick Cook

Results 7 comments of Patrick Cook

MQTT 5 is on our roadmap; however, we don't think anybody is working on it right now. We would be grateful for any contributions made to accelerate its delivery.

Ignoring the complexity of unblocking all tasks waiting on a Queue, There is a problem with atomicity of this operation. What post-conditions are expected when xQueueUnblock returns a success code...

FreeRTOS queues can have multiple readers or multiple writers waiting on them. https://github.com/FreeRTOS/FreeRTOS-Kernel/blob/ad13a1f8dfeb444dd8a8af52c00814954900dfca/queue.c#L115-L116 ```c List_t xTasksWaitingToSend; /**< List of tasks that are blocked waiting to post onto this queue. Stored...

This actually looks more like a race condition in LogInfo for this demo. IT should have printed out an example job, but this is an example console output in the...

Ah, it looks like the carriage return at the beginning of log messages isn't overwriting the current line. It's a hacky way of suppressing the log message header.

I haven't worked with the secure element on ESP32, but the functions referenced in this issue appear to be implemented by https://github.com/espressif/esp_secure_cert_mgr Perhaps check documentation there, first. Otherwise, additional Espressif...

I have a couple of ideas that might be worth trying. Specifying the generator for CMake: ``` bash cmake -G Generators Green Hills MULTI = Generates Green Hills MULTI files...