Lines Matching refs:band_number
72 void tune(radio_hw_device_t *device, int band_number) { in tune() argument
81 if ((uint32_t) band_number >= hal_properties.num_bands) { in tune()
90 hal_properties.bands[band_number].type, in tune()
91 hal_properties.bands[band_number].antenna_connected, in tune()
92 hal_properties.bands[band_number].lower_limit, in tune()
93 hal_properties.bands[band_number].upper_limit, in tune()
94 hal_properties.bands[band_number].num_spacings); in tune()
97 device, (const radio_hal_band_config_t *) (&(hal_properties.bands[band_number])), false, in tune()
192 int band_number = -1; in main() local
202 band_number = atoi(optarg); in main()
215 if (band_number < 0) { in main()
220 tune(dev, band_number); in main()