Skip to content

Commit

Permalink
rename arg
Browse files Browse the repository at this point in the history
  • Loading branch information
hurdad committed Jun 23, 2018
1 parent aef8d88 commit 3f09552
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Streaming.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ SoapySDR::ArgInfoList SoapySidekiq::getStreamArgsInfo(const int direction, const
SoapySDR::ArgInfo bufflenArg;
bufflenArg.key = "bufflen";
bufflenArg.value = std::to_string(DEFAULT_BUFFER_LENGTH);
bufflenArg.name = "Buffer Size";
bufflenArg.name = "Buffer Sample Count";
bufflenArg.description = "Number of IQ samples per buffer.";
bufflenArg.units = "samples";
bufflenArg.type = SoapySDR::ArgInfo::INT;
Expand All @@ -33,7 +33,7 @@ SoapySDR::ArgInfoList SoapySidekiq::getStreamArgsInfo(const int direction, const
SoapySDR::ArgInfo buffersArg;
buffersArg.key = "buffers";
buffersArg.value = std::to_string(DEFAULT_NUM_BUFFERS);
buffersArg.name = "Ring buffers";
buffersArg.name = "Ring Buffers";
buffersArg.description = "Number of buffers in the ring.";
buffersArg.units = "buffers";
buffersArg.type = SoapySDR::ArgInfo::INT;
Expand Down

0 comments on commit 3f09552

Please sign in to comment.