Rockbox.org home
release
dev builds
extras
themes manual
wiki
device status forums
mailing lists
IRC bugs
patches
dev guide



Rockbox mail archive

Subject: applying the radio scanning code patch to current cvs

applying the radio scanning code patch to current cvs

From: spidermagnet <rokbokser_at_imtarget.cotse.net>
Date: Fri, 27 Jun 2003 14:31:18 -0400 (EDT)

I wanted to try the radio frequency scanning patch, but had the cvs from
yesterday (2003-06-26), not the older one it was diff'ed against. It has
been far too long since I worked in c, but the fixes were easy.

After the fixes, it compiled and runs on my current fm recorder.



There were two compile errors i had to change.

This function was passing the wrong number of arguments to
"set_bool_options". I added the final "NULL"

static bool radio_range_menu(void)
{
    bool retval = set_bool_options("Frequency range",
                                    &global_settings.fm_full_range,
"10Mhz - 160Mhz",
                                    "88Mhz - 108Mhz",NULL);
    radio_set_range(global_settings.fm_full_range);
    settings_save();
    return retval;
}



This function needed to pass the additonal argument "INT" to
"set_option".

 static bool radio_sensitivity_menu(void)
 {
     char *names[] = {"0 dB", "-5 dB", "-10 dB", "-16 dB"};
     bool retval = set_option("Sensitivity",
                               &global_settings.fm_sensitivity,
                               INT, names, 4, NULL);
     radio_set(RADIO_SENSITIVITY, global_settings.fm_sensitivity);
settings_save();
     return retval;
 }



I'll speak my functionality questions in another email.

all good things,

spider
Received on 2003-06-27

Page template was last modified "Tue Sep 7 00:00:02 2021" The Rockbox Crew -- Privacy Policy