ms: use queues with timeouts

Change-Id: I02e668a55dece96e421c82706b76bbb411ea6712
This commit is contained in:
Eric Wild 2024-03-18 20:31:06 +01:00
parent db24660ac0
commit aa820c2ac1
1 changed files with 2 additions and 2 deletions

View File

@ -37,6 +37,6 @@ struct internal_q_tx_buf {
memcpy(buf, (void *)br->burst, br->burst_len);
}
};
using tx_queue_t = spsc_cond<8 * 1, internal_q_tx_buf, true, false>;
using tx_queue_t = spsc_cond_timeout<8 * 1, internal_q_tx_buf, true, false>;
using cmd_queue_t = spsc_cond_timeout<8 * 1, trxcon_phyif_cmd, true, false>;
using cmdr_queue_t = spsc_cond<8 * 1, trxcon_phyif_rsp, false, false>;
using cmdr_queue_t = spsc_cond_timeout<8 * 1, trxcon_phyif_rsp, false, false>;