From feee1f7ab37a7a29a7de6bf20dc1402ebfda8b98 Mon Sep 17 00:00:00 2001 From: Kyle Reed Date: Wed, 24 May 2023 10:31:59 -0700 Subject: [PATCH] Set default TX gain to 35 (#1062) * Set default TX gain to 10 I'd rather people who know better have to turn this up, than people who don't know better to be jamming their neighbors accidentally. * Update transmitter_model.hpp Set default to 35 per discussion. --- firmware/application/transmitter_model.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/firmware/application/transmitter_model.hpp b/firmware/application/transmitter_model.hpp index 3debb8c7..fc468874 100644 --- a/firmware/application/transmitter_model.hpp +++ b/firmware/application/transmitter_model.hpp @@ -71,7 +71,8 @@ class TransmitterModel { uint32_t channel_bandwidth_{1}; uint32_t baseband_bandwidth_{max2837::filter::bandwidth_minimum}; int32_t vga_gain_db_{8}; - int32_t tx_gain_db_{47}; + /* 35 should give approx 1m transmission range. */ + int32_t tx_gain_db_{35}; uint32_t sampling_rate_{3072000}; SignalToken signal_token_tick_second{};