faydr / QMesh

QMesh: a synchronized flooded mesh network for voice over LoRa
GNU General Public License v3.0
150 stars 14 forks source link

Add locking to FEC #91

Closed faydr closed 3 years ago

faydr commented 3 years ago

FEC algorithms use a lot of memory, so we only want one of running at a time. We can find ourselves using the FEC simultaneously in multiple instances, so we need to add some Mutexes to the FEC object.

faydr commented 3 years ago

Added.