SoapySDR
0.4.4-gdb459f4f
Vendor and platform neutral SDR interface library
|
#include <SoapySDR/Config.h>
Go to the source code of this file.
Macros | |
#define | SOAPY_SDR_TIMEOUT (-1) |
#define | SOAPY_SDR_STREAM_ERROR (-2) |
#define | SOAPY_SDR_CORRUPTION (-3) |
#define | SOAPY_SDR_OVERFLOW (-4) |
#define | SOAPY_SDR_NOT_SUPPORTED (-5) |
#define | SOAPY_SDR_TIME_ERROR (-6) |
#define | SOAPY_SDR_UNDERFLOW (-7) |
Functions | |
SOAPY_SDR_API const char * | SoapySDR_errToStr (const int errorCode) |
Error codes used in the device API.
#define SOAPY_SDR_CORRUPTION (-3) |
Returned when read has data corruption. For example, the driver saw a malformed packet.
#define SOAPY_SDR_NOT_SUPPORTED (-5) |
Returned when a requested operation or flag setting is not supported by the underlying implementation.
#define SOAPY_SDR_OVERFLOW (-4) |
Returned when read has an overflow condition. For example, and internal buffer has filled.
#define SOAPY_SDR_STREAM_ERROR (-2) |
Returned for non-specific stream errors.
#define SOAPY_SDR_TIME_ERROR (-6) |
Returned when a the device encountered a stream time which was expired (late) or too early to process.
#define SOAPY_SDR_TIMEOUT (-1) |
Returned when read has a timeout.
#define SOAPY_SDR_UNDERFLOW (-7) |
Returned when write caused an underflow condition. For example, a continuous stream was interrupted.
SOAPY_SDR_API const char* SoapySDR_errToStr | ( | const int | errorCode | ) |
Convert a error code to a string for printing purposes. If the error code is unrecognized, errToStr returns "UNKNOWN".
errorCode | a negative integer return code |