Skip to content

Commit 90783fa

Browse files
committed
disable antenna cap param for fm broadcast
1 parent a6cfc24 commit 90783fa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Shells/FmBroadcastShell.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ void FmBroadcastShell::cmdAutoFreq_()
159159
void FmBroadcastShell::cmdSetPower_()
160160
{
161161
int p = userInputManager.readValidatedInt("TX power (0..115)", (int)fmService.getTxPower(), 0, 115);
162-
int antCap = userInputManager.readValidatedInt("Antenna cap (0..15)", 0, 0, 15);
163-
bool ok = fmService.setTxPower((uint8_t)p, (uint8_t)antCap);
162+
// int antCap = userInputManager.readValidatedInt("Antenna cap (0..15)", 0, 0, 15); // can make the Si4713 irresponsive, so skip for now
163+
bool ok = fmService.setTxPower((uint8_t)p);
164164
terminalView.println(ok ? "\n✅ Power updated." : "\n❌ Power set failed.");
165165
}
166166

0 commit comments

Comments
 (0)