Etrunker Modification Help Needed

Status
Not open for further replies.

SCPD

QRT
Joined
Feb 24, 2001
Messages
0
Reaction score
116
Location
Virginia
I would like to disable the "d" and "v" items that show up on the left hand side of the Etrunker screen. I have added the LCN numbers (on the left) of my system file, and removed the d and v item from the same file. This is fine, but I would like to have the d (data) and v (voice) items not show up .. but the changing of the colors is fine. The d and v of course are filled in as each LCN is used.

Anyone know what C file i need to change .. ? I realize I probably just have to comment something out .. but cannot find the code that causes the D and V to go to the screen.

I am really interested in seeing the LCN on the screen rather than whether it is data or voice.

Hope this makes sense .. :?

Thanks
Kevin
 

SCPD

QRT
Joined
Feb 24, 2001
Messages
0
Reaction score
116
Location
Virginia
Look in file named "FREQDISP.CPP for the following ...

Code:
void
frequencyAssignment::assignD()
{
        if( fState == FREQDATA) {
                visited = TRUE;
                return;
        }
        if( fState != FREQEMPTY ) {
                unassign();
        }
        // nothing to data channel
        freqdisp[1] = 'd';
        fState = FREQDATA;
        visited = TRUE;
        dirty = TRUE;
        selected = FALSE;
}

... and also ...

Code:
void
frequencyAssignment::setMaxType(CallType t, designation *d1, designation *d2, designation *d3)
{
        if( maxType != t ) {
                if( maxType != Idle) {
                        unassign();
                }
                freqdisp[2] = 'v';
                seenVoice = TRUE;
                fState = FREQCALL;
                maxType = t;
-rick
 

EricCottrell

Member
Premium Subscriber
Joined
Nov 8, 2002
Messages
2,517
Reaction score
366
Location
Boston, Ma
Hello,

You also have to change the code that writes the sys file. There is code that will write out a frequency line in the sys file only if any of the c d v flags are set.

73 Eric
 
Status
Not open for further replies.
Top