ReceiverModel: More method renaming.

update_baseband_configuration() -> update_sampling_rate().
This commit is contained in:
Jared Boone 2016-07-27 14:41:36 -07:00
parent 5a05a758a1
commit b60e88ef68
2 changed files with 3 additions and 3 deletions

View File

@ -146,7 +146,7 @@ void ReceiverModel::enable() {
update_lna();
update_vga();
update_baseband_bandwidth();
update_baseband_configuration();
update_sampling_rate();
update_modulation();
update_headphone_volume();
}
@ -218,7 +218,7 @@ void ReceiverModel::set_wfm_configuration(const size_t n) {
}
}
void ReceiverModel::update_baseband_configuration() {
void ReceiverModel::update_sampling_rate() {
// TODO: Move more low-level radio control stuff to M4. It'll enable tighter
// synchronization for things like wideband (sweeping) spectrum analysis, and
// protocols that need quick RX/TX turn-around.

View File

@ -131,7 +131,7 @@ private:
void update_lna();
void update_baseband_bandwidth();
void update_vga();
void update_baseband_configuration();
void update_sampling_rate();
void update_headphone_volume();
void update_modulation();