LMS API Documentation
LimeSuite.h
Go to the documentation of this file.
1 
21 #ifndef LMS7_API_H
22 #define LMS7_API_H
23 
24 #include <stdint.h>
25 #include <stdlib.h>
26 #include "LMS7002M_parameters.h"
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #else
31 /* stdbool.h is not applicable for C++ programs, as the language inherently
32  * provides the bool type.
33  *
34  * Users of Visual Studio 2012 and earlier will need to supply a stdbool.h
35  * implementation, as it is not included with the toolchain. Visual Studio 2013
36  * onward supplies this header.
37  */
38 #include <stdbool.h>
39 #endif
40 
41 #if defined _WIN32 || defined __CYGWIN__
42 # include <windows.h>
43 # define CALL_CONV __cdecl
44 # ifdef __GNUC__
45 # define API_EXPORT __attribute__ ((dllexport))
46 # else
47 # define API_EXPORT __declspec(dllexport)
48 # endif
49 #elif defined _DOXYGEN_ONLY_
50 
52 # define API_EXPORT
53 
55 # define CALL_CONV
56 #else
57 # define API_EXPORT __attribute__ ((visibility ("default")))
58 # define CALL_CONV
59 #endif
60 
62 typedef double float_type;
63 
65 static const int LMS_SUCCESS = 0;
66 
75 typedef void lms_device_t;
77 
79 typedef char lms_info_str_t[256];
80 
88 API_EXPORT int CALL_CONV LMS_GetDeviceList(lms_info_str_t *dev_list);
89 
104 API_EXPORT int CALL_CONV LMS_Open(lms_device_t **device, const lms_info_str_t info,
105  void* args);
106 
116 API_EXPORT int CALL_CONV LMS_Close(lms_device_t *device);
117 
125 API_EXPORT int CALL_CONV LMS_Disconnect(lms_device_t *device);
126 
135 API_EXPORT bool CALL_CONV LMS_IsOpen(lms_device_t *device, int port);
136 
148 static const bool LMS_CH_TX = true;
149 static const bool LMS_CH_RX = false;
150 
152 typedef char lms_name_t[16];
153 
155 typedef struct
156 {
157  float_type min;
158  float_type max;
159  float_type step;
160 }lms_range_t;
161 
163 typedef enum
164 {
172 
184 API_EXPORT int CALL_CONV LMS_Init(lms_device_t *device);
185 
196 API_EXPORT int CALL_CONV LMS_GetNumChannels(lms_device_t *device, bool dir_tx);
197 
208 API_EXPORT int CALL_CONV LMS_EnableChannel(lms_device_t *device, bool dir_tx,
209  size_t chan, bool enabled);
210 
224 API_EXPORT int CALL_CONV LMS_SetSampleRate(lms_device_t *device, float_type rate,
225  size_t oversample);
226 
240 API_EXPORT int CALL_CONV LMS_GetSampleRate(lms_device_t *device, bool dir_tx,
241  size_t chan, float_type *host_Hz, float_type *rf_Hz);
251 API_EXPORT int CALL_CONV LMS_GetSampleRateRange(lms_device_t *device, bool dir_tx,
252  lms_range_t *range);
253 
268 API_EXPORT int CALL_CONV LMS_SetLOFrequency(lms_device_t *device, bool dir_tx,
269  size_t chan, float_type frequency);
270 
281 API_EXPORT int CALL_CONV LMS_GetLOFrequency(lms_device_t *device, bool dir_tx,
282  size_t chan, float_type *frequency);
283 
293 API_EXPORT int CALL_CONV LMS_GetLOFrequencyRange(lms_device_t *device, bool dir_tx,
294  lms_range_t *range);
295 
297 enum
298 {
305 };
306 
318 API_EXPORT int CALL_CONV LMS_GetAntennaList(lms_device_t *dev, bool dir_tx,
319  size_t chan, lms_name_t *list);
320 
331 API_EXPORT int CALL_CONV LMS_SetAntenna(lms_device_t *dev, bool dir_tx,
332  size_t chan, size_t index);
333 
343 API_EXPORT int CALL_CONV LMS_GetAntenna(lms_device_t *dev, bool dir_tx,
344  size_t chan);
345 
358 API_EXPORT int CALL_CONV LMS_GetAntennaBW(lms_device_t *dev, bool dir_tx,
359  size_t chan, size_t index, lms_range_t *range);
360 
376 API_EXPORT int CALL_CONV LMS_SetNormalizedGain(lms_device_t *device, bool dir_tx,
377  size_t chan,float_type gain);
378 
393 API_EXPORT int CALL_CONV LMS_SetGaindB(lms_device_t *device, bool dir_tx,
394  size_t chan, unsigned gain);
395 
409 API_EXPORT int CALL_CONV LMS_GetNormalizedGain(lms_device_t *device, bool dir_tx,
410  size_t chan, float_type *gain);
423 API_EXPORT int CALL_CONV LMS_GetGaindB(lms_device_t *device, bool dir_tx,
424  size_t chan, unsigned *gain);
425 
437 API_EXPORT int CALL_CONV LMS_SetLPFBW(lms_device_t *device, bool dir_tx,
438  size_t chan, float_type bandwidth);
439 
452 API_EXPORT int CALL_CONV LMS_GetLPFBW(lms_device_t *device, bool dir_tx,
453  size_t chan, float_type *bandwidth);
454 
464 API_EXPORT int CALL_CONV LMS_GetLPFBWRange(lms_device_t *device, bool dir_tx,
465  lms_range_t *range);
466 
477 API_EXPORT int CALL_CONV LMS_SetLPF(lms_device_t *device, bool dir_tx,
478  size_t chan, bool enable);
479 
494 API_EXPORT int CALL_CONV LMS_SetGFIRLPF(lms_device_t *device, bool dir_tx,
495  size_t chan, bool enabled, float_type bandwidth);
496 
512 API_EXPORT int CALL_CONV LMS_Calibrate(lms_device_t *device, bool dir_tx,
513  size_t chan, double bw, unsigned flags);
514 
527 API_EXPORT int CALL_CONV LMS_LoadConfig(lms_device_t *device, const char *filename);
528 
537 API_EXPORT int CALL_CONV LMS_SaveConfig(lms_device_t *device, const char *filename);
538 
551 API_EXPORT int CALL_CONV LMS_SetTestSignal(lms_device_t *device, bool dir_tx,
552  size_t chan, lms_testsig_t sig, int16_t dc_i, int16_t dc_q);
563 API_EXPORT int CALL_CONV LMS_GetTestSignal(lms_device_t *device, bool dir_tx,
564  size_t chan, lms_testsig_t *sig);
565 
578 typedef enum
580 {
581  LMS_GFIR1 = 0,
582  LMS_GFIR2,
583  LMS_GFIR3
584 }lms_gfir_t;
585 
587 static const int LMS_NCO_VAL_COUNT = 16;
588 
610 API_EXPORT int CALL_CONV LMS_SetSampleRateDir(lms_device_t *device, bool dir_tx,
611  float_type rate, size_t oversample);
612 
628 API_EXPORT int CALL_CONV LMS_SetNCOFrequency(lms_device_t *device, bool dir_tx,
629  size_t chan, const float_type *freq, float_type pho);
630 
643 API_EXPORT int CALL_CONV LMS_GetNCOFrequency(lms_device_t *device, bool dir_tx,
644  size_t chan, float_type *freq, float_type *pho);
645 
661 API_EXPORT int CALL_CONV LMS_SetNCOPhase(lms_device_t *device, bool dir_tx,
662  size_t chan, const float_type *phases, float_type fcw);
663 
676 API_EXPORT int CALL_CONV LMS_GetNCOPhase(lms_device_t *device, bool dir_tx,
677  size_t chan, float_type *phases, float_type *fcw);
678 
691 API_EXPORT int CALL_CONV LMS_SetNCOIndex(lms_device_t *device, bool dir_tx,
692  size_t chan, int index, bool downconv);
693 
703 API_EXPORT int CALL_CONV LMS_GetNCOIndex(lms_device_t *device, bool dir_tx,
704  size_t chan);
705 
715 API_EXPORT int CALL_CONV LMS_ReadParam(lms_device_t *device,
716  struct LMS7Parameter param, uint16_t *val);
717 
727 API_EXPORT int CALL_CONV LMS_WriteParam(lms_device_t *device,
728  struct LMS7Parameter param, uint16_t val);
729 
743 API_EXPORT int CALL_CONV LMS_SetGFIRCoeff(lms_device_t * device, bool dir_tx,
744  size_t chan, lms_gfir_t filt, const float_type* coef,size_t count);
745 
758 API_EXPORT int CALL_CONV LMS_GetGFIRCoeff(lms_device_t * device, bool dir_tx,
759  size_t chan, lms_gfir_t filt, float_type* coef);
760 
772 API_EXPORT int CALL_CONV LMS_SetGFIR(lms_device_t * device, bool dir_tx,
773  size_t chan, lms_gfir_t filt, bool enabled);
774 
785 API_EXPORT int CALL_CONV LMS_VCTCXOWrite(lms_device_t * dev, uint16_t val);
786 
795 API_EXPORT int CALL_CONV LMS_VCTCXORead(lms_device_t * dev, uint16_t *val);
796 
812 API_EXPORT int CALL_CONV LMS_Reset(lms_device_t *device);
813 
823 API_EXPORT int CALL_CONV LMS_ReadLMSReg(lms_device_t *device, uint32_t address,
824  uint16_t *val);
825 
835 API_EXPORT int CALL_CONV LMS_WriteLMSReg(lms_device_t *device, uint32_t address,
836  uint16_t val);
837 
847 API_EXPORT int CALL_CONV LMS_ReadFPGAReg(lms_device_t *device, uint32_t address,
848  uint16_t *val);
849 
859 API_EXPORT int CALL_CONV LMS_WriteFPGAReg(lms_device_t *device, uint32_t address,
860  uint16_t val);
861 
872 API_EXPORT int CALL_CONV LMS_ReadCustomBoardParam(lms_device_t *device,
873  uint8_t id, float_type *val, lms_name_t units);
874 
885 API_EXPORT int CALL_CONV LMS_WriteCustomBoardParam(lms_device_t *device,
886  uint8_t id, float_type val, const lms_name_t units);
887 
894 #define LMS_CLOCK_REF 0x0000
895 #define LMS_CLOCK_SXR 0x0001
896 #define LMS_CLOCK_SXT 0x0002
897 #define LMS_CLOCK_CGEN 0x0003
898 #define LMS_CLOCK_RXTSP 0x0004
899 #define LMS_CLOCK_TXTSP 0x0005
900 #define LMS_CLOCK_EXTREF 0x0006
901 
902 
913 API_EXPORT int CALL_CONV LMS_GetClockFreq(lms_device_t *dev, size_t clk_id,
914  float_type *freq);
915 
929 API_EXPORT int CALL_CONV LMS_SetClockFreq(lms_device_t *dev, size_t clk_id,
930  float_type freq);
931 
940 API_EXPORT int CALL_CONV LMS_Synchronize(lms_device_t *dev, bool toChip);
941 
949 API_EXPORT int CALL_CONV LMS_GPIORead(lms_device_t *dev, uint8_t* buffer, size_t len);
950 
958 API_EXPORT int CALL_CONV LMS_GPIOWrite(lms_device_t *dev, const uint8_t* buffer, size_t len);
959 
967 API_EXPORT int CALL_CONV LMS_GPIODirRead(lms_device_t *dev, uint8_t* buffer, size_t len);
968 
976 API_EXPORT int CALL_CONV LMS_GPIODirWrite(lms_device_t *dev, const uint8_t* buffer, size_t len);
977 
986 API_EXPORT int CALL_CONV LMS_EnableCalibCache(lms_device_t *dev, bool enable);
987 
997 API_EXPORT int CALL_CONV LMS_GetChipTemperature(lms_device_t *dev, size_t ind,
998  float_type *temp);
999 
1010 typedef struct
1011 {
1017  uint64_t timestamp;
1018 
1025 
1030 
1032 
1034 typedef struct
1035 {
1039  size_t handle;
1040 
1042  bool isTx;
1043 
1045  uint32_t channel;
1046 
1048  uint32_t fifoSize;
1049 
1057 
1059  enum
1060  {
1061  LMS_FMT_F32=0,
1063  LMS_FMT_I12
1064  }dataFmt;
1065 }lms_stream_t;
1066 
1068 typedef struct
1069 {
1071  bool active;
1075  uint32_t fifoSize;
1077  uint32_t underrun;
1079  uint32_t overrun;
1081  uint32_t droppedPackets;
1083  float_type sampleRate;
1085  float_type linkRate;
1087  uint64_t timestamp;
1088 
1090 
1100 API_EXPORT int CALL_CONV LMS_SetupStream(lms_device_t *device, lms_stream_t *stream);
1101 
1110 API_EXPORT int CALL_CONV LMS_DestroyStream(lms_device_t *dev, lms_stream_t *stream);
1111 
1119 API_EXPORT int CALL_CONV LMS_StartStream(lms_stream_t *stream);
1120 
1128 API_EXPORT int CALL_CONV LMS_StopStream(lms_stream_t *stream);
1129 
1142  API_EXPORT int CALL_CONV LMS_RecvStream(lms_stream_t *stream, void *samples,
1143  size_t sample_count, lms_stream_meta_t *meta, unsigned timeout_ms);
1144 
1153 API_EXPORT int CALL_CONV LMS_GetStreamStatus(lms_stream_t *stream, lms_stream_status_t* status);
1154 
1166 API_EXPORT int CALL_CONV LMS_SendStream(lms_stream_t *stream,
1167  const void *samples,size_t sample_count,
1168  const lms_stream_meta_t *meta, unsigned timeout_ms);
1169 
1179 API_EXPORT int CALL_CONV LMS_UploadWFM(lms_device_t *device, const void **samples,
1180  uint8_t chCount, size_t sample_count, int format);
1181 
1189 API_EXPORT int CALL_CONV LMS_EnableTxWFM(lms_device_t *device, unsigned chan, bool active);
1190 
1202 typedef enum
1203 {
1207 }lms_prog_md_t;
1208 
1210 typedef enum
1211 {
1215  LMS_PROG_TRG_HPM7,
1217 
1225 typedef bool (*lms_prog_callback_t)(int bsent, int btotal, const char* progressMsg);
1226 
1239 API_EXPORT int CALL_CONV LMS_Program(lms_device_t *device, const char *data, size_t size,
1240  lms_prog_trg_t target, lms_prog_md_t mode, lms_prog_callback_t callback);
1241 
1251 API_EXPORT int CALL_CONV LMS_ProgramUpdate(lms_device_t *dev, bool download,
1252  lms_prog_callback_t callback);
1253 
1255 typedef struct
1256 {
1257  char deviceName[32];
1258  char expansionName[32];
1259  char firmwareVersion[16];
1260  char hardwareVersion[16];
1261  char protocolVersion[16];
1263  char gatewareVersion[16];
1264  char gatewareRevision[16];
1265  char gatewareTargetBoard[32];
1267 
1279 API_EXPORT const lms_dev_info_t* CALL_CONV LMS_GetDeviceInfo(lms_device_t *device);
1280 
1284 API_EXPORT const char* LMS_GetLibraryVersion();
1285 
1291 API_EXPORT const char * CALL_CONV LMS_GetLastErrorMessage(void);
1292 
1295 #ifdef __cplusplus
1296 } //extern "C"
1297 #endif
1298 
1299 #endif //LMS_SDR_INTERFACE_H
lms_prog_md_t
Definition: LimeSuite.h:1202
API_EXPORT int CALL_CONV LMS_Disconnect(lms_device_t *device)
API_EXPORT int CALL_CONV LMS_Program(lms_device_t *device, const char *data, size_t size, lms_prog_trg_t target, lms_prog_md_t mode, lms_prog_callback_t callback)
char lms_name_t[16]
Definition: LimeSuite.h:152
RX LNA_W port.
Definition: LimeSuite.h:302
uint32_t boardSerialNumber
A unique board serial number.
Definition: LimeSuite.h:1262
API_EXPORT int CALL_CONV LMS_SaveConfig(lms_device_t *device, const char *filename)
float_type linkRate
Combined data rate of all stream of the same direction (TX or RX)
Definition: LimeSuite.h:1085
TX port 2.
Definition: LimeSuite.h:304
DC test signal.
Definition: LimeSuite.h:170
API_EXPORT int CALL_CONV LMS_UploadWFM(lms_device_t *device, const void **samples, uint8_t chCount, size_t sample_count, int format)
uint32_t overrun
FIFO overrun count.
Definition: LimeSuite.h:1079
API_EXPORT int CALL_CONV LMS_SetSampleRateDir(lms_device_t *device, bool dir_tx, float_type rate, size_t oversample)
static const bool LMS_CH_TX
Convenience constants for TX selection.
Definition: LimeSuite.h:148
uint32_t underrun
FIFO underrun count.
Definition: LimeSuite.h:1077
uint32_t channel
Channel number. Starts at 0.
Definition: LimeSuite.h:1045
API_EXPORT int CALL_CONV LMS_SetupStream(lms_device_t *device, lms_stream_t *stream)
API_EXPORT int CALL_CONV LMS_GetTestSignal(lms_device_t *device, bool dir_tx, size_t chan, lms_testsig_t *sig)
API_EXPORT int CALL_CONV LMS_SetClockFreq(lms_device_t *dev, size_t clk_id, float_type freq)
API_EXPORT int CALL_CONV LMS_GetNCOPhase(lms_device_t *device, bool dir_tx, size_t chan, float_type *phases, float_type *fcw)
API_EXPORT int CALL_CONV LMS_LoadConfig(lms_device_t *device, const char *filename)
API_EXPORT int CALL_CONV LMS_GPIORead(lms_device_t *dev, uint8_t *buffer, size_t len)
Test signal from NCO half scale.
Definition: LimeSuite.h:167
float_type step
Minimum value step.
Definition: LimeSuite.h:159
float_type min
Minimum allowed value.
Definition: LimeSuite.h:157
API_EXPORT int CALL_CONV LMS_SetNCOPhase(lms_device_t *device, bool dir_tx, size_t chan, const float_type *phases, float_type fcw)
uint32_t fifoSize
FIFO size (in samples) used by stream.
Definition: LimeSuite.h:1048
API_EXPORT int CALL_CONV LMS_SetGaindB(lms_device_t *device, bool dir_tx, size_t chan, unsigned gain)
API_EXPORT int CALL_CONV LMS_WriteCustomBoardParam(lms_device_t *device, uint8_t id, float_type val, const lms_name_t units)
No active path (RX or TX)
Definition: LimeSuite.h:299
API_EXPORT int CALL_CONV LMS_GetNCOFrequency(lms_device_t *device, bool dir_tx, size_t chan, float_type *freq, float_type *pho)
API_EXPORT int CALL_CONV LMS_ProgramUpdate(lms_device_t *dev, bool download, lms_prog_callback_t callback)
API_EXPORT int CALL_CONV LMS_Close(lms_device_t *device)
Test signal from NCO half scale.
Definition: LimeSuite.h:166
uint32_t fifoFilledCount
Number of samples in FIFO buffer.
Definition: LimeSuite.h:1073
API_EXPORT int CALL_CONV LMS_SetGFIR(lms_device_t *device, bool dir_tx, size_t chan, lms_gfir_t filt, bool enabled)
API_EXPORT int CALL_CONV LMS_VCTCXOWrite(lms_device_t *dev, uint16_t val)
API_EXPORT int CALL_CONV LMS_EnableChannel(lms_device_t *device, bool dir_tx, size_t chan, bool enabled)
API_EXPORT int CALL_CONV LMS_WriteParam(lms_device_t *device, struct LMS7Parameter param, uint16_t val)
size_t handle
Definition: LimeSuite.h:1039
RX LNA_L port.
Definition: LimeSuite.h:301
program FX3 firmware
Definition: LimeSuite.h:1212
API_EXPORT int CALL_CONV LMS_StartStream(lms_stream_t *stream)
API_EXPORT int CALL_CONV LMS_SetNCOFrequency(lms_device_t *device, bool dir_tx, size_t chan, const float_type *freq, float_type pho)
API_EXPORT int CALL_CONV LMS_GetNumChannels(lms_device_t *device, bool dir_tx)
Test signal from NCO full scale.
Definition: LimeSuite.h:168
uint64_t timestamp
Current HW timestamp.
Definition: LimeSuite.h:1087
char lms_info_str_t[256]
Convenience type for fixed length LMS Device information string.
Definition: LimeSuite.h:79
API_EXPORT int CALL_CONV LMS_GetAntennaList(lms_device_t *dev, bool dir_tx, size_t chan, lms_name_t *list)
load firmware/bitstream to volatile storage
Definition: LimeSuite.h:1204
API_EXPORT int CALL_CONV LMS_ReadLMSReg(lms_device_t *device, uint32_t address, uint16_t *val)
API_EXPORT int CALL_CONV LMS_EnableTxWFM(lms_device_t *device, unsigned chan, bool active)
API_EXPORT int CALL_CONV LMS_SetAntenna(lms_device_t *dev, bool dir_tx, size_t chan, size_t index)
API_EXPORT int CALL_CONV LMS_WriteFPGAReg(lms_device_t *device, uint32_t address, uint16_t val)
API_EXPORT int CALL_CONV LMS_Init(lms_device_t *device)
API_EXPORT int CALL_CONV LMS_GetChipTemperature(lms_device_t *dev, size_t ind, float_type *temp)
API_EXPORT int CALL_CONV LMS_GetLOFrequencyRange(lms_device_t *device, bool dir_tx, lms_range_t *range)
double float_type
Floating point data type.
Definition: LimeSuite.h:62
API_EXPORT bool CALL_CONV LMS_IsOpen(lms_device_t *device, int port)
API_EXPORT int CALL_CONV LMS_GetLPFBW(lms_device_t *device, bool dir_tx, size_t chan, float_type *bandwidth)
API_EXPORT int CALL_CONV LMS_SetSampleRate(lms_device_t *device, float_type rate, size_t oversample)
API_EXPORT int CALL_CONV LMS_GetClockFreq(lms_device_t *dev, size_t clk_id, float_type *freq)
API_EXPORT int CALL_CONV LMS_GetGFIRCoeff(lms_device_t *device, bool dir_tx, size_t chan, lms_gfir_t filt, float_type *coef)
API_EXPORT int CALL_CONV LMS_GetDeviceList(lms_info_str_t *dev_list)
API_EXPORT const lms_dev_info_t *CALL_CONV LMS_GetDeviceInfo(lms_device_t *device)
API_EXPORT int CALL_CONV LMS_GetAntenna(lms_device_t *dev, bool dir_tx, size_t chan)
Disable test signals. Return to normal operation.
Definition: LimeSuite.h:165
float_type max
Minimum allowed value.
Definition: LimeSuite.h:158
API_EXPORT int CALL_CONV LMS_ReadFPGAReg(lms_device_t *device, uint32_t address, uint16_t *val)
API_EXPORT int CALL_CONV LMS_Reset(lms_device_t *device)
API_EXPORT int CALL_CONV LMS_SetNormalizedGain(lms_device_t *device, bool dir_tx, size_t chan, float_type gain)
API_EXPORT int CALL_CONV LMS_SetLPFBW(lms_device_t *device, bool dir_tx, size_t chan, float_type bandwidth)
uint32_t fifoSize
Size of FIFO buffer.
Definition: LimeSuite.h:1075
API_EXPORT int CALL_CONV LMS_GetLOFrequency(lms_device_t *device, bool dir_tx, size_t chan, float_type *frequency)
uint32_t droppedPackets
Number of dropped packets by HW.
Definition: LimeSuite.h:1081
API_EXPORT int CALL_CONV LMS_EnableCalibCache(lms_device_t *dev, bool enable)
API_EXPORT int CALL_CONV LMS_WriteLMSReg(lms_device_t *device, uint32_t address, uint16_t val)
float_type sampleRate
Sampling rate of the stream.
Definition: LimeSuite.h:1083
API_EXPORT int CALL_CONV LMS_GPIODirWrite(lms_device_t *dev, const uint8_t *buffer, size_t len)
reset and boot from flash
Definition: LimeSuite.h:1206
API_EXPORT int CALL_CONV LMS_SetLPF(lms_device_t *device, bool dir_tx, size_t chan, bool enable)
API_EXPORT int CALL_CONV LMS_GetAntennaBW(lms_device_t *dev, bool dir_tx, size_t chan, size_t index, lms_range_t *range)
API_EXPORT int CALL_CONV LMS_GetNormalizedGain(lms_device_t *device, bool dir_tx, size_t chan, float_type *gain)
API_EXPORT int CALL_CONV LMS_GetNCOIndex(lms_device_t *device, bool dir_tx, size_t chan)
API_EXPORT int CALL_CONV LMS_GetSampleRateRange(lms_device_t *device, bool dir_tx, lms_range_t *range)
program LMS7 MCU firmware
Definition: LimeSuite.h:1214
static const int LMS_NCO_VAL_COUNT
Number of NCO frequency/phase offset values.
Definition: LimeSuite.h:587
16-bit integers
Definition: LimeSuite.h:1062
API_EXPORT int CALL_CONV LMS_GetSampleRate(lms_device_t *device, bool dir_tx, size_t chan, float_type *host_Hz, float_type *rf_Hz)
bool isTx
Indicates whether stream is TX (true) or RX (false)
Definition: LimeSuite.h:1042
program FPGA gateware
Definition: LimeSuite.h:1213
RX LNA_H port.
Definition: LimeSuite.h:300
float throughputVsLatency
Definition: LimeSuite.h:1056
API_EXPORT int CALL_CONV LMS_SetLOFrequency(lms_device_t *device, bool dir_tx, size_t chan, float_type frequency)
API_EXPORT int CALL_CONV LMS_GPIOWrite(lms_device_t *dev, const uint8_t *buffer, size_t len)
API_EXPORT int CALL_CONV LMS_GetLPFBWRange(lms_device_t *device, bool dir_tx, lms_range_t *range)
lms_gfir_t
Enumeration of LMS7 GFIRS.
Definition: LimeSuite.h:579
API_EXPORT int CALL_CONV LMS_StopStream(lms_stream_t *stream)
bool(* lms_prog_callback_t)(int bsent, int btotal, const char *progressMsg)
Definition: LimeSuite.h:1225
API_EXPORT int CALL_CONV LMS_Synchronize(lms_device_t *dev, bool toChip)
API_EXPORT int CALL_CONV LMS_SetGFIRCoeff(lms_device_t *device, bool dir_tx, size_t chan, lms_gfir_t filt, const float_type *coef, size_t count)
API_EXPORT int CALL_CONV LMS_Calibrate(lms_device_t *device, bool dir_tx, size_t chan, double bw, unsigned flags)
Test signal from NCO full scale.
Definition: LimeSuite.h:169
API_EXPORT int CALL_CONV LMS_GetGaindB(lms_device_t *device, bool dir_tx, size_t chan, unsigned *gain)
static const int LMS_SUCCESS
convenience constant for good return code
Definition: LimeSuite.h:65
API_EXPORT int CALL_CONV LMS_VCTCXORead(lms_device_t *dev, uint16_t *val)
API_EXPORT const char * LMS_GetLibraryVersion()
Returns API library version.
API_EXPORT int CALL_CONV LMS_ReadCustomBoardParam(lms_device_t *device, uint8_t id, float_type *val, lms_name_t units)
API_EXPORT int CALL_CONV LMS_GPIODirRead(lms_device_t *dev, uint8_t *buffer, size_t len)
bool active
Indicates whether the stream is currently active.
Definition: LimeSuite.h:1071
API_EXPORT int CALL_CONV LMS_SetNCOIndex(lms_device_t *device, bool dir_tx, size_t chan, int index, bool downconv)
API_EXPORT const char *CALL_CONV LMS_GetLastErrorMessage(void)
load firmware/bitstream to non-volatile storage
Definition: LimeSuite.h:1205
API_EXPORT int CALL_CONV LMS_SendStream(lms_stream_t *stream, const void *samples, size_t sample_count, const lms_stream_meta_t *meta, unsigned timeout_ms)
API_EXPORT int CALL_CONV LMS_RecvStream(lms_stream_t *stream, void *samples, size_t sample_count, lms_stream_meta_t *meta, unsigned timeout_ms)
API_EXPORT int CALL_CONV LMS_Open(lms_device_t **device, const lms_info_str_t info, void *args)
API_EXPORT int CALL_CONV LMS_SetGFIRLPF(lms_device_t *device, bool dir_tx, size_t chan, bool enabled, float_type bandwidth)
API_EXPORT int CALL_CONV LMS_SetTestSignal(lms_device_t *device, bool dir_tx, size_t chan, lms_testsig_t sig, int16_t dc_i, int16_t dc_q)
void lms_device_t
LMS Device handle.
Definition: LimeSuite.h:76
TX port 1.
Definition: LimeSuite.h:303
static const bool LMS_CH_RX
Convenience constants for RX selection.
Definition: LimeSuite.h:149
lms_prog_trg_t
Definition: LimeSuite.h:1210
uint64_t timestamp
Definition: LimeSuite.h:1017
API_EXPORT int CALL_CONV LMS_DestroyStream(lms_device_t *dev, lms_stream_t *stream)
API_EXPORT int CALL_CONV LMS_GetStreamStatus(lms_stream_t *stream, lms_stream_status_t *status)
API_EXPORT int CALL_CONV LMS_ReadParam(lms_device_t *device, struct LMS7Parameter param, uint16_t *val)
lms_testsig_t
Definition: LimeSuite.h:163