mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-06-29 17:17:28 -04:00
Activating TX Low Pass Filter in Second IF IC (#1470)
* Activating TX Low Pass Filter in Second IF IC * solving PR conversation revisions * Final TX LPF decision for ADSB_TX * Small comments correction. * Added set TX LPF also in APRS, BurgerPgr,Jammer
This commit is contained in:
parent
5a850984b9
commit
defb934c3f
19 changed files with 81 additions and 18 deletions
|
@ -232,8 +232,12 @@ void set_tx_gain(const int_fast8_t db) {
|
|||
second_if->set_tx_vga_gain(db);
|
||||
}
|
||||
|
||||
void set_baseband_filter_bandwidth(const uint32_t bandwidth_minimum) {
|
||||
second_if->set_lpf_rf_bandwidth(bandwidth_minimum);
|
||||
void set_baseband_filter_bandwidth_rx(const uint32_t bandwidth_minimum) {
|
||||
second_if->set_lpf_rf_bandwidth_rx(bandwidth_minimum);
|
||||
}
|
||||
|
||||
void set_baseband_filter_bandwidth_tx(const uint32_t bandwidth_minimum) {
|
||||
second_if->set_lpf_rf_bandwidth_tx(bandwidth_minimum);
|
||||
}
|
||||
|
||||
void set_baseband_rate(const uint32_t rate) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue