aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Fix UHD LO offset loggingMatthias P. Braendli2017-02-251-15/+15
|
* Move setenv earlierMatthias P. Braendli2017-02-251-4/+4
| | | | | | | the glibc manual says in chapter 25.4.1 Environment Access 'Modifications of environment variables are not allowed in multi-threaded programs.' So we do it before we become multi-threaded.
* Add ability to set UHD LO offsetMatthias P. Braendli2017-02-253-3/+25
|
* Set uhd timestamps log to std::fixedMatthias P. Braendli2017-02-251-0/+3
|
* Log: replace spsc queue by ThreadsafequeueMatthias P. Braendli2017-02-242-7/+3
| | | | | The function pushing messages into the queue gets called from more than one thread, which is illegal according to boost::lockfree documentation.
* Change phase of TII carriersMatthias P. Braendli2017-02-244-42/+94
| | | | This adapts the patch contributed by Piratfm to the next branch
* Update EDI lib: fix SAD and take latest changesMatthias P. Braendli2017-02-171-1/+1
|
* Fix SAD field widthStefan Pöschel2017-02-172-2/+2
| | | | | | The width of the SAD field is 10bit, therefore up to now subchannels with a higher start address were by mistake placed at a lower address within the MSC. Thereby also other subchannels could have been overwritten.
* Fix incorrect frame size bug due to missing puncturing paddingMatthias P. Braendli2017-02-126-28/+82
|
* Add buffer size check in TimeInterleaverMatthias P. Braendli2017-02-111-4/+8
|
* Make invalid subchannel size error more detailedMatthias P. Braendli2017-02-101-2/+6
|
* Add support for SoapySDRMatthias P. Braendli2017-02-107-52/+546
|
* Set structure default values for UHD configurationMatthias P. Braendli2017-02-101-10/+10
|
* Add a r/o timestamp remote-control parameter to display FCT and TISTMatthias P. Braendli2017-01-272-0/+14
|
* Fix TIST usage for EDI inputMatthias P. Braendli2017-01-273-6/+11
|
* Remove FAKE_UHD, it's anyway brokenMatthias P. Braendli2017-01-272-23/+0
|
* EDI input: decode timestampsMatthias P. Braendli2017-01-204-12/+20
|
* TII is acutally a ModInput, not a ModCodecMatthias P. Braendli2017-01-202-10/+6
|
* EDI: add protection against runaway memory usageMatthias P. Braendli2017-01-131-1/+8
|
* Integrate timestampdecoder into EDI inputMatthias P. Braendli2017-01-136-46/+93
|
* Add threaded UDP input for EDIMatthias P. Braendli2017-01-135-41/+45
|
* Remove unused InputEdiReaderMatthias P. Braendli2017-01-131-99/+0
|
* Use milliseconds for edi_max_delayMatthias P. Braendli2017-01-061-4/+5
|
* Add edi_max_delay option to config fileMatthias P. Braendli2017-01-061-0/+6
|
* Fix ETI-over-TCP and ZeroMQ inputsMatthias P. Braendli2017-01-063-22/+35
|
* EDI: handle pseq resync and SIGINTMatthias P. Braendli2017-01-063-43/+48
|
* Replace EDI-to-ETI converter with a dedicated EDI sourceMatthias P. Braendli2017-01-0616-190/+577
|
* Use ref instead of pointer for subchannel sourcesMatthias P. Braendli2016-12-266-32/+41
|
* Print fast-math in the feature list on startupMatthias P. Braendli2016-12-261-0/+3
|
* Add first version of EDI inputMatthias P. Braendli2016-12-253-8/+135
|
* Refactor flowgraph and puncturing rulesMatthias P. Braendli2016-12-2559-1299/+789
|
* Remove ModFormatMatthias P. Braendli2016-12-2540-225/+44
|
* Include default firfilter taps in binary and enable by defaultMatthias P. Braendli2016-12-116-47/+71
|
* Make gainmode VAR the default and update config to accept gainmode identifiersMatthias P. Braendli2016-12-112-8/+19
|
* Remove unused AVX implementation of FIRFilterMatthias P. Braendli2016-12-111-71/+3
|
* Avoid a copy when constructing a log_message_tMatthias P. Braendli2016-10-281-1/+1
|
* Ensure log_message_t contents are always initialisedMatthias P. Braendli2016-10-242-7/+6
|
* Minor improvements in logMatthias P. Braendli2016-10-242-19/+12
|
* Remove useless protected: in EtiReaderMatthias P. Braendli2016-10-241-2/+1
|
* Add TCP input to usage screenMatthias P. Braendli2016-10-101-1/+3
|
* Port some RC changes from ODR-DabMuxMatthias P. Braendli2016-10-102-82/+142
|
* Rework remotecontrolMatthias P. Braendli2016-10-079-264/+143
|
* Add TCP input recv timeout of 30sMatthias P. Braendli2016-09-211-0/+12
|
* Don't send trace logs to syslogMatthias P. Braendli2016-09-182-19/+29
|
* Remove crc-dwap.py scriptMatthias P. Braendli2016-09-161-547/+0
|
* Add ETI-over-TCP inputMatthias P. Braendli2016-09-113-5/+175
|
* Describe zmq input in command line usageMatthias P. Braendli2016-08-231-1/+1
|
* Increase detail for ZeroMQ error messagesMatthias P. Braendli2016-08-231-2/+16
|
* Fix UHD buffering leading to out of memoryMatthias P. Braendli2016-06-243-12/+40
| | | | | | | | | | | | Since commit d9ef93e, UHD does not backpressure the modulator anymore. If a pipe input is used, the ODR-DabMux before also doesn't get any back-pressure, the modulation thread and the mux run a very high rate. This high rate fills the buffer between OutputUHD and its worker thread, until the out-of-memory killer kills ODR-DabMod. Less impact on ZMQ input, because that is throttled at the mux, but we still have a buffer that can grow in an uncontrolled way
* Move logging writes to separate threadMatthias P. Braendli2016-06-172-15/+72
|