dgiardini / rtl-ais

A simple AIS tuner and generic dual-frequency FM demodulator
Other
264 stars 90 forks source link

Compiling on a RasPi - Package librtlsdr was not found #41

Closed alsak0de closed 1 year ago

alsak0de commented 2 years ago

Hiya.. help needed. This is what I get when trying make:

albert@ais-maresme:~/rtl-ais $ sudo make Package librtlsdr was not found in the pkg-config search path. Perhaps you should add the directory containinglibrtlsdr.pc' to the PKG_CONFIG_PATH environment variable No package 'librtlsdr' found cc -c rtl_ais.c -o rtl_ais.o -O2 -g -Wall -W -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener rtl_ais.c:42:10: fatal error: rtl-sdr.h: No such file or directory 42 | #include | ^~~ compilation terminated. make: *** [Makefile:62: rtl_ais.o] Error 1`

I previously installed rtl_sdr but librtlsdr shows up with a 0 at the end:

albert@ais-maresme:~/rtl-ais $ sudo find / -name librtlsdr* /var/lib/dpkg/info/librtlsdr0:armhf.prerm /var/lib/dpkg/info/librtlsdr0:armhf.postinst /var/lib/dpkg/info/librtlsdr0:armhf.triggers /var/lib/dpkg/info/librtlsdr0:armhf.postrm /var/lib/dpkg/info/librtlsdr0:armhf.preinst /var/lib/dpkg/info/librtlsdr0:armhf.shlibs /var/lib/dpkg/info/librtlsdr0:armhf.list /var/lib/dpkg/info/librtlsdr0:armhf.md5sums /var/cache/apt/archives/librtlsdr0_0.6.0-3_armhf.deb /usr/lib/arm-linux-gnueabihf/librtlsdr.so.0 /usr/lib/arm-linux-gnueabihf/librtlsdr.so.0.6.0 /usr/share/metainfo/librtlsdr0.metainfo.xml /usr/share/doc/librtlsdr0 albert@ais-maresme:~/rtl-ais $

Should I create a symlink and try? may be install something different?

albert@ais-maresme:~/rtl-ais $ uname -a Linux ais-maresme 5.15.32+ #1538 Thu Mar 31 19:37:58 BST 2022 armv6l GNU/Linux

Thanks in advance,

dgiardini commented 2 years ago

I think it's a problem related to some debian based distros.

Try editing rtl_ais Makefile, lines 2 and 3 and change it to:

CFLAGS+= -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener -I _path_to_missing_rtl-sdr.hdir LDFLAGS+=-lpthread -lm -lrtlsdr -L /usr/lib/arm-linux-gnueabihf/

Please give me you feedback, I'll need to correct this in the repository.

Good luck, David

On Fri, Jul 15, 2022 at 6:42 AM alsak0de @.***> wrote:

Hiya.. help needed. This is what I get when trying make:

@.:~/rtl-ais $ sudo make Package librtlsdr was not found in the pkg-config search path. Perhaps you should add the directory containing librtlsdr.pc' to the PKG_CONFIG_PATH environment variable No package 'librtlsdr' found cc -c rtl_ais.c -o rtl_ais.o -O2 -g -Wall -W -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener rtl_ais.c:42:10: fatal error: rtl-sdr.h: No such file or directory 42 | #include | ^~~ compilation terminated. make: [Makefile:62: rtl_ais.o] Error 1`

I previously installed rtl_sdr but librtlsdr shows up with a 0 at the end:

@.:~/rtl-ais $ sudo find / -name librtlsdr /var/lib/dpkg/info/librtlsdr0:armhf.prerm /var/lib/dpkg/info/librtlsdr0:armhf.postinst /var/lib/dpkg/info/librtlsdr0:armhf.triggers /var/lib/dpkg/info/librtlsdr0:armhf.postrm /var/lib/dpkg/info/librtlsdr0:armhf.preinst /var/lib/dpkg/info/librtlsdr0:armhf.shlibs /var/lib/dpkg/info/librtlsdr0:armhf.list /var/lib/dpkg/info/librtlsdr0:armhf.md5sums /var/cache/apt/archives/librtlsdr0_0.6.0-3_armhf.deb /usr/lib/arm-linux-gnueabihf/librtlsdr.so.0 /usr/lib/arm-linux-gnueabihf/librtlsdr.so.0.6.0 /usr/share/metainfo/librtlsdr0.metainfo.xml /usr/share/doc/librtlsdr0 **@.***:~/rtl-ais $

Should I create a symlink and try? may be install something different?

@.***:~/rtl-ais $ uname -a Linux ais-maresme 5.15.32+ #1538 Thu Mar 31 19:37:58 BST 2022 armv6l GNU/Linux

Thanks in advance,

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you are subscribed to this thread.Message ID: @.***>

alsak0de commented 2 years ago

albert@arm-64:~/rtl-ais$ make Makefile:3: *** missing separator. Stop.

alsak0de commented 2 years ago

In case it helps, tried it on another Ubuntu (Intel arch based now) with the same result:

albert@asl-mini:~/rtl-ais$ make Package librtlsdr was not found in the pkg-config search path. Perhaps you should add the directory containinglibrtlsdr.pc' to the PKG_CONFIG_PATH environment variable No package 'librtlsdr' found cc -c rtl_ais.c -o rtl_ais.o -O2 -g -Wall -W -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener rtl_ais.c:42:10: fatal error: rtl-sdr.h: No such file or directory 42 | #include | ^~~ compilation terminated. make: *** [Makefile:62: rtl_ais.o] Error 1`

alsak0de commented 2 years ago

compilation worked like a charm on a Mac OSX, though

alsak0de commented 2 years ago

could you please help? The changes did not work. Thanks

dgiardini commented 2 years ago

Did you "sudo apt install librtlsdr-dev" ? Did you edit the Makefile ? What changes did you try ?

On Fri, Jul 22, 2022 at 2:41 PM alsak0de @.***> wrote:

could you please help? The changes did not work. Thanks

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.***>

--

This message represents the official view of the voices in my head

alsak0de commented 2 years ago

Making the suggested edits on lines 2&3 did not fix the issue but returned the following error:

Makefile:3: *** missing separator. Stop.

Sounds like a basic syntax message but I didn't figure out the cause.

dgiardini commented 2 years ago

Make sure there are no trailing spaces, or spurious characters in the edited lines (look at line 3). You can also try grabbing a fresh copy of the Makefile from the repo and edit it again, be careful not to add extra characters if you do some copy and paste. If that doesn't work, let me know, we'll try to get your rtl-ais working. Good luck !

On Sat, Jul 23, 2022 at 2:21 PM alsak0de @.***> wrote:

Making the suggested edits on lines 2&3 did not fix the issue but returned the following error:

Makefile:3: *** missing separator. Stop.

Sounds like a basic syntax message but I didn't figure out the cause.

— Reply to this email directly, view it on GitHub https://github.com/dgiardini/rtl-ais/issues/41#issuecomment-1193158956, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADBJPT5YIXGM3FYMPEAWNK3VVQSYZANCNFSM53VAQXKQ . You are receiving this because you commented.Message ID: @.***>

--

This message represents the official view of the voices in my head

Mbungurz commented 1 year ago

@dgiardini it's the same problem when i try to make file on my openwrt

dgiardini commented 1 year ago

The root problem here is the rtlsdr lib pkg-config broken. I did make some modifications to Makefile; it works now in a i386 debian system with the same problem. It's in the repo know. If doesn't work for you, please run " find /usr/lib/ -name librtlsdr* " and send me the output, so I can add it to the Makefile. If this is the case; you also can try editing the line 3 of Makefile an adding "-L " Please let me know your results

On Tue, May 23, 2023 at 2:01 PM Mbungurz @.***> wrote:

@dgiardini https://github.com/dgiardini it's the same problem when i try to make file on my openwrt

— Reply to this email directly, view it on GitHub https://github.com/dgiardini/rtl-ais/issues/41#issuecomment-1559829864, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADBJPTZTZ45IO4OR4GSOT4LXHTUNTANCNFSM53VAQXKQ . You are receiving this because you were mentioned.Message ID: @.***>

--

This message represents the official view of the voices in my head

Mbungurz commented 1 year ago

Can you make updated release? Like you said i works on debian based but not openwrt

Mbungurz commented 1 year ago

I mean "it" Not "i"

dgiardini commented 1 year ago

I'm willing to help, but I need some feedback first:

1) Can you compile the code using the main git branch ? (it is ahead of the release) .The commands are:

git clone http://github.com/dgiardini/rtl-ais cd rtl-ais make

If it doesn't compile, send the output of the make command.

2) If you can't compile because librtlsdr is not found, please do what I asked you in a previous message: run " find /usr/lib/ -name librtlsdr* " and send me the output additionally, run "uname -a" and send the output too.

If we can compile this in your system then we can make a release including these improvements ;-)

On Thu, Jun 8, 2023 at 5:25 AM Mbungurz @.***> wrote:

I mean "it" Not "i"

— Reply to this email directly, view it on GitHub https://github.com/dgiardini/rtl-ais/issues/41#issuecomment-1582128875, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADBJPTYBG7CFKFH2B2F63D3XKGD7BANCNFSM53VAQXKQ . You are receiving this because you were mentioned.Message ID: @.***>

--

This message represents the official view of the voices in my head

Mbungurz commented 1 year ago

  1. | \ \ ) ( ( ) ) | \ \ ) | ) | ( \ \/ / | ) | (
    | / | ) \ / | / | )
    | |\ \ | ( ) / | |\ \ | (
    | |\ \/ )_/ (___| |\ _/ )

    Model : AMLogic S905X HG680P Kernel: 5.4.185 Temp : 47.0 °C Up : 4m 0s Memory: 9% of 1807M CPU : 500 Mhz Boot : 32% of 254.7M Data: 38% of 1.0G

    root@reyre-stb:/# git clone http://github.com/dgiardini/rtl-ais fatal: destination path 'rtl-ais' already exists and is not an empty directory. root@reyre-stb:/# cd rtl-ais root@reyre-stb:/rtl-ais# make Package librtlsdr was not found in the pkg-config search path. Perhaps you should add the directory containing `librtlsdr.pc' to the PKG_CONFIG_PATH environment variable No package 'librtlsdr' found cc -c main.c -o main.o -O2 -g -Wall -W -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener make: cc: No such file or directory make: *** [Makefile:62: main.o] Error 127 root@reyre-stb:/rtl-ais#

2.. root@reyre-stb:/rtl-ais# find /usr/lib/ -name librtlsdr root@reyre-stb:/rtl-ais# uname -a Linux reyre-stb 5.4.185 #1 SMP PREEMPT Wed Apr 13 05:12:55 WIB 2022 aarch64 GNU/Linux root@reyre-stb:/rtl-ais#

dgiardini commented 1 year ago

Look at the second line:

@.***:/# git clone http://github.com/dgiardini/rtl-ais https://github.com/dgiardini/rtl-ais fatal: destination path 'rtl-ais' already exists and is not an empty directory.

You are not compiling the latest version from git, but an old one. You must delete the old rtl-ais directory prior to doing a git clone ( rm -r rtl-ais ) . Try that and report back if it fails.

Mbungurz commented 1 year ago

Model : AMLogic S905X HG680P Kernel: 5.4.185 Temp : 57.0 °C Up : 3d 3h 45m 44s Memory: 11% of 1807M CPU : 500 Mhz Boot : 32% of 254.7M Data: 38% of 1.0G

root@reyre-stb:/# rm -r rtl-ais root@reyre-stb:/# cd rtl-ais bash: cd: rtl-ais: No such file or directory root@reyre-stb:/# git clone http://github.com/dgiardini/rtl-ais cd rtl-ais make Cloning into 'rtl-ais'... warning: redirecting to https://github.com/dgiardini/rtl-ais/ remote: Enumerating objects: 627, done. remote: Counting objects: 100% (96/96), done. remote: Compressing objects: 100% (53/53), done. remote: Total 627 (delta 48), reused 70 (delta 39), pack-reused 531 Receiving objects: 100% (627/627), 333.95 KiB | 215.00 KiB/s, done. Resolving deltas: 100% (293/293), done. Package librtlsdr was not found in the pkg-config search path. Perhaps you should add the directory containing librtlsdr.pc' to the PKG_CONFIG_PATH environment variable No package 'librtlsdr' found Package librtlsdr was not found in the pkg-config search path. Perhaps you should add the directory containinglibrtlsdr.pc' to the PKG_CONFIG_PATH environment variable No package 'librtlsdr' found cc -c main.c -o main.o -O2 -g -Wall -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener
make: cc: No such file or directory make: *** [Makefile:71: main.o] Error 127 root@reyre-stb:/rtl-ais#

do you have any whatsapp number or else

dgiardini commented 1 year ago

You need to install librtlsdr . Run: sudo apt install librtlsdr-dev

On Sat, Jun 17, 2023 at 3:15 AM Mbungurz @.***> wrote:

Model : AMLogic S905X HG680P Kernel: 5.4.185 Temp : 57.0 °C Up : 3d 3h 45m 44s Memory: 11% of 1807M CPU : 500 Mhz Boot : 32% of 254.7M Data: 38% of 1.0G

@.:/# rm -r rtl-ais @.:/# cd rtl-ais bash: cd: rtl-ais: No such file or directory @.:/# git clone http://github.com/dgiardini/rtl-ais https://github.com/dgiardini/rtl-ais cd rtl-ais make Cloning into 'rtl-ais'... warning: redirecting to https://github.com/dgiardini/rtl-ais/ remote: Enumerating objects: 627, done. remote: Counting objects: 100% (96/96), done. remote: Compressing objects: 100% (53/53), done. remote: Total 627 (delta 48), reused 70 (delta 39), pack-reused 531 Receiving objects: 100% (627/627), 333.95 KiB | 215.00 KiB/s, done. Resolving deltas: 100% (293/293), done. Package librtlsdr was not found in the pkg-config search path. Perhaps you should add the directory containing librtlsdr.pc' to the PKG_CONFIG_PATH environment variable No package 'librtlsdr' found Package librtlsdr was not found in the pkg-config search path. Perhaps you should add the directory containing librtlsdr.pc' to the PKG_CONFIG_PATH environment variable No package 'librtlsdr' found cc -c main.c -o main.o -O2 -g -Wall -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener make: cc: No such file or directory make: [Makefile:71: main.o] Error 127 @.***:/rtl-ais#

— Reply to this email directly, view it on GitHub https://github.com/dgiardini/rtl-ais/issues/41#issuecomment-1595640803, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADBJPTYAENOQUIO3THCETTDXLVDRLANCNFSM53VAQXKQ . You are receiving this because you were mentioned.Message ID: @.***>

--

This message represents the official view of the voices in my head

Mbungurz commented 1 year ago

root@reyre-stb:/# sudo apt install librtlsdr-dev bash: sudo: command not found root@reyre-stb:/# opkg install librtlsdr-dev Unknown package 'librtlsdr-dev'. Collected errors:

dgiardini commented 1 year ago

Try

apt install librtlsdr-dev

El sáb., 17 de junio de 2023 17:56, Mbungurz @.***> escribió:

@.***:/# sudo apt install librtlsdr-dev bash: sudo: command not found

— Reply to this email directly, view it on GitHub https://github.com/dgiardini/rtl-ais/issues/41#issuecomment-1595859369, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADBJPT5SR5SMUGXCP3H6ZPTXLYKWVANCNFSM53VAQXKQ . You are receiving this because you were mentioned.Message ID: @.***>

Mbungurz commented 1 year ago

Model : AMLogic S905X HG680P Kernel: 5.4.185 Temp : 57.0 °C Up : 5d 4h 20m 22s Memory: 9% of 1807M CPU : 500 Mhz Boot : 32% of 254.7M Data: 38% of 1.0G

root@reyre-stb:/# apt install librtlsdr-dev bash: apt: command not found root@reyre-stb:/#

dgiardini commented 1 year ago

Dear Mbungurz, I think you should search for other resources to get help. I try to do my best maintaining this software and help people to get it running. You need to understand your system and may be some forum more specific for your box will help you better than me.

Regards, David

El lun., 19 de junio de 2023 03:49, Mbungurz @.***> escribió:

Model : AMLogic S905X HG680P Kernel: 5.4.185 Temp : 57.0 °C Up : 5d 4h 20m 22s Memory: 9% of 1807M CPU : 500 Mhz Boot : 32% of 254.7M Data: 38% of 1.0G

@.:/# apt install librtlsdr-dev bash: apt: command not found @.:/#

— Reply to this email directly, view it on GitHub https://github.com/dgiardini/rtl-ais/issues/41#issuecomment-1596606458, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADBJPT55R33WJGTZGLWMST3XL7ZA5ANCNFSM53VAQXKQ . You are receiving this because you were mentioned.Message ID: @.***>

Mbungurz commented 1 year ago

Thank you, i already ask everyone to compile this in my system and no one understand to do that, last person says that compiling on openwrt is not possible he said something about library that i don't understand, i even ask chat gpt 🤣,

thats why i wish you could compile the new update/new release, because rtl_ais v0.3 can run on my system, but the problem is it can't do broadcast ais data,

dgiardini commented 1 year ago

I think the rtl_ais v0.3 you have was compiled for the maintainers of your distro, I only put binary releases for MS Windows.

Anyway, here is a tip for you. If you have netcat in your system (nc command) and if that version supports the -b option (broadcast), you can broadcast messages using that utility.

I've tested this on my network and it works fine with OpenCPN running on another PC. My command line is:

/usr/local/bin/rtl_ais -n -h localhost -p73 2>&1 | grep --line-buffered AIVDM | tee >(nc -bu 192.168.0.255 10110)

You should change the uppercase parts of the command below:

YOUR_RTL_AIS_PATH/rtl_ais -n -h localhost -p YOUR_PPM 2>&1 | grep --line-buffered AIVDM | tee >(nc -bu YOUR_BROADCAST_ADDRESS 10110)

Explanation: rtl_ais sends to stderr debug info including the catched sentences; doing 2>&1 all the output is redirected to stdout. That output is piped to "grep --line-buffered AIVDM"; that only lets through the AIS sentences and forces the data to be sent as soon as a new one arrives. Then the sentences are piped to netcat and sended to the udp broadcast address of the LAN. The "tee" command lets you see the sentences in your console as well. You'll miss any other debug messages.

Hope this works for you, good luck !

On Mon, Jun 19, 2023 at 11:38 PM Mbungurz @.***> wrote:

Thank you, i already ask everyone to compile this in my system and no one understand to do that, last person says that compiling on openwrt is not possible he said something about library that i don't understand, i even ask chat gpt 🤣,

thats why i wish you could compile the new update, because rtl_ais v0.3 can run on my system, but the problem is it can't do broadcast ais data,

— Reply to this email directly, view it on GitHub https://github.com/dgiardini/rtl-ais/issues/41#issuecomment-1598030548, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADBJPT2POKAFK2BC5ZPP2LTXMEEJHANCNFSM53VAQXKQ . You are receiving this because you were mentioned.Message ID: @.***>

--

This message represents the official view of the voices in my head

Mbungurz commented 1 year ago

so im ditching my openwrt an turn it into kali linux, after several attemps i can running the rtlais and open data in client in UDP mode, thank you very much for your help.... now im ready to face the world ><"

Using device 0: Generic RTL2832U OEM Detached kernel driver Found Rafael Micro R820T tuner Log NMEA sentences to console ON Broadcast address detected. Setting SO_BROADCAST option to socket. AIS data will be sent to 192.168.4.255 port 10110 Tuner gain set to automatic. Tuned to 162000000 Hz. Sampling at 1600000 S/s. Allocating 12 zero-copy buffers !AIVDM,1,1,,B,B7lcM@000:<BUSwKWRR7Gwi7kP06,0*2F

dgiardini commented 1 year ago

If you now have a file named rtl_ais, it worked

On Wed, Jun 28, 2023 at 7:17 AM Mbungurz @.***> wrote:

okey heres the update, im now using kali linux

git clone http://github.com/dgiardini/rtl-ais https://github.com/dgiardini/rtl-ais cd rtl-ais make Cloning into 'rtl-ais'... warning: redirecting to https://github.com/dgiardini/rtl-ais/ remote: Enumerating objects: 627, done. remote: Counting objects: 100% (96/96), done. remote: Compressing objects: 100% (53/53), done. remote: Total 627 (delta 48), reused 70 (delta 39), pack-reused 531 Receiving objects: 100% (627/627), 333.95 KiB | 365.00 KiB/s, done. Resolving deltas: 100% (293/293), done. make: pkg-config: No such file or directory make: pkg-config: No such file or directory cc -c main.c -o main.o -O2 -g -Wall -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener make: pkg-config: No such file or directory cc -c rtl_ais.c -o rtl_ais.o -O2 -g -Wall -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener make: pkg-config: No such file or directory cc -c convenience.c -o convenience.o -O2 -g -Wall -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener make: pkg-config: No such file or directory cc -c aisdecoder/aisdecoder.c -o aisdecoder/aisdecoder.o -O2 -g -Wall -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener make: pkg-config: No such file or directory cc -c aisdecoder/sounddecoder.c -o aisdecoder/sounddecoder.o -O2 -g -Wall -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener make: pkg-config: No such file or directory cc -c aisdecoder/lib/receiver.c -o aisdecoder/lib/receiver.o -O2 -g -Wall -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener make: pkg-config: No such file or directory cc -c aisdecoder/lib/protodec.c -o aisdecoder/lib/protodec.o -O2 -g -Wall -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener make: pkg-config: No such file or directory cc -c aisdecoder/lib/hmalloc.c -o aisdecoder/lib/hmalloc.o -O2 -g -Wall -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener make: pkg-config: No such file or directory cc -c aisdecoder/lib/filter.c -o aisdecoder/lib/filter.o -O2 -g -Wall -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener make: pkg-config: No such file or directory cc -c tcp_listener/tcp_listener.c -o tcp_listener/tcp_listener.o -O2 -g -Wall -I./aisdecoder -I ./aisdecoder/lib -I./tcp_listener cc main.o rtl_ais.o convenience.o ./aisdecoder/aisdecoder.o ./aisdecoder/sounddecoder.o ./aisdecoder/lib/receiver.o ./aisdecoder/lib/protodec.o ./aisdecoder/lib/hmalloc.o ./aisdecoder/lib/filter.o ./tcp_listener/tcp_listener.o -o rtl_ais -lpthread -lm -L /usr/lib/arm-linux-gnueabihf/ -L /usr/lib/i386-linux-gnu/ -L /usr/lib/x86_64-linux-gnu/ -lrtlsdr

did this work?

— Reply to this email directly, view it on GitHub https://github.com/dgiardini/rtl-ais/issues/41#issuecomment-1611144565, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADBJPTYIAQDOQX36QXWZB6LXNQACPANCNFSM53VAQXKQ . You are receiving this because you were mentioned.Message ID: @.***>

--

This message represents the official view of the voices in my head

Mbungurz commented 1 year ago

!AIVDM,1,1,,A,B7m9wp000:<BIUwKWHA0;weWkP06,079 !AIVDM,1,1,,B,H7li`GDt93?4<bo:JBJPPP000000,050 !AIVDM,1,1,,A,H7m9wp09Dl63362222222222220,01B !AIVDM,1,1,,A,H7m9wp5@93?4<wAI2fnnml20@440,01A !AIVDM,1,1,,A,B7m9wp000:<BIUwKWHA0;weWkP06,079 !AIVDM,1,1,,B,H7lcM@4t93?4<g7@P?P9P<1pg440,049 cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... Reattaching kernel driver failed!

i have try several times, but it's sometimes stop, can you fix this auto reconnect or something

dgiardini commented 1 year ago

That is hardware related, probably a slow data rate transfer, check if your USB is high speed.

This thread is turning out of hands, I'll close it as solved. For questions not related to the subject of the thread open a new one.

--David

On Wed, Jun 28, 2023 at 9:50 PM Mbungurz @.***> wrote:

!AIVDM,1,1,,A,B7m9wp000:<BIUwKWHA0;weWkP06,0 79 !AIVDM,1,1,,B,H7li`GDt93?4<bo:JBJPPP000000,050 !AIVDM,1,1,,A,H7m9wp09Dl63362222222222220,0 *1B @.**@.,01A !AIVDM,1,1,,A,B7m9wp000:<BIUwKWHA0;weWkP06,0 79 @.**@.?P9P<1pg440,0*49 cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... cb transfer status: 5, canceling... Reattaching kernel driver failed!

i have try several times, but it's sometimes stop, can you fix this auto reconnect or something

— Reply to this email directly, view it on GitHub https://github.com/dgiardini/rtl-ais/issues/41#issuecomment-1612283297, or unsubscribe https://github.com/notifications/unsubscribe-auth/ADBJPT2EX6J3OI6UZFKCZD3XNTGL3ANCNFSM53VAQXKQ . You are receiving this because you were mentioned.Message ID: @.***>

--

This message represents the official view of the voices in my head