mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-07-26 01:48:10 -07:00
Merge branch 'dev' of https://github.com/flipperdevices/flipperzero-firmware into xfw-dev
This commit is contained in:
@@ -112,7 +112,7 @@ bool buffer_stream_send_from_isr(BufferStream* buffer_stream, const uint8_t* dat
|
||||
return result;
|
||||
}
|
||||
|
||||
Buffer* buffer_stream_receive(BufferStream* buffer_stream, TickType_t timeout) {
|
||||
Buffer* buffer_stream_receive(BufferStream* buffer_stream, uint32_t timeout) {
|
||||
Buffer* buffer;
|
||||
size_t size =
|
||||
furi_stream_buffer_receive(buffer_stream->stream, &buffer, sizeof(Buffer*), timeout);
|
||||
|
||||
@@ -69,7 +69,7 @@ bool buffer_stream_send_from_isr(BufferStream* buffer_stream, const uint8_t* dat
|
||||
* @param timeout
|
||||
* @return Buffer*
|
||||
*/
|
||||
Buffer* buffer_stream_receive(BufferStream* buffer_stream, TickType_t timeout);
|
||||
Buffer* buffer_stream_receive(BufferStream* buffer_stream, uint32_t timeout);
|
||||
|
||||
/**
|
||||
* @brief Get stream overrun count
|
||||
|
||||
Reference in New Issue
Block a user