]> code.octet-stream.net Git - m17rt/blobdiff - m17core/src/modem.rs
Support for baseband output to a soundcard
[m17rt] / m17core / src / modem.rs
index 35a23a74d5eb650716719e062e6ccb0547a2cdb7..fe57188bb582f0be1fdce265932d8d6dccf36464 100644 (file)
@@ -419,7 +419,7 @@ impl Modulator for SoftModulator {
 
         // if we have pre-TX padding to accommodate TxDelay then expend that first
         if self.tx_delay_padding > 0 {
 
         // if we have pre-TX padding to accommodate TxDelay then expend that first
         if self.tx_delay_padding > 0 {
-            let len = out.len().max(self.tx_delay_padding);
+            let len = out.len().min(self.tx_delay_padding);
             self.tx_delay_padding -= len;
             for x in 0..len {
                 out[x] = 0;
             self.tx_delay_padding -= len;
             for x in 0..len {
                 out[x] = 0;