Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sending publish commands inside ps_set_new_msg_cb #8

Open
Daniel-Craciun opened this issue Jan 5, 2025 · 0 comments
Open

Sending publish commands inside ps_set_new_msg_cb #8

Daniel-Craciun opened this issue Jan 5, 2025 · 0 comments

Comments

@Daniel-Craciun
Copy link

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.

`
void cb_log_value(ps_subscriber_t *s) {
ps_msg_t *msg = ps_get(s, MS_MESSAGE_TIMEOUT);

  if (msg != NULL) {
      if (PS_IS_INT(msg)) {
          ESP_LOGI("value", msg->int_val);
      }

      ps_unref_msg(msg);
  }

}

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);

  if (msg != NULL) {
      if (PS_IS_INT(msg)) {
          PS_PUB_INT("counter2", msg->int_val+1);
      }

      ps_unref_msg(msg);
  }

}

ps_subscriber_t *s = ps_new_subscriber(MESSAGE_QUEUE_SIZE, PS_STRLIST("counter1"));
ps_set_new_msg_cb(s, cb_send_new_value);
`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant