1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-08-13 11:12:25 -04:00
sdrangel/liblimesuite/src/BuiltinConnections.cpp

46 lines
1.2 KiB
C++
Raw Normal View History

/***********************************************************************
* This is a collection of all built-in connections that are included
* with the library. Additional connections can be added dynamically.
**********************************************************************/
/* #undef ENABLE_EVB7COM */
#define ENABLE_STREAM
/* #undef ENABLE_STREAM_UNITE */
/* #undef ENABLE_NOVENARF7 */
#define ENABLE_uLimeSDR
#define ENABLE_PCIE_XILLYBUS
void __loadConnectionEVB7COMEntry(void);
void __loadConnectionSTREAMEntry(void);
void __loadConnectionSTREAM_UNITEEntry(void);
void __loadConnectionNovenaRF7Entry(void);
void __loadConnection_uLimeSDREntry(void);
void __loadConnectionXillybusEntry(void);
void __loadAllConnections(void)
{
#ifdef ENABLE_EVB7COM
__loadConnectionEVB7COMEntry();
#endif
#ifdef ENABLE_STREAM
__loadConnectionSTREAMEntry();
#endif
#ifdef ENABLE_STREAM_UNITE
__loadConnectionSTREAM_UNITEEntry();
#endif
#ifdef ENABLE_uLimeSDR
__loadConnection_uLimeSDREntry();
#endif
#ifdef ENABLE_NOVENARF7
__loadConnectionNovenaRF7Entry();
#endif
#ifdef ENABLE_PCIE_XILLYBUS
__loadConnectionXillybusEntry();
#endif
}