Hi Gerd, please apply this patch. Radio will stil let you tune to lock-up frequencies (e.g. "g 0")! The right thing would be to differentiate normal (fool-proof) and expert mode. Regards, Gunther --- xawtv-3.30/radio/radio.c-3.30-orig Sun Feb 4 14:18:53 2001 +++ xawtv-3.30/radio/radio.c Sun Feb 4 14:25:08 2001 @@ -197,6 +197,11 @@ if (!ifreq && fkeys[0]) ifreq = fkeys[0]; + if(ifreq < 87500000) + /* Avoid tuner lockup (FM1216 locks up <62.6MHz and + it will unlock only when tuned >319MHz) GMY */ + ifreq = 87500000; + initscr(); start_color(); cbreak();