summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* gr-utils: fix out of tree project generator to properly update tarfile nameMoritz Fischer2010-07-051-2/+2
|
* gr-wxgui: fix non-gl scope sink only updating one channelCatalin Patulea2010-07-051-7/+7
| | | | | | This fixes a bug where, when using nongl scopesink, only the real part of a complex input is shown. After applying this patch, both Ch1 and Ch2 can be seen on the scope display.
* grc: fix broken variable config when using bool typeJohann Chiang2010-06-211-1/+1
|
* Merge remote branch 'trondeau/qtmake' into maintJohnathan Corgan2010-06-131-2/+3
|\ | | | | | | | | * trondeau/qtmake: Fixes gr-qtgui make distcheck failure when QT is not installed.
| * Fixes gr-qtgui make distcheck failure when QT is not installed.Tom Rondeau2010-06-131-1/+2
|/
* Merge branch 'fix/wbx_refclock' into maintJohnathan Corgan2010-06-047-212/+158
|\ | | | | | | | | | | | | | | | | * fix/wbx_refclock: Fixed WBX RX PLL enable Refactor WBX and adf4350 to avoid passing usrp pointer Clean up annoying class structure in wbx Fixing wbx to use _refclk_freq() Typo in error message
| * Fixed WBX RX PLL enableJason Abele2010-06-041-6/+6
| |
| * Refactor WBX and adf4350 to avoid passing usrp pointerJason Abele2010-06-046-121/+101
| |
| * Clean up annoying class structure in wbxJason Abele2010-06-042-79/+40
| |
| * Fixing wbx to use _refclk_freq()Jason Abele2010-06-044-13/+18
| |
| * Typo in error messageJason Abele2010-06-041-1/+1
|/
* Update revision to 3.3.0v3.3.0Johnathan Corgan2010-06-022-2/+2
|
* gcell: make versioned librariesJohnathan Corgan2010-06-023-10/+4
|
* gnuradio-core: fix missing linker flags for boost_program_optionsJohnathan Corgan2010-06-021-1/+1
|
* howto: fix incorrect include pathJohnathan Corgan2010-06-021-1/+1
|
* build: redo GR_GIT for portabilityJohnathan Corgan2010-06-022-18/+28
|
* build: use date format string instead of -R for portabilityJohnathan Corgan2010-06-011-1/+1
|
* gnuradio-core: fix typo in doxygen headerJohnathan Corgan2010-06-011-1/+1
|
* gr-qtgui: add include file for gcc 4.4.1Johnathan Corgan2010-06-011-0/+1
|
* Update revision to 3.3.0-rc3v3.3.0-rc3Johnathan Corgan2010-05-302-2/+2
|
* howto: make versioned librariesJohnathan Corgan2010-05-304-23/+52
|
* Make C++ shared libraries versionedJohnathan Corgan2010-05-2842-65/+60
|
* build: refactor GR_GIT and GR_VERSIONJohnathan Corgan2010-05-282-19/+39
|
* Update revision to 3.3.0-rc2v3.3.0-rc2Johnathan Corgan2010-05-272-2/+2
|
* Merge remote branch 'ets/grc-usrp2-clock-source'Johnathan Corgan2010-05-272-2/+40
|\ | | | | | | | | * ets/grc-usrp2-clock-source: Add USRP2 clock source parameter to GRC blocks.
| * Add USRP2 clock source parameter to GRC blocks.Eric Schneider2010-05-272-2/+40
| |
* | Refactor Makefile.am to move common files from 3 libraries into a single ↵Eric Blossom2010-05-251-79/+21
| | | | | | | | variable.
* | usrp2-firmware: fix missing files in tarballJohnathan Corgan2010-05-251-1/+1
| |
* | Fix erroneous file modesJohnathan Corgan2010-05-255-0/+0
| |
* | Merge remote branch 'gnuradio/wip/udp_source_sink'Johnathan Corgan2010-05-2318-382/+709
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnuradio/wip/udp_source_sink: gnuradio-core: update copyrights gnuradio-core: allow swig to handle exceptions in UDP source/sink grc: update UDP source and sink block wrappers Simplify USE_SELECT usage Return immediately when using d_residual. Defend against a peer that sends an invalid message length. Move initialization of select timeout Correct update of d_temp_offset (parallel construction) Identify memory leaks that occur on error conditions Use -1 as file descriptor "not open" value instead of 0 Add additional conditionalization of networking includes Flush pending errors in gr_udp_sink on disconnect() Rework UDP source and sink, with incompatible API changes Updates to udp source/sink (select(), wait, cleanup) Discard data in gr_udp_sink until receiver is started. Use getaddrinfo in gr_udp_{source,sink} Changes to gr_udp_{source,sink} for MinGW Ignore ENOPROTOOPT return from setsockopt(SO_LINGER)
| * | gnuradio-core: update copyrightsJohnathan Corgan2010-05-212-2/+2
| | |
| * | gnuradio-core: allow swig to handle exceptions in UDP source/sinkJohnathan Corgan2010-05-212-4/+5
| | |
| * | grc: update UDP source and sink block wrappersJohnathan Corgan2010-05-212-24/+28
| | |
| * | Simplify USE_SELECT usageEric Blossom2010-05-191-6/+2
| | |
| * | Return immediately when using d_residual.Eric Blossom2010-05-191-1/+4
| | | | | | | | | | | | (Otherwise recv may overwrite valid data in d_temp_buff.)
| * | Defend against a peer that sends an invalid message length.Eric Blossom2010-05-191-0/+5
| | |
| * | Move initialization of select timeoutEric Blossom2010-05-191-2/+2
| | |
| * | Correct update of d_temp_offset (parallel construction)Eric Blossom2010-05-191-1/+2
| | |
| * | Identify memory leaks that occur on error conditionsEric Blossom2010-05-192-0/+5
| | |
| * | Use -1 as file descriptor "not open" value instead of 0Eric Blossom2010-05-192-6/+6
| | |
| * | Add additional conditionalization of networking includesEric Blossom2010-05-193-1/+12
| | |
| * | Flush pending errors in gr_udp_sink on disconnect()Don Ward2010-05-061-0/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | On some systems (e.g., Debian/lenny) UDP errors are reported on the following send() or recv() call. To avoid having errors (such as ECONNREFUSED) from an old connection showing up on the first write to a new connection, we do a recv() on disconnect() to flush them. This may not work for all errors on all systems, but it works in some simple cases of interest.
| * | Merge branch 'master' into udpDon Ward2010-05-041-1/+2
| |\ \
| * | | Rework UDP source and sink, with incompatible API changesDon Ward2010-05-0414-209/+412
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove source address specifications for sink; add connect() and disconnect() to sink; add get_port() to source; add optional EOF signaling (using zero-length packets) to sink and source; modify dial_tone, vector, and audio examples to match new code; add qa test case.
| * | | Merge branch 'master' into udpDon Ward2010-04-30221-29296/+606
| |\ \ \
| * \ \ \ Merge branch 'master' into udpDon Ward2010-04-303-16/+35
| |\ \ \ \
| * | | | | Updates to udp source/sink (select(), wait, cleanup)Don Ward2010-04-306-144/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use select() to avoid blocking on recv() in gr_udp_source (only known way to avoid blocking on Cygwin). Add wait argument to gr_udp_source to allow waiting for connection or accepting lack of connection as EOF; add --no-wait option to dial_tone_sink.py. Remove system dependencies from .h files; remove unused data members and (useless?) public open and close functions.
| * | | | | Discard data in gr_udp_sink until receiver is started.Don Ward2010-04-203-6/+14
| | | | | | | | | | | | | | | | | | | | | | | | Also fixes warnings from gcc 4.3 and adds <boost/bind.hpp> for usrp2.
| * | | | | Use getaddrinfo in gr_udp_{source,sink}Don Ward2010-04-184-86/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using getaddrinfo allows more common code between posix and winsock systems. Remove unused variables and #include files. Close sockets when done.
| * | | | | Changes to gr_udp_{source,sink} for MinGWU-DON-WORKBENCH\Don2010-04-182-32/+130
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Initialize and cleanup after winsock DLL. Interpret winsock error codes. Use DWORD instead of timeval for setting timeout.