File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -685,7 +685,7 @@ class TicBase
685
685
// / See also getAgcBottomCurrentLimit().
686
686
void setAgcBottomCurrentLimit (TicAgcBottomCurrentLimit limit)
687
687
{
688
- commandW7 (TicCommand::SetAgcOption, 0x10 | (uint8_t )limit & 0xF );
688
+ commandW7 (TicCommand::SetAgcOption, 0x10 | (( uint8_t )limit & 0xF ) );
689
689
}
690
690
691
691
// / Temporarily sets the AGC current boost steps.
@@ -695,7 +695,7 @@ class TicBase
695
695
// / See also getAgcCurrentBoostSteps().
696
696
void setAgcCurrentBoostSteps (TicAgcCurrentBoostSteps steps)
697
697
{
698
- commandW7 (TicCommand::SetAgcOption, 0x20 | (uint8_t )steps & 0xF );
698
+ commandW7 (TicCommand::SetAgcOption, 0x20 | (( uint8_t )steps & 0xF ) );
699
699
}
700
700
701
701
// / Temporarily sets the AGC frequency limit.
@@ -705,7 +705,7 @@ class TicBase
705
705
// / See also getAgcFrequencyLimit().
706
706
void setAgcFrequencyLimit (TicAgcFrequencyLimit limit)
707
707
{
708
- commandW7 (TicCommand::SetAgcOption, 0x30 | (uint8_t )limit & 0xF );
708
+ commandW7 (TicCommand::SetAgcOption, 0x30 | (( uint8_t )limit & 0xF ) );
709
709
}
710
710
711
711
// / Gets the Tic's current operation state, which indicates whether it is
You can’t perform that action at this time.
0 commit comments