Statistics
| Branch: | Tag: | Revision:

root / gnuradio-core / src / lib / io @ d702e27d

Name Size
.gitignore 59 Bytes
Makefile.am 2.8 kB
gr_file_descriptor_sink.cc 2.1 kB
gr_file_descriptor_sink.h 1.7 kB
gr_file_descriptor_sink.i 1.1 kB
gr_file_descriptor_source.cc 3.5 kB
gr_file_descriptor_source.h 1.9 kB
gr_file_descriptor_source.i 1.1 kB
gr_file_sink.cc 2 kB
gr_file_sink.h 1.6 kB
gr_file_sink.i 1.2 kB
gr_file_sink_base.cc 2.8 kB
gr_file_sink_base.h 1.7 kB
gr_file_sink_base.i 1.3 kB
gr_file_source.cc 3.3 kB
gr_file_source.h 1.9 kB
gr_file_source.i 1.3 kB
gr_histo_sink.i 1.2 kB
gr_histo_sink_f.cc 5 kB
gr_histo_sink_f.h 1.9 kB
gr_message_sink.cc 2.3 kB
gr_message_sink.h 1.8 kB
gr_message_sink.i 1.1 kB
gr_message_source.cc 3.2 kB
gr_message_source.h 2 kB
gr_message_source.i 1.3 kB
gr_oscope_guts.cc 9 kB
gr_oscope_guts.h 4 kB
gr_oscope_sink.i 2.3 kB
gr_oscope_sink_f.cc 2 kB
gr_oscope_sink_f.h 1.7 kB
gr_oscope_sink_x.cc 3.2 kB
gr_oscope_sink_x.h 2.2 kB
gr_trigger_mode.h 1.1 kB
gr_udp_sink.cc 7 kB
gr_udp_sink.h 3.9 kB
gr_udp_sink.i 1.3 kB
gr_udp_source.cc 9.9 kB
gr_udp_source.h 4 kB
gr_udp_source.i 1.3 kB
gr_wavfile_sink.cc 6.2 kB
gr_wavfile_sink.h 3.7 kB
gr_wavfile_sink.i 1.4 kB
gr_wavfile_source.cc 4.2 kB
gr_wavfile_source.h 2.7 kB
gr_wavfile_source.i 1.2 kB
gri_wavfile.cc 6.7 kB
gri_wavfile.h 3.2 kB
i2c.cc 875 Bytes
i2c.h 1.3 kB
i2c_bbio.cc 891 Bytes
i2c_bbio.h 1.3 kB
i2c_bbio_pp.cc 2 kB
i2c_bbio_pp.h 1.5 kB
i2c_bitbang.cc 2.6 kB
i2c_bitbang.h 1.7 kB
io.i 1.9 kB
microtune_4702.cc 4 kB
microtune_4702.h 1.9 kB
microtune_4702_eval_board.cc 2.3 kB
microtune_4702_eval_board.h 1.5 kB
microtune_4702_eval_board.i 1.3 kB
microtune_4937.cc 3.3 kB
microtune_4937.h 1.9 kB
microtune_4937_eval_board.cc 2.6 kB
microtune_4937_eval_board.h 1.5 kB
microtune_4937_eval_board.i 1.3 kB
microtune_eval_board.i 2.8 kB
microtune_eval_board_defs.h 2.4 kB
microtune_xxxx.cc 1.1 kB
microtune_xxxx.h 1.8 kB
microtune_xxxx_eval_board.cc 3.1 kB
microtune_xxxx_eval_board.h 2.7 kB
microtune_xxxx_eval_board.i 1.8 kB
ppio.cc 1.1 kB
ppio.h 1.6 kB
ppio.i 1.4 kB
ppio_ppdev.cc 6.3 kB
ppio_ppdev.h 1.6 kB
sdr_1000.cc 1.7 kB
sdr_1000.h 1.4 kB
sdr_1000.i 1 kB

Latest revisions

# Date Author Comment
d702e27d 05/04/2010 04:41 pm Don Ward

Rework UDP source and sink, with incompatible API changes

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...

dda6ed35 04/30/2010 09:00 pm Don Ward

Merge branch 'master' into udp

3ff43f74 04/30/2010 06:48 pm Don Ward

Updates to udp source/sink (select(), wait, cleanup)

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...

a178f23b 04/27/2010 05:13 am Johnathan Corgan

Convert gr-audio-portaudio to Boost via gruel

Remove omnithread dependency in build for gr-audio-portaudio
Remove unused debugging utility class in gnuradio-core (gri_logger)

3b8fcaa6 04/20/2010 02:37 pm Don Ward

Discard data in gr_udp_sink until receiver is started.

Also fixes warnings from gcc 4.3 and adds <boost/bind.hpp> for usrp2.

d1ae6560 04/18/2010 11:01 pm Don Ward

Use getaddrinfo in gr_udp_{source,sink}

Using getaddrinfo allows more common code between posix and winsock
systems. Remove unused variables and #include files. Close sockets
when done.

545901e3 04/18/2010 02:19 pm U-DON-WORKBENCH\Don

Changes to gr_udp_{source,sink} for MinGW

Initialize and cleanup after winsock DLL. Interpret winsock error
codes. Use DWORD instead of timeval for setting timeout.

b0d32c6c 04/15/2010 06:37 pm Don Ward

Ignore ENOPROTOOPT return from setsockopt(SO_LINGER)

SO_LINGER is not valid for SOCK_DGRAM sockets on Windows, so we
expect setsockopt to return ENOPROTOOPT (invalid option for
protocol) on Cygwin and MinGW. If it happens on any other system
it should probably be ignored there, too.

36c3f0a0 10/10/2009 11:39 pm Johnathan Corgan

Use gruel::mutex instead of pthread_mutex in gr_histo_sink_f.

Patch-by: Don Ward <>

253018c6 08/14/2009 06:10 pm git

Added git ignore files auto created from svn:ignore properties.

git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11592 221aa14e-8319-0410-a670-987f0aec2ac5

View revisions

Also available in: Atom