GRC: wrong input declaration in sample_and_hold

Hello

I think I found a wrong input declaration in the sample_and_hold GRC
block.
The “control” input is defined to be
of the same data type of “in” and “out”. Instead, it should be a byte.

This is the fix I have applied:

[alberto@iz0cez gnuradio]$ diff -c
./share/gnuradio/grc/blocks/gr_sample_and_hold_xx.xml.orig .
/share/gnuradio/grc/blocks/gr_sample_and_hold_xx.xml
*** ./share/gnuradio/grc/blocks/gr_sample_and_hold_xx.xml.orig
2010-05-28 23:29:32.953460291 +0200
— ./share/gnuradio/grc/blocks/gr_sample_and_hold_xx.xml 2010-05-28
23:29:
57.655461060 +0200


*** 40,46 ****


ctrl
! $type

out --- 40,46 ---- ctrl ! byte out

BTW: what is the need to use a “char” as control in the
correspondent gr block?

Moreover, it seems to me that the Documentation is wrong, because the
block samples the input
when the ctrl is 1, and holds when is 0, not the opposite.
Do you agree?

Alberto-

Risparmia con Tutto Incluso Light: telefono + adsl 8 mega a soli 14,95 €
al mese.

Gratis la Sim Tiscali Mobile con 25 euro di traffico!

L’offerta è valida solo se attivi entro il 03/06/10

http://abbonati.tiscali.it/telefono-adsl/prodotti/tc/tuttoincluso_light/?WT.mc_id=01fw

This is the sample and hold c++ io signature:

@NAME@::@NAME@ ()
: gr_sync_block ("@BASE_NAME@",
gr_make_io_signature2 (2, 2, sizeof (@I_TYPE@), sizeof(char)),
gr_make_io_signature (1, 1, sizeof (@O_TYPE@))),
d_data(0)
{
}

this is the grc xml block io signature:

in $type ctrl byte out $type

Looks correct?
-Josh