Tommaso Clini

Results 22 comments of Tommaso Clini

That would definitely be interesting. How does the lib parser work? I'd like to try and add something myself

I'm not using the Arduino IDE, I'm using esp idf 5.2 directly, other than this, I get a watchdog timer timeout when calling proto.run_tx... for the second time. Can the...

Here's main.cpp: ``` #include #include #include #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "freertos/queue.h" #include "driver/uart.h" #include "driver/gpio.h" #include "esp_log.h" #include static const char* TAG = "prova tinyproto"; static const char message[]...

I'm getting the same result even when using cpp_api branch

Or... just use linux

Thx, would a change to the crate to make this possible out-of-the-box require a new major version to be released? Or can it be achieved with a minor?

I've tried a few bt commands, but bt advertise start didn't work, ioctl(SISIOCBTADVSTART) returned 5, or something like that. I've asked because in the documentation it says that it is...

I'm having this exact problem too, on stm32f722re

Maybe it's because `start` first sets up the adc(starting the ring buffer) and then clears the ring buffer? Instead of first clearing it and then starting the continuous transfer. ```...