diff --git a/impl/src/main.c b/impl/src/main.c index 8707a0e..a9e7fa7 100644 --- a/impl/src/main.c +++ b/impl/src/main.c @@ -126,8 +126,6 @@ void cb_rx(rx_evt_t evt, const struct layer1_rx_s *rx, uint8_t *packet_data, siz } -static int debug_fd; - static result_t transmit(sdr_ctx_t *sdr, const float complex *samples, size_t len) { size_t to_transmit_rf = len * SDR_OVERSAMPLING; @@ -165,8 +163,6 @@ int main(int argc, char **argv) bool on_air = true; - debug_fd = open("/tmp/dump.cf32", O_CREAT | O_WRONLY | O_TRUNC); - // ** Initialize ** char devname[IFNAMSIZ] = "hamnet70"; @@ -368,8 +364,6 @@ int main(int argc, char **argv) } } - close(debug_fd); - // ** Cleanup ** layer1_tx_shutdown(&tx);