You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably you will need to use FreeRTOS to notify a task from the IRQ to publish from a task context.
I'm not sure, but micro-ROS is quite heavy to be called from the context (stack) of an IRQ.
Also, normally is not a good idea to call a long or blocking method in an IRQ, and micro-ROS publish method can take a bit or even block (depending on the configuration).
Also, in the IRQ context probably you are not allowed to call the complete system API, normally it is limited to a small set of IRQ-safe APIs.
I've tried to implement a simple interrupt -> publish application and I've encountered issues making it difficult. What I originally tried is the same as what @pablogs9 recommended: have an ISR notify a suspended task with xTaskNotifyFromISR, and have that task publish a ROS message. Because that suspended task is not the same task as the micro-ROS task, it's unsafe to publish a message from it without enabling the UCLIENT_PROFILE_MULTITHREAD build flag. However, as reported in #155, enabling that flag is not possible.
I've resorted to running an rclc timer that publishes the message periodically, and setting the fields in the message from the ISR, however this either adds a delay to when the message is published because of the timer, or wastes processing on a faster timer to get the necessary reactivity.
I'm trying to have micro ros publish sensor information when an ESP32 pin is interrupt.
So far,
How would one go about using micro-ros with interrupts? I've try searching around, but didn't find any sample code. Any guidance is much appreciated.
The text was updated successfully, but these errors were encountered: