RFToolSDR/linux-app/spectrum-analyser/usb_platform.h
David Shah 4a753eff6a Linux App Improvements
- Fix some memory access bugs
 - Add optional support for CUDA FFTs
 - Compile a shared library, as part of a gnuradio integration project
2017-04-15 10:54:50 +01:00

12 lines
243 B
C

#pragma once
#include <stdint.h>
// Custom platform functions, in addition to the standard AD ones
void enter_rx_streaming_mode();
void leave_rx_streaming_mode();
struct iq_sample {
int16_t i, q;
};
int rx_get_data(struct iq_sample *buf);