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
Currently, the status code returned by sendCANMessage() is just the most recent status of the sending thread, which is just the status of sending some previous message. Instead, sendCANMessage() should return some kind of promise-like object on which you can await the status of sending the actual provided message. Most likely we'd implement this using C++ coroutines.
The text was updated successfully, but these errors were encountered:
Currently, the status code returned by
sendCANMessage()
is just the most recent status of the sending thread, which is just the status of sending some previous message. Instead,sendCANMessage()
should return some kind of promise-like object on which you can await the status of sending the actual provided message. Most likely we'd implement this using C++ coroutines.The text was updated successfully, but these errors were encountered: