mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-05-06 08:45:01 -04:00
Reduced audio tx FIFO refill size
Last received POCSAG address is auto loaded in POCSAG tx
This commit is contained in:
parent
aec41cab91
commit
446efa8fc0
12 changed files with 44 additions and 28 deletions
|
@ -90,7 +90,7 @@ void NumbersStationView::prepare_audio() {
|
|||
}
|
||||
|
||||
if (!pause) {
|
||||
size_t bytes_read = reader->read(audio_buffer, 1024);
|
||||
auto bytes_read = reader->read(audio_buffer, 1024).value();
|
||||
|
||||
// Unsigned to signed, pretty stupid :/
|
||||
for (size_t n = 0; n < bytes_read; n++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue