Skip to content

Filter Commands

github-actions[bot] edited this page Jun 15, 2026 · 1 revision

Filter Commands

Generated from FlexLib v4.2.18

Receiver filter bandwidth control


Wire Protocol

Commands follow the FlexRadio TCP wire protocol:

C[D]<seq_number>|<command> [sub-command] [parameters]

Where:

  • C = Command prefix
  • D = Optional debug flag
  • <seq_number> = Sequence number for command tracking
  • <command> = Primary command word
  • [sub-command] = Optional sub-command
  • [parameters] = Command-specific parameters

Responses follow the format:

R<seq_number>|<result_code>|<data>|[debug_info]

Where:

  • R = Response prefix
  • <seq_number> = Matching sequence number from command
  • <result_code> = Result code (0 = success, non-zero = error)
  • <data> = Command-specific response data
  • [debug_info] = Optional debug information

Common Response Codes

Code Meaning
0 Success
50000001 Unable to get foundation receiver assignment
50000003 License check failed
50000004 Parameter error
50000005 Incorrect number or type of parameters
50000016 Malformed command
5000002C Incorrect number of parameters
50000032 Bad mode

Commands

filt_preset save group=... num=... low=... high=...

Send the save command for a filter preset in specified mode group at specified index

Syntax:

C<seq>|filt_preset save group=<mode_group_str> num=<preset_index> low=<low> high=<high>

Parameters:

Parameter Description
<mode_group_str>
<preset_index>
<low>
<high>

Response Example:

R<seq>|0||

filt_preset reset group=...

Send the reset command for a given mode group. This will reset all filter presets in the mode group. UI will be updated through the returned status messages.

Syntax:

C<seq>|filt_preset reset group=<mode_group_str>

Parameters:

Parameter Description
<mode_group_str>

Response Example:

R<seq>|0||

filt ... ... ...

Syntax:

C<seq>|filt <index> <low> <high>

Parameters:

Parameter Description
<index>
<low>
<high>

Response Example:

R<seq>|0||

Clone this wiki locally