-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Segmentation Fault when following Bluetooth-KISS-TNC.pdf on Pi 0w #135
Comments
direwolf.conf.txt |
Please enable core dumps on your Rpi ZeroW and send a backtrace to us: https://blog.xojo.com/2015/08/17/take-a-core-dump-what-to-do-when-your-app-crashes-on-linux/ --David |
Attached. |
Please just provide the text from the gdb backtrace.. not the core itself |
Getting the same issue here on my pi zero with the dev 1.5 version. |
I had forgot to ask before but can you recompile direwolf with debugging objects (add the use -g at the make line) and when cordumps, again do the backtrace and we should see more information than just "??". |
I have the same/similar issue with 1.5b2. 1.4 (release) is working fine. Here are the outputs: (dev branch at commit 182713f :)
(master branch at commit 23ea246 :)
Sorry, I would need some "hand holding" to compile it with the debugging objects and gdb (-g isn't an option on make). |
I assume you built your own version of Direwolf before. If that's not true, let me know and I can add more details. Anyway, I would first recommend to uninstall your previous version of Direwolf to remove any stray binaries (don't forget to make a backup of your direwolf.conf). Next, when you untar and prepare to build direwolf 1.5B2, edit the Makefile.linux file. In that file, find the line: CFLAGS += -O3 -pthread -Igeotranz -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE=1 -Wall and change it to read CFLAGS += -O0 -g -pthread -Igeotranz -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE=1 -Wall (Changing the -O optimization to be zero and enable debugging objects with -g). Now build Direwolf with: make -f Makefile.linux The resulting Direwolf should have debugging objects in it now. Next, you can turn on core dumps in your Raspberry Pi with running the following at the command line: ulimit -c 0 Finally, go ahead and running your original command line. When Direwolf crashes, find the core file (if should be in the current directory): ls -la core.* Let's assume it's named "core.1234". We also need to to know where the direwolf binary is. Run the next command to see where your direwolf binary is: whereis direwolf Now run the gdb debugger to see what's having an issue: gdb -c core.1234 /usr/local/bin/direwolf Once the program logs up, run the command "bt" (for backtrace) and send the results back to this Github issue. --David |
I'm running DW 1.4 on Stretch on an RPi 2 B+. I'm returning to Direwolf after a vacation, but last time it was on Jessie and DW 1.3 (before I had any sort of handle on what I was doing). I've run into "Segmentation Fault" and unexpected exit when monitoring a frequency with APRS traffic, and I have CDIGIPEAT 0 0 set in the config. Testing with CDIGIPEAT 0 0 on a frequency with APRS traffic, with or without DIGIPEAT configured, consistently causes Direwolf exit with Segmentation Fault, almost always after the 1st APRS packet is heard. Testing with CDIGIPEAT 0 0 on a frequency without APRS traffic, with or without DIGIPEAT configured, does NOT cause Segmentation Fault nor an abrupt exit (after an hour or so of observation). Testing with CDIGIPEAT commented-out, with or without DIGIPEAT enabled on any frequency, does NOT cause Segmentation Fault nor an abrupt exit (after some time of observation). I've noticed the same behavior with the 1.4 beta & 1.5-beta and beta2 after clean-up and rebuild. Just out of curiosity if it matters: Where should CDIGIPEAT be put in the .config? I've added it a few lines below a valid DIGIPEAT entry (with arguments as listed in the instruction manual). |
There was a reported issue with CDIGIPEAT that should have been fixed in Direwolf v1.5Beta2:On CDIGIPEAT according to the doc, MYCALL is implied so that CDIGIPEAT 0 0 should just work however it causes a SEGFAULT (prevously discussed). I needed to use , and CDIGIPEAT needs something in the 3rd parameter to filter on: CDIGIPEAT 0 0 ^VK1RGI-1$Please give that a try and let us know if it fixes your issue. --David |
Seems to be working, thanks David! |
This is from 7 years ago. |
Running a Pi 0w, I get a Segmentation fault shortly after starting direwolf:
pi@n0mo_tnc_01:~ $ direwolf
Dire Wolf version 1.5 (Feb 24 2018) Beta Test 2
Includes optional support for: gpsd
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, E+, 44100 sample rate / 3.
Will be checking periodically for /dev/rfcomm0
Ready to accept KISS TCP client application 0 on port 8001 ...
Ready to accept AGW client application 0 on port 8000 ...
Segmentation fault
I have tried commenting out SERIALKISSPOLL /dev/rfcomm0, but the issue remains.
The text was updated successfully, but these errors were encountered: