specan: cleared up terminology, accounted for decimation.

Channel spectrum decimation now accounted for when computing filter frequencies.
Renamed a bunch of variables relating to channel spectrum bandwidth and filter frequencies.
This commit is contained in:
Jared Boone 2015-07-17 22:55:18 -07:00
parent 98bd9c54e4
commit ffc50785b7
3 changed files with 36 additions and 28 deletions

View file

@ -185,7 +185,7 @@ public:
struct ChannelSpectrum {
std::array<uint8_t, 256>* db { nullptr };
size_t db_count { 256 };
uint32_t bandwidth { 0 };
uint32_t sampling_rate { 0 };
};
class ChannelSpectrumMessage : public Message {