开云体育


Re: Bookworm & Direwolf 1.8 not saving sound volumes

 

开云体育


One addition here: back on 11/11/23, I had updated my doc to include an addition command line option:

?? sudo alsactl --no-ucm store

This was needed to avoid some warnings.? You can learn more about UCM at:

??

--David
KI6ZHD


On 12/09/2024 07:59 AM, David Ranch wrote:


Hello Arnold,

Raspberry Pi OS Bookworm uses systemd and it should have already installed the following Systemd unit files to restore your saved audio levels via:

??? /usr/lib/systemd/system/alsa-restore.service


You can see if it's recognized by running this command:

?? systemctl | grep alsa
?? --
?? alsa-restore.service??????????????????????????????????????? loaded??? active exited??? Save/Restore Sound Card State
?? --

If it's not showing up on your Pi, you need to troubleshoot that.? There is one noted caveat mentioned in the "1.3 ALSA and systemd" section in of why that might happen.? Specifically the /etc/alsa/state-daemon.conf file cannot exist to let the audio levels be restored.? Does that /etc/alsa/state-daemon.conf file exist on your Pi?? If so, do you need it??


Maybe you just saved the audio levels of the wrong souncard card?? Try just running:

?? #saves the levels of all sound devices
?? sudo alsactl save

where this more basic command will save ALL sound device levels and then reboot.? Did your required levels now get saved?

--David
KI6ZHD


On 12/08/2024 03:21 PM, Arnold Harding - KQ6DI via groups.io wrote:
David,
Yes, it is Raspberry Pi OS, Bookworm.
?
Looks like I didn't use "alsastl restore".? Where should this go?
I didn't look for /var/lib/alsa/asound.state file yet, but I'll try Restore first.
?
Thanks again,
Arnold, KQ6DI
On 12/08/2024 3:14 PM PST David Ranch via groups.io <direwolf-groupsio@...> wrote:
?
?

Hello Arnold,

I assume you're using Raspberry Pi OS correct?? In your direwolf.conf file, what sound devices are you using via your various specified ADEVICEs?? Few things to check:

?? - does the saved ALSA level file /var/lib/alsa/asound.state file exist?
?? - Upon restart, how are you running "alsastl restore" to restore the saved audio levels?


Btw, I recommend to just run "alsactl store" to save ALL sound device levels and not just specific cards.

--David
KI6ZHD


I have Direwolf working in a Pi 3B, and I am unable to have the sound devices volumes get properly restored after a reboot.
It receives fine, and transmits fine, and I can adjust volumes easily using alsamixer, but on the next power-up, all of the volumes need to get re-adjusted again.? I can use
sudo alsactl store 1? (or no channel, or 2 or 3) and the next power-up the sound devices are messed up yet again.
I'm using a usual CM108 sound card, so nothing unusual.
?
It should be easy, but I haven't seen the clue as to what yet.
?
Thanks.
Arnold, KQ6DI




Re: Bookworm & Direwolf 1.8 not saving sound volumes

 

开云体育


Hello Arnold,

Raspberry Pi OS Bookworm uses systemd and it should have already installed the following Systemd unit files to restore your saved audio levels via:

??? /usr/lib/systemd/system/alsa-restore.service


You can see if it's recognized by running this command:

?? systemctl | grep alsa
?? --
?? alsa-restore.service??????????????????????????????????????? loaded??? active exited??? Save/Restore Sound Card State
?? --

If it's not showing up on your Pi, you need to troubleshoot that.? There is one noted caveat mentioned in the "1.3 ALSA and systemd" section in of why that might happen.? Specifically the /etc/alsa/state-daemon.conf file cannot exist to let the audio levels be restored.? Does that /etc/alsa/state-daemon.conf file exist on your Pi?? If so, do you need it??


Maybe you just saved the audio levels of the wrong souncard card?? Try just running:

?? #saves the levels of all sound devices
?? sudo alsactl save

where this more basic command will save ALL sound device levels and then reboot.? Did your required levels now get saved?

--David
KI6ZHD


On 12/08/2024 03:21 PM, Arnold Harding - KQ6DI via groups.io wrote:

David,
Yes, it is Raspberry Pi OS, Bookworm.
?
Looks like I didn't use "alsastl restore".? Where should this go?
I didn't look for /var/lib/alsa/asound.state file yet, but I'll try Restore first.
?
Thanks again,
Arnold, KQ6DI
On 12/08/2024 3:14 PM PST David Ranch via groups.io <direwolf-groupsio@...> wrote:
?
?

Hello Arnold,

I assume you're using Raspberry Pi OS correct?? In your direwolf.conf file, what sound devices are you using via your various specified ADEVICEs?? Few things to check:

?? - does the saved ALSA level file /var/lib/alsa/asound.state file exist?
?? - Upon restart, how are you running "alsastl restore" to restore the saved audio levels?


Btw, I recommend to just run "alsactl store" to save ALL sound device levels and not just specific cards.

--David
KI6ZHD


I have Direwolf working in a Pi 3B, and I am unable to have the sound devices volumes get properly restored after a reboot.
It receives fine, and transmits fine, and I can adjust volumes easily using alsamixer, but on the next power-up, all of the volumes need to get re-adjusted again.? I can use
sudo alsactl store 1? (or no channel, or 2 or 3) and the next power-up the sound devices are messed up yet again.
I'm using a usual CM108 sound card, so nothing unusual.
?
It should be easy, but I haven't seen the clue as to what yet.
?
Thanks.
Arnold, KQ6DI



Re: Bookworm & Direwolf 1.8 not saving sound volumes

 

I too have found this to be an issue with bookworm while running Direwolf 1.7. My guess is that this will also work with 1.8. My workaround was to install pule audio then install pauvcontrol

sudo apt-get install pauvcontrol

This will allow for adjustment of levels.
Default is 100% which is too high. It won't
save settings after reboot.

To set pulse settings permenantly:

pactl get-default-source // make sure default is USB card
// this is for input / rcv

pactl get-default-source
alsa_input.usb-C-Media_Electronics_Inc._USB_Audio_Device-00.mono-fallback

pactl get-default-sink // This is for output / xmit

pactl get-default-sink
alsa_output.usb-C-Media_Electronics_Inc._USB_Audio_Device-00.analog-stereo

FOR INPUT (rcv):
pactl set-source-volume alsa_input.usb-C-Media_Electronics_Inc._USB_Audio_Device-00.mono-fallback 10%

FOR OUTPUT (xmit): pactl set-sink-volume $(pactl get-default-sink) 73%

pactl set-sink-volume alsa_output.usb-C-Media_Electronics_Inc._USB_Audio_Device-00.analog-stereo 73%

These percent settings are for my particular sound card. Re-run each command to adjust the settings to your liking.

This will remember your audio settings for you. This command is only found in bookworm, not in previous OS's.



-- Mike WB8ERJ

Packet BBS email:
WB8ERJ@WB8ERJ.#NEOH.OH.USA.NOAM

Geeze! What is he up to now?


Re: Bookworm & Direwolf 1.8 not saving sound volumes

 

开云体育

Greetings Arnold.

After <F6> and choosing the correct sound card before making adjustments, then <Esc> to exit, did you "sudo alsactl store"? Your Rpi may have several audio devces, so <F6> to choose the correct one is important. If I may ask, please. how did you determine "alsactl store 1 " as the correct device?

On 12/8/24 15:00, Arnold Harding - KQ6DI via groups.io wrote:

I have Direwolf working in a Pi 3B, and I am unable to have the sound devices volumes get properly restored after a reboot.
It receives fine, and transmits fine, and I can adjust volumes easily using alsamixer, but on the next power-up, all of the volumes need to get re-adjusted again.? I can use
sudo alsactl store 1? (or no channel, or 2 or 3) and the next power-up the sound devices are messed up yet again.
I'm using a usual CM108 sound card, so nothing unusual.
?
It should be easy, but I haven't seen the clue as to what yet.


Re: Bookworm & Direwolf 1.8 not saving sound volumes

 

David,
Yes, it is Raspberry Pi OS, Bookworm.
?
Looks like I didn't use "alsastl restore".? Where should this go?
I didn't look for /var/lib/alsa/asound.state file yet, but I'll try Restore first.
?
Thanks again,
Arnold, KQ6DI

On 12/08/2024 3:14 PM PST David Ranch via groups.io <direwolf-groupsio@...> wrote:
?
?

Hello Arnold,

I assume you're using Raspberry Pi OS correct?? In your direwolf.conf file, what sound devices are you using via your various specified ADEVICEs?? Few things to check:

?? - does the saved ALSA level file /var/lib/alsa/asound.state file exist?
?? - Upon restart, how are you running "alsastl restore" to restore the saved audio levels?


Btw, I recommend to just run "alsactl store" to save ALL sound device levels and not just specific cards.

--David
KI6ZHD


I have Direwolf working in a Pi 3B, and I am unable to have the sound devices volumes get properly restored after a reboot.
It receives fine, and transmits fine, and I can adjust volumes easily using alsamixer, but on the next power-up, all of the volumes need to get re-adjusted again.? I can use
sudo alsactl store 1? (or no channel, or 2 or 3) and the next power-up the sound devices are messed up yet again.
I'm using a usual CM108 sound card, so nothing unusual.
?
It should be easy, but I haven't seen the clue as to what yet.
?
Thanks.
Arnold, KQ6DI


Re: Bookworm & Direwolf 1.8 not saving sound volumes

 

开云体育


Hello Arnold,

I assume you're using Raspberry Pi OS correct?? In your direwolf.conf file, what sound devices are you using via your various specified ADEVICEs?? Few things to check:

?? - does the saved ALSA level file /var/lib/alsa/asound.state file exist?
?? - Upon restart, how are you running "alsastl restore" to restore the saved audio levels?


Btw, I recommend to just run "alsactl store" to save ALL sound device levels and not just specific cards.

--David
KI6ZHD


I have Direwolf working in a Pi 3B, and I am unable to have the sound devices volumes get properly restored after a reboot.
It receives fine, and transmits fine, and I can adjust volumes easily using alsamixer, but on the next power-up, all of the volumes need to get re-adjusted again.? I can use
sudo alsactl store 1? (or no channel, or 2 or 3) and the next power-up the sound devices are messed up yet again.
I'm using a usual CM108 sound card, so nothing unusual.
?
It should be easy, but I haven't seen the clue as to what yet.
?
Thanks.
Arnold, KQ6DI


Bookworm & Direwolf 1.8 not saving sound volumes

 

I have Direwolf working in a Pi 3B, and I am unable to have the sound devices volumes get properly restored after a reboot.
It receives fine, and transmits fine, and I can adjust volumes easily using alsamixer, but on the next power-up, all of the volumes need to get re-adjusted again.? I can use
sudo alsactl store 1? (or no channel, or 2 or 3) and the next power-up the sound devices are messed up yet again.
I'm using a usual CM108 sound card, so nothing unusual.
?
It should be easy, but I haven't seen the clue as to what yet.
?
Thanks.
Arnold, KQ6DI


Re: compile direwolf in Pi with Bookworm

 

I use a Pi 2 (?) the first iteration anyway. I am running a 2 way internet gateway without issue.

On Sat, Dec 7, 2024 at 7:31?AM Arnold Harding - KQ6DI via <kq6di=[email protected]> wrote:
I've never been in a hurry do get things done properly, but thanks for the reminder.
I use either a Pi 3 or Zero 2W.? They are plenty fast.? The slowest part is usually downloading over whatever internet I have available.? The number or cores doesn't make much difference when I only have a small straw to download through...
Thanks again, Arnold, KQ6DI
On 12/07/2024 5:37 AM PST Rich Sahlender via <wa3wlh@...> wrote:
?
?
My only suggestion would be to note the amount of ram and the speed and
the number of cpu cores and threads supported on the system doing the
compiles.
?
Most newer machines will do fine with the "make -j4" in the example but
for some older slower machines it might actually slow things down trying
to do too many compiles simultaneously. Several of my older systems
especially the single core 32bit systems complete the compiles more
quickly by specifying "make -j1" rather than "-j4".
?
As always YMMV...
?
73 de Rich WA3WLH
?
?
?


Re: compile direwolf in Pi with Bookworm

 

I've never been in a hurry do get things done properly, but thanks for the reminder.
I use either a Pi 3 or Zero 2W.? They are plenty fast.? The slowest part is usually downloading over whatever internet I have available.? The number or cores doesn't make much difference when I only have a small straw to download through...
Thanks again, Arnold, KQ6DI

On 12/07/2024 5:37 AM PST Rich Sahlender via groups.io <wa3wlh@...> wrote:
?
?
My only suggestion would be to note the amount of ram and the speed and
the number of cpu cores and threads supported on the system doing the
compiles.
?
Most newer machines will do fine with the "make -j4" in the example but
for some older slower machines it might actually slow things down trying
to do too many compiles simultaneously. Several of my older systems
especially the single core 32bit systems complete the compiles more
quickly by specifying "make -j1" rather than "-j4".
?
As always YMMV...
?
73 de Rich WA3WLH
?
?
?


Re: compile direwolf in Pi with Bookworm

 

My only suggestion would be to note the amount of ram and the speed and the number of cpu cores and threads supported on the system doing the compiles.

Most newer machines will do fine with the "make -j4" in the example but for some older slower machines it might actually slow things down trying to do too many compiles simultaneously. Several of my older systems especially the single core 32bit systems complete the compiles more quickly by specifying "make -j1" rather than "-j4".

As always YMMV...

73 de Rich WA3WLH


Re: compile direwolf in Pi with Bookworm

 

Thanks.
I missed this one tiny step;
??
git branch -r


a minor detail.

Arnold, KQ6DI

On 12/06/2024 8:02 PM PST Gil Rand via groups.io <gilrand@...> wrote:
?
?
Okay, so I just cut and pasted the instructions I found here and it worked.
?

On Fri, Dec 6, 2024 at 3:53?PM Arnold Harding - KQ6DI via <kq6di=[email protected]> wrote:
I think I lost an instruction...
How do I compile Direwolf version 1.8 - for Bookworm?
I think I lost the proper step for? git checkout dev ?
?
I've done this before and it wasn't difficult, but now ???? I lost some step.
?
Thanks, Arnold, KQ6DI

?

?


Re: compile direwolf in Pi with Bookworm

 

Okay, so I just cut and pasted the instructions I found here and it worked.


On Fri, Dec 6, 2024 at 3:53?PM Arnold Harding - KQ6DI via <kq6di=[email protected]> wrote:
I think I lost an instruction...
How do I compile Direwolf version 1.8 - for Bookworm?
I think I lost the proper step for? git checkout dev ?
?
I've done this before and it wasn't difficult, but now ???? I lost some step.
?
Thanks, Arnold, KQ6DI


compile direwolf in Pi with Bookworm

 

I think I lost an instruction...
How do I compile Direwolf version 1.8 - for Bookworm?
I think I lost the proper step for? git checkout dev ?
?
I've done this before and it wasn't difficult, but now ???? I lost some step.
?
Thanks, Arnold, KQ6DI


Re: Question on APRS error messages

 

开云体育


I think Thomas's response is actually the correct solution to stop PRINTING these errors on the console.? My answer really only impacts the BIT_FIX feature.? Sorry for the noise.

--David
KI6ZHD


On 12/04/2024 09:26 PM, Thomas Leibold via groups.io wrote:

Hi Chris,

If you are on a BBS frequency, then you may wish to disable APRS decoding completely. You can do this with the direwolf commandline option " -q d " (be quiet about decoding APRS).

73,
Thomas
KK6FPP







Re: Question on APRS error messages

 

Hi Chris,

If you are on a BBS frequency, then you may wish to disable APRS decoding completely. You can do this with the direwolf commandline option " -q d " (be quiet about decoding APRS).

73,
Thomas
KK6FPP


Re: Question on APRS error messages

 

Thanks David!
?
I am on an HF BBS frequency. Thanks for the suggestion and I am going to have to dig out the most recent manual and take a look.
?
-Chris
?
On Wed, Dec 4, 2024 at 09:16 PM, David Ranch wrote:


Hello Chris,

Is your packet station on an APRS frequency or a BBS frequency?? If you want to disable the APRS packet repair heuristics, you can add the following "ax25" parameter to your direwolf.conf file:

?? FIX_BITS 0 AX25

Please note that you might want to actually ENABLE the FIX_BITS feature (changing the "0" parameter to one of the valid higher numbers) to improve weak packet decoding at the risk of some incorrect decodes.? See the Direwolf User Manual for more detail.

--David
KI6ZHD





On 12/04/2024 05:29 PM, Christopher Molnar KO4YAW via groups.io wrote:
Hello All!
?
I am seeing the following error messages regarding bad APRS packet segments, but? these are from packet stations and are valid. Is there anyway to turn off, or adjust, APRS error messages?
?
?


[0L] KO4YAW-7>BEACON:KO4YAW: Node: KO4YAW-7 BBS: KO4YAW-1 CHAT: KO4YAW-2 Sysop: Chris
[0L] KO4YAW-7>ID:BPQ32 Node:KO4YAW-7 BBS: KO4YAW-1 CHAT: KO4YAW-2 QTH Aurora, CO USA GRID:DM79oq75 <0x0d>
[1L] KO4YAW-7>ID:BPQ32 Node:KO4YAW-7 BBS: KO4YAW-1 CHAT: KO4YAW-2 QTH Aurora, CO USA GRID:DM79oq75 <0x0d>
KISS protocol set TXDELAY = 10 (*10mS units = 100 mS), chan 0
KISS protocol set Persistence = 64, chan 0
KISS protocol set SlotTime = 10 (*10mS units = 100 mS), chan 0
KISS protocol set TXtail = 10 (*10mS units = 100 mS), chan 0
KISS protocol set FullDuplex = 0, chan 0
KISS protocol set TXDELAY = 10 (*10mS units = 100 mS), chan 1
KISS protocol set Persistence = 64, chan 1
KISS protocol set SlotTime = 10 (*10mS units = 100 mS), chan 1
KISS protocol set TXtail = 10 (*10mS units = 100 mS), chan 1
KISS protocol set FullDuplex = 0, chan 1
N6CTA-7 audio level = 75 ? FX.25 ? 0
[0] N6CTA-7>BEACON:!3405.20N/11748.25WB-1/B -4/C 14.105L DM14 FARPN
Position, BBS or PBBS
Use of "BEACON" in the destination field is obsolete. ?You can help to improve the quality of APRS signals.
Tell the sender (N6CTA-7) to use the proper product identifier from ?
N 34 05.2000, W 117 48.2500
-1/B -4/C 14.105L DM14 FARPN
KISS protocol set TXDELAY = 10 (*10mS units = 100 mS), chan 0
KISS protocol set Persistence = 64, chan 0
KISS protocol set SlotTime = 10 (*10mS units = 100 mS), chan 0
KISS protocol set TXtail = 10 (*10mS units = 100 mS), chan 0
KISS protocol set FullDuplex = 0, chan 0
?
?
I also see similar messages with call signs in the same place as BEACON. For example if one station is contacting another.? XXXX>KXXXX-1 there is a message that comes up and says that K is not in the correct place for an APRS packet.
Thanks!
-Chris KO4YAW
?
?


Re: Question on APRS error messages

 

开云体育


Hello Chris,

Is your packet station on an APRS frequency or a BBS frequency?? If you want to disable the APRS packet repair heuristics, you can add the following "ax25" parameter to your direwolf.conf file:

?? FIX_BITS 0 AX25

Please note that you might want to actually ENABLE the FIX_BITS feature (changing the "0" parameter to one of the valid higher numbers) to improve weak packet decoding at the risk of some incorrect decodes.? See the Direwolf User Manual for more detail.

--David
KI6ZHD





On 12/04/2024 05:29 PM, Christopher Molnar KO4YAW via groups.io wrote:

Hello All!
?
I am seeing the following error messages regarding bad APRS packet segments, but? these are from packet stations and are valid. Is there anyway to turn off, or adjust, APRS error messages?
?
?


[0L] KO4YAW-7>BEACON:KO4YAW: Node: KO4YAW-7 BBS: KO4YAW-1 CHAT: KO4YAW-2 Sysop: Chris
[0L] KO4YAW-7>ID:BPQ32 Node:KO4YAW-7 BBS: KO4YAW-1 CHAT: KO4YAW-2 QTH Aurora, CO USA GRID:DM79oq75 <0x0d>
[1L] KO4YAW-7>ID:BPQ32 Node:KO4YAW-7 BBS: KO4YAW-1 CHAT: KO4YAW-2 QTH Aurora, CO USA GRID:DM79oq75 <0x0d>
KISS protocol set TXDELAY = 10 (*10mS units = 100 mS), chan 0
KISS protocol set Persistence = 64, chan 0
KISS protocol set SlotTime = 10 (*10mS units = 100 mS), chan 0
KISS protocol set TXtail = 10 (*10mS units = 100 mS), chan 0
KISS protocol set FullDuplex = 0, chan 0
KISS protocol set TXDELAY = 10 (*10mS units = 100 mS), chan 1
KISS protocol set Persistence = 64, chan 1
KISS protocol set SlotTime = 10 (*10mS units = 100 mS), chan 1
KISS protocol set TXtail = 10 (*10mS units = 100 mS), chan 1
KISS protocol set FullDuplex = 0, chan 1
N6CTA-7 audio level = 75 ? FX.25 ? 0
[0] N6CTA-7>BEACON:!3405.20N/11748.25WB-1/B -4/C 14.105L DM14 FARPN
Position, BBS or PBBS
Use of "BEACON" in the destination field is obsolete. ?You can help to improve the quality of APRS signals.
Tell the sender (N6CTA-7) to use the proper product identifier from ?
N 34 05.2000, W 117 48.2500
-1/B -4/C 14.105L DM14 FARPN
KISS protocol set TXDELAY = 10 (*10mS units = 100 mS), chan 0
KISS protocol set Persistence = 64, chan 0
KISS protocol set SlotTime = 10 (*10mS units = 100 mS), chan 0
KISS protocol set TXtail = 10 (*10mS units = 100 mS), chan 0
KISS protocol set FullDuplex = 0, chan 0
?
?
I also see similar messages with call signs in the same place as BEACON. For example if one station is contacting another.? XXXX>KXXXX-1 there is a message that comes up and says that K is not in the correct place for an APRS packet.
Thanks!
-Chris KO4YAW
?


Question on APRS error messages

 

Hello All!
?
I am seeing the following error messages regarding bad APRS packet segments, but? these are from packet stations and are valid. Is there anyway to turn off, or adjust, APRS error messages?
?
?


[0L] KO4YAW-7>BEACON:KO4YAW: Node: KO4YAW-7 BBS: KO4YAW-1 CHAT: KO4YAW-2 Sysop: Chris
[0L] KO4YAW-7>ID:BPQ32 Node:KO4YAW-7 BBS: KO4YAW-1 CHAT: KO4YAW-2 QTH Aurora, CO USA GRID:DM79oq75 <0x0d>
[1L] KO4YAW-7>ID:BPQ32 Node:KO4YAW-7 BBS: KO4YAW-1 CHAT: KO4YAW-2 QTH Aurora, CO USA GRID:DM79oq75 <0x0d>
KISS protocol set TXDELAY = 10 (*10mS units = 100 mS), chan 0
KISS protocol set Persistence = 64, chan 0
KISS protocol set SlotTime = 10 (*10mS units = 100 mS), chan 0
KISS protocol set TXtail = 10 (*10mS units = 100 mS), chan 0
KISS protocol set FullDuplex = 0, chan 0
KISS protocol set TXDELAY = 10 (*10mS units = 100 mS), chan 1
KISS protocol set Persistence = 64, chan 1
KISS protocol set SlotTime = 10 (*10mS units = 100 mS), chan 1
KISS protocol set TXtail = 10 (*10mS units = 100 mS), chan 1
KISS protocol set FullDuplex = 0, chan 1
N6CTA-7 audio level = 75 ? FX.25 ? 0
[0] N6CTA-7>BEACON:!3405.20N/11748.25WB-1/B -4/C 14.105L DM14 FARPN
Position, BBS or PBBS
Use of "BEACON" in the destination field is obsolete. ?You can help to improve the quality of APRS signals.
Tell the sender (N6CTA-7) to use the proper product identifier from https://github.com/aprsorg/aprs-deviceid?
N 34 05.2000, W 117 48.2500
-1/B -4/C 14.105L DM14 FARPN
KISS protocol set TXDELAY = 10 (*10mS units = 100 mS), chan 0
KISS protocol set Persistence = 64, chan 0
KISS protocol set SlotTime = 10 (*10mS units = 100 mS), chan 0
KISS protocol set TXtail = 10 (*10mS units = 100 mS), chan 0
KISS protocol set FullDuplex = 0, chan 0
?
?
I also see similar messages with call signs in the same place as BEACON. For example if one station is contacting another.? XXXX>KXXXX-1 there is a message that comes up and says that K is not in the correct place for an APRS packet.
Thanks!
-Chris KO4YAW
?


Re: USB2RIG chinese interface - allegedly soundcard and PTT

 

I found this one:??
It seems to have a bit of documentation and a couple of accessories.?

I ordered one to test.


Ray D. Congdon - KL7UT



On Tue, Dec 3, 2024 at 11:37?AM Tobias Bj?rklind via <tobias=[email protected]> wrote:
On ebay and aliexpress and similar sites there has recently turned up something called USB2RIG, which looks like a thumb drive with two 3.5mm jacks on one end.
?
e.g.:
?
Has anyone tried one of these?
?
Thanks
Tobias /SM0TGY


Re: USB2RIG chinese interface - allegedly soundcard and PTT

 

Hi Gil,

The Digirig (and presumably the usb2rig as well since it seems to be a clone of the digirig) contains in a really tiny package:
- a bus-powered USB Hub
- a C-Media CM-108 USB Sound Card (but without using GPIO pins) for audio in/out
- a FTDI USB RS-232 interface for both logic level and RS-232 serial rig control

It is ideal for mobile operation due to its light weight, compact size, low power consumption and simple wiring (only one USB cable to the computer to provide power, audio and serial interfaces).

For my purposes, I prefer the DRA-series from Masters Communications but I do understand the purpose of the Digirig devices and if I had a radio with rig-control capability would probably want one.

73,
Thomas
KK6FPP