Viewing 3 posts - 11 through 13 (of 13 total)
  • Author
    Posts
  • #3470
    hayden
    User

    I can guide you through the patch if you want ? It is very easy.

    #3471

    Sounds good. I am currently updating my schematics with a hardware fix. If I can do it in SW I can avoid the layout changes.

    Keep in mind this is my first RP project so the programming is completely foreign to me. I’ve done a ton of custom Arduino HW and SW projects so I do know how to use a keyboard :<)

    #3474
    hayden
    User

    so the ‘new’ setting you want is IDENT_ONLY_AFTER_TX as documented here svxlink.org/doc/man/man5/svxlink.conf.5.html

    assuming you are running repeater logic not simplex, you edit this file
    /includes/classes/SVXLink.php#L205
    public function build_logic_repeater($logicName,$curPort) {

    scroll down to and add this new setting:

    $logic_array[$logicName] += [
    ‘EVENT_HANDLER’ => ‘/usr/share/svxlink/events.tcl’,
    ‘DEFAULT_LANG’ => ‘en_US’,
    ‘RGR_SOUND_DELAY’ => ‘1’,
    ‘REPORT_CTCSS’ => $this->settingsArray[‘rxTone’],
    ‘TX_CTCSS’ => ‘ALWAYS’,
    ‘MACROS’ => ‘Macros’,
    ‘FX_GAIN_NORMAL’ => ‘0’,
    ‘FX_GAIN_LOW’ => ‘-12’,
    ‘IDLE_TIMEOUT’ => ‘1’,
    ‘OPEN_ON_SQL’ => ‘1’,
    ‘OPEN_SQL_FLANK’ => ‘OPEN’,
    ‘IDLE_SOUND_INTERVAL’ => ‘0’,
    ‘IDENT_ONLY_AFTER_TX’ => ‘1’,
    ];

    then do the save and regenerate config via admin and check if your /etc/openrepeater/svxlink/svxlink.conf has it in there

Viewing 3 posts - 11 through 13 (of 13 total)
  • You must be logged in to reply to this topic.