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
Hi Jaracil, I've been wondering how would I send a PS_PUB_INT inside of a callback defined in the ps_set_new_msg_cb because looking at the code currently the GLOBAL_LOCK will lock the execution for the next PS_PUB_INT. I'm using freertos and psqueue_b. My code example.
Hi Jaracil, I've been wondering how would I send a
PS_PUB_INT
inside of a callback defined in theps_set_new_msg_cb
because looking at the code currently theGLOBAL_LOCK
will lock the execution for the nextPS_PUB_INT
. I'm using freertos and psqueue_b. My code example.`
void cb_log_value(ps_subscriber_t *s) {
ps_msg_t *msg = ps_get(s, MS_MESSAGE_TIMEOUT);
}
ps_subscriber_t *s2 = ps_new_subscriber(MESSAGE_QUEUE_SIZE, PS_STRLIST("counter2"));
ps_set_new_msg_cb(s2, cb_log_value);
void cb_send_new_value(ps_subscriber_t *s) {
ps_msg_t *msg = ps_get(s, MS_MESSAGE_TIMEOUT);
}
ps_subscriber_t *s = ps_new_subscriber(MESSAGE_QUEUE_SIZE, PS_STRLIST("counter1"));
ps_set_new_msg_cb(s, cb_send_new_value);
`
The text was updated successfully, but these errors were encountered: