¿ªÔÆÌåÓý

Date

Re: TX echo to TCP/IP or AGW port

 

In addition, the PTT seems to stay ON for an extended period of time.
NOTE: there are no cables or anything connected to the PTT -> I removed them because the radio stayed in PTT.


TX echo to TCP/IP or AGW port

 

I am trying to test some code which receives data from TCP/IP KISS and decodes it.
I thought I used Direwolf before with pbeacon set as a source of data to decode.

?It seems Direwolf (neither 1.6 or 1.7B) doesn't send an internally generated packet to the TCP/IP or AGW port.

Is there a way to force the pbeacon data to send over these ports?


Re: Numbers in audio level

 

When receiving a Forward Error Correcting (FEC) mode, such as FX.25 or IL2P, the digit indicates the number of "symbols" (bytes) that were corrected.

In this particular case, the "0000" means four of the demodulators received the signal with no errors.? Three of other demodulators required correction of 7, 1, or 5 symbols.


Re: Numbers in audio level

 

Those are fx.25 decodes. You're seeing a forward error correction packet.

On Oct 28, 2021 6:27 PM, Heber Soto <np4jn@...> wrote:

?

I have DW 1.6 on Raspberry Pi, I am seeing now numbers instead of bars is this Is new?

?

WP3BM audio level = 7(3/2)??? __7100005

[0.5 21:23:33] WP3BM>KP4DOG-1:(I cmd, n(s)=1, n(r)=7, p=0, pid=0xf0)FF<0x0d>

[0L 21:23:34] KP4DOG-1>WP3BM:(I cmd, n(s)=7, n(r)=2, p=1, pid=0xf0)FQ<0x0d>

?

Gracias

?

Heber NP4JN 73

?



Numbers in audio level

 

¿ªÔÆÌåÓý

?

I have DW 1.6 on Raspberry Pi, I am seeing now numbers instead of bars is this Is new?

?

WP3BM audio level = 7(3/2)??? __7100005

[0.5 21:23:33] WP3BM>KP4DOG-1:(I cmd, n(s)=1, n(r)=7, p=0, pid=0xf0)FF<0x0d>

[0L 21:23:34] KP4DOG-1>WP3BM:(I cmd, n(s)=7, n(r)=2, p=1, pid=0xf0)FQ<0x0d>

?

Gracias

?

Heber NP4JN 73

?


Re: CMake Error

 

The issue is in direwolf, not raspian (RaspberryPiOS).
The issue appears to be with Cmake not producing the proper configuration.??

You don't have to start with a blank SD card.? Just go through the steps for dowloading and compiling.? Use git to download the Direwolf package from github.? Follow the steps from there.

If you have the Pi up and running, You will need to make sure the needed tools are installed, as well.

sudo apt install git gcc g++ make cmake
sudo apt install libasound2-dev libudev-dev

You may want to ibstall gps and hamlib before compiling Direwolf.

Rob KB8RCO



On Thu, Oct 28, 2021 at 1:34 AM, Doug J
<vk2xlj@...> wrote:
Hello Rob,

I wiped the sd card and tried again and now are up to the next step, when I put in make -j4, I get the following: make: *** No targets specified and no makefile found. ?Stop.

I am copying and pasting the commands and still having problems.

Someone needs to download the lastest image of raspberian from the raspberry pi page and see if they can get it to go. I am no linux expert. I did machine language and dos over 25 years ago. I don't want to learn another op system.

Surely there must be a file image somewhere that some has installed direwolf on a raspberry pi and all you have to do is change the configuration.


Regards,

Doug VK2XLJ


From: [email protected] <[email protected]> on behalf of Rob Giuliano via groups.io <kb8rco@...>
Sent: Thursday, 28 October 2021 12:22 AM
To: [email protected] <[email protected]>
Subject: Re: [direwolf] CMake Error
?
Looks to me like you are trying to use CMake from a different directory than you have the "build files" in.
I think you missed the step of changing into the build folder.
??? cd ~
?? ?git clone https://www.github.com/wb2osz/direwolf
?? ?cd direwolf
??? git checkout dev
?? ?mkdir build && cd build
?? ?cmake ..
?? ?make -j4
?? ?sudo make install
?? ?make install-conf

The 2 key, path related, lines are highlighted.
The yellow highlight makes a directory called build and changes into it.? I believe this is the step you missed.
The green highlight runs cmake with files from a directory - one back from current.
?? If you are NOT in build (/home/pi/direwolf/build) then you are in /home/pi/direwolf
?? If so, cmake .. will look for the needed files in /home/pi


FIX:???? From where you are currently at
?? cd build
??? cmake ..
?? ?make -j4
?? ?sudo make install
?? ?make install-conf

Good luck!

Robert Giuliano
KB8RCO



On Wednesday, October 27, 2021, 09:11:27 AM EDT, Doug J <vk2xlj@...> wrote:


Hello Group,


I am trying to install direwolf on a raspberry Pi 3 with the latest version of the Raspberry Pi OS (full version) via putty.

I am using the install instructions onthe Github wb2osz/direwolf webpage.

I can only get as far as cmake .. and get the following error:
CMake Error: The source directory "/home/pi" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.

I have scanned the message section of this group and cant get any references to a Rasp Pi with this error.

I am going around in circles.

Help please.



Regards,

Doug VK2XLJ



Re: CMake Error

 

¿ªÔÆÌåÓý

Hello Rob,

I wiped the sd card and tried again and now are up to the next step, when I put in make -j4, I get the following: make: *** No targets specified and no makefile found. ?Stop.

I am copying and pasting the commands and still having problems.

Someone needs to download the lastest image of raspberian from the raspberry pi page and see if they can get it to go. I am no linux expert. I did machine language and dos over 25 years ago. I don't want to learn another op system.

Surely there must be a file image somewhere that some has installed direwolf on a raspberry pi and all you have to do is change the configuration.


Regards,

Doug VK2XLJ


From: [email protected] <[email protected]> on behalf of Rob Giuliano via groups.io <kb8rco@...>
Sent: Thursday, 28 October 2021 12:22 AM
To: [email protected] <[email protected]>
Subject: Re: [direwolf] CMake Error
?
Looks to me like you are trying to use CMake from a different directory than you have the "build files" in.
I think you missed the step of changing into the build folder.
??? cd ~
?? ?git clone https://www.github.com/wb2osz/direwolf
?? ?cd direwolf
??? git checkout dev
?? ?mkdir build && cd build
?? ?cmake ..
?? ?make -j4
?? ?sudo make install
?? ?make install-conf

The 2 key, path related, lines are highlighted.
The yellow highlight makes a directory called build and changes into it.? I believe this is the step you missed.
The green highlight runs cmake with files from a directory - one back from current.
?? If you are NOT in build (/home/pi/direwolf/build) then you are in /home/pi/direwolf
?? If so, cmake .. will look for the needed files in /home/pi


FIX:???? From where you are currently at
?? cd build
??? cmake ..
?? ?make -j4
?? ?sudo make install
?? ?make install-conf

Good luck!

Robert Giuliano
KB8RCO



On Wednesday, October 27, 2021, 09:11:27 AM EDT, Doug J <vk2xlj@...> wrote:


Hello Group,


I am trying to install direwolf on a raspberry Pi 3 with the latest version of the Raspberry Pi OS (full version) via putty.

I am using the install instructions onthe Github wb2osz/direwolf webpage.

I can only get as far as cmake .. and get the following error:
CMake Error: The source directory "/home/pi" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.

I have scanned the message section of this group and cant get any references to a Rasp Pi with this error.

I am going around in circles.

Help please.



Regards,

Doug VK2XLJ



Re: CMake Error

 

Looks to me like you are trying to use CMake from a different directory than you have the "build files" in.
I think you missed the step of changing into the build folder.
??? cd ~
?? ?git clone https://www.github.com/wb2osz/direwolf
?? ?cd direwolf
??? git checkout dev
?? ?mkdir build && cd build
?? ?cmake ..
?? ?make -j4
?? ?sudo make install
?? ?make install-conf

The 2 key, path related, lines are highlighted.
The yellow highlight makes a directory called build and changes into it.? I believe this is the step you missed.
The green highlight runs cmake with files from a directory - one back from current.
?? If you are NOT in build (/home/pi/direwolf/build) then you are in /home/pi/direwolf
?? If so, cmake .. will look for the needed files in /home/pi


FIX:???? From where you are currently at
?? cd build
??? cmake ..
?? ?make -j4
?? ?sudo make install
?? ?make install-conf

Good luck!

Robert Giuliano
KB8RCO



On Wednesday, October 27, 2021, 09:11:27 AM EDT, Doug J <vk2xlj@...> wrote:


Hello Group,


I am trying to install direwolf on a raspberry Pi 3 with the latest version of the Raspberry Pi OS (full version) via putty.

I am using the install instructions onthe Github wb2osz/direwolf webpage.

I can only get as far as cmake .. and get the following error:
CMake Error: The source directory "/home/pi" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.

I have scanned the message section of this group and cant get any references to a Rasp Pi with this error.

I am going around in circles.

Help please.



Regards,

Doug VK2XLJ



CMake Error

 

¿ªÔÆÌåÓý

Hello Group,


I am trying to install direwolf on a raspberry Pi 3 with the latest version of the Raspberry Pi OS (full version) via putty.

I am using the install instructions onthe Github wb2osz/direwolf webpage.

I can only get as far as cmake .. and get the following error:
CMake Error: The source directory "/home/pi" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.

I have scanned the message section of this group and cant get any references to a Rasp Pi with this error.

I am going around in circles.

Help please.



Regards,

Doug VK2XLJ



Re: Command line for checking which server connected to

Herbert Crosby
 

You can use netstat or ss to see connections.? ?sudo netstat -antpu
Herbert Crosby KD5PQJ?


Command line for checking which server connected to

KC9GWK (Ed)
 

Hey folks,
I looked through the manual but did not find anything. I know you can see which aprs2.net server you are connected when you first start Direwolf. But is there a command using command line I can use to check at any time??
Thank you.


Re: Permissions denied -- How do you fix this ?

 

You should not run Direwolf as root (sudo), but you do need to run the hardware interface routines as root (sudo) - as Greg D states.

Rob KB8RCO


IGate Traffic to YAAC

 

All,
I have?direwolf?configured to receive data from APRS-IS, it appears that it connects to APRS-IS correctly, and I can see messages coming?through in the terminal window, but none of the packets I receive from APRS-IS are getting sent to YAAC via the KISS interface.? I feel like I am missing something simple, but I haven't been able to find it in the config file or the documentation.

Thank You,
Jim



Re: Permissions denied -- How do you fix this ?

 

¿ªÔÆÌåÓý

Might be something like that, or perhaps it's a stale link from a prior run?? What are the permissions on /tmp?

I've used these lines to run kissattach.

sudo modprobe ax25
sudo kissattach `ls -l /tmp/kisstnc | awk '{ print $11 }'` wl2k > /tmp/ax25-config.tmp
sudo kissparms -c 1 -p wl2k

Greg? KO6TH


Mike Lussier - AE4ML wrote:

Thank you. The one thing I didn¡¯t try.?

I just read an article about the /tmp directory that stated any active file that is locked in the directory can have detrimental effects on permissions to other files in the /tmp directory.?

?



Re: iGate from direwolf or YAAC

 

That's a great idea Craig, but I'd need to dedicate a radio to that and I only have the one which I also use for FSQ locally (fldigi).

And the answer is! Buy more radios!


From: "Craig, KM6LYW" <craig@...>
To: [email protected]
Sent: Thursday, October 14, 2021 1:11:44 PM
Subject: Re: [direwolf] iGate from direwolf or YAAC
I'd use both!

A PiZero running direwolf with wifi KISS interface enabled, doing all the day-to-day work.

But, from time to time, when you want a cool user interface, map, messaging, etc, fire up yaac, and connect
to Direwolf over the KISS interface.? You can use another SSID, etc, direwolf will continue to digipeat
concurrently.

best,
-craig
KM6LYW

On 10/14/21 11:06 AM, Andrew P. wrote:
Direwolf will be a faster I-gate than YAAC. Also, DireWolf can run without a graphical desktop UI.

Note that YAAC can still tap into such a DireWolf setup. However, YAAC would only log incoming traffic and traffic that YAAC itself sends. Any transmissions solely by DireWolf (either to RF [digipeat or Tx I-gate] or Internet [Rx I-gate]) would only be known to DireWolf's logging.

Andrew, KA2DDO
author of YAAC


-------- Original message --------
From: "Danny K5CG via groups.io" <k5cg@...>
Date: 10/14/21 11:10 (GMT-05:00)
To: [email protected]
Subject: [direwolf] iGate from direwolf or YAAC

Hello all,

I've got a PI400 connected to a TM-V71A and I've been using YAAC to iGate.

I've shut off the YAAC port for aprsis and added the parameters to direwolf.conf and verified it is working.

Is there any advantage/disadvantage/difference having direwolf do it instead of YAAC?

Thanks
Danny



Re: iGate from direwolf or YAAC

 

Hi Andrew,

This is how I have it at the moment so I'll keep it that way. Direwolf as the iGate operating independently.

Thanks to all for the confirmation.
73
Danny


From: "Andrew P." <andrewemt@...>
To: [email protected]
Sent: Thursday, October 14, 2021 1:06:11 PM
Subject: Re: [direwolf] iGate from direwolf or YAAC
Direwolf will be a faster I-gate than YAAC. Also, DireWolf can run without a graphical desktop UI.

Note that YAAC can still tap into such a DireWolf setup. However, YAAC would only log incoming traffic and traffic that YAAC itself sends. Any transmissions solely by DireWolf (either to RF [digipeat or Tx I-gate] or Internet [Rx I-gate]) would only be known to DireWolf's logging.

Andrew, KA2DDO
author of YAAC


-------- Original message --------
From: "Danny K5CG via groups.io" <k5cg@...>
Date: 10/14/21 11:10 (GMT-05:00)
To: [email protected]
Subject: [direwolf] iGate from direwolf or YAAC

Hello all,

I've got a PI400 connected to a TM-V71A and I've been using YAAC to iGate.

I've shut off the YAAC port for aprsis and added the parameters to direwolf.conf and verified it is working.

Is there any advantage/disadvantage/difference having direwolf do it instead of YAAC?

Thanks
Danny


Re: Permissions denied -- How do you fix this ?

Mike Lussier - AE4ML
 

Thank you. The one thing I didn¡¯t try.?

I just read an article about the /tmp directory that stated any active file that is locked in the directory can have detrimental effects on permissions to other files in the /tmp directory.?

?


Re: Permissions denied -- How do you fix this ?

 

¿ªÔÆÌåÓý

Run direwolf as root, that's the only workaround I've found.?? Not ideal.

-craig
KM6LYW

On 10/15/21 6:26 AM, Mike Lussier - AE4ML wrote:

?
I setup a new pi with a new SD card to run pat . I setup direwolf and started it with direwolf -p?
Then I started kissattach only to get a permissions error that I can't resolve.?
if I go with the idea of using /dev/pts from below then I have to modify the statement every time I run the Pi. It was suggested in an earlier message that you must be in the dialout group. That didn't work either.?
?
Any other suggestions?
?
pi@pat-winlink:~ $ direwolf -p
Dire Wolf DEVELOPMENT version 1.7 A (Oct 13 2021)
Includes optional support for:? cm108-ptt
?
Reading config file direwolf.conf
Audio device for both receive and transmit: plughw:1,0? (channel 0)
Channel 0: 1200 baud, AFSK 1200 & 2200 Hz, A+, 44100 sample rate / 3.
Using /dev/hidraw0 GPIO 3 for channel 0 PTT control.
Ready to accept AGW client application 0 on port 8000 ...
Ready to accept KISS TCP client application 0 on port 8001 ...
Virtual KISS TNC is available on /dev/pts/0
Created symlink /tmp/kisstnc -> /dev/pts/0
?
?
pi@pat-winlink:~ $ sudo /usr/sbin/kissattach /tmp/kisstnc wl2k
kissattach: /tmp/kisstnc: open: Permission denied
?
pi@pat-winlink:~ $ groups
pi adm tty dialout cdrom sudo audio video plugdev games users input netdev lpadmin gpio i2c spi
?


Permissions denied -- How do you fix this ?

Mike Lussier - AE4ML
 

?
I setup a new pi with a new SD card to run pat . I setup direwolf and started it with direwolf -p?
Then I started kissattach only to get a permissions error that I can't resolve.?
if I go with the idea of using /dev/pts from below then I have to modify the statement every time I run the Pi. It was suggested in an earlier message that you must be in the dialout group. That didn't work either.?
?
Any other suggestions?
?
pi@pat-winlink:~ $ direwolf -p
Dire Wolf DEVELOPMENT version 1.7 A (Oct 13 2021)
Includes optional support for:? cm108-ptt
?
Reading config file direwolf.conf
Audio device for both receive and transmit: plughw:1,0? (channel 0)
Channel 0: 1200 baud, AFSK 1200 & 2200 Hz, A+, 44100 sample rate / 3.
Using /dev/hidraw0 GPIO 3 for channel 0 PTT control.
Ready to accept AGW client application 0 on port 8000 ...
Ready to accept KISS TCP client application 0 on port 8001 ...
Virtual KISS TNC is available on /dev/pts/0
Created symlink /tmp/kisstnc -> /dev/pts/0
?
?
pi@pat-winlink:~ $ sudo /usr/sbin/kissattach /tmp/kisstnc wl2k
kissattach: /tmp/kisstnc: open: Permission denied
?
pi@pat-winlink:~ $ groups
pi adm tty dialout cdrom sudo audio video plugdev games users input netdev lpadmin gpio i2c spi
?


Re: iGate from direwolf or YAAC

 

¿ªÔÆÌåÓý

I'd use both!

A PiZero running direwolf with wifi KISS interface enabled, doing all the day-to-day work.

But, from time to time, when you want a cool user interface, map, messaging, etc, fire up yaac, and connect
to Direwolf over the KISS interface.? You can use another SSID, etc, direwolf will continue to digipeat
concurrently.

best,
-craig
KM6LYW

On 10/14/21 11:06 AM, Andrew P. wrote:

Direwolf will be a faster I-gate than YAAC. Also, DireWolf can run without a graphical desktop UI.

Note that YAAC can still tap into such a DireWolf setup. However, YAAC would only log incoming traffic and traffic that YAAC itself sends. Any transmissions solely by DireWolf (either to RF [digipeat or Tx I-gate] or Internet [Rx I-gate]) would only be known to DireWolf's logging.

Andrew, KA2DDO
author of YAAC


-------- Original message --------
From: "Danny K5CG via groups.io" <k5cg@...>
Date: 10/14/21 11:10 (GMT-05:00)
To: [email protected]
Subject: [direwolf] iGate from direwolf or YAAC

Hello all,

I've got a PI400 connected to a TM-V71A and I've been using YAAC to iGate.

I've shut off the YAAC port for aprsis and added the parameters to direwolf.conf and verified it is working.

Is there any advantage/disadvantage/difference having direwolf do it instead of YAAC?

Thanks
Danny