impulse wrote:
Code:
linux-gate.so.1 => (0xb7701000)
libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xb7539000)
/lib/ld-linux.so.2 (0xb7702000)
Not good

But if I change the make file first line to read:
Code:
CFLAGS=`pkg-config --cflags --libs libusb-1.0`
I get this result instead:
Code:
linux-gate.so.1 => (0xb77a5000)
libusb-1.0.so.0 => /lib/i386-linux-gnu/libusb-1.0.so.0 (0xb7774000)
libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xb75c6000)
libudev.so.1 => /lib/i386-linux-gnu/libudev.so.1 (0xb75b2000)
libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xb7596000)
/lib/ld-linux.so.2 (0xb77a6000)
libcgmanager.so.0 => /lib/i386-linux-gnu/libcgmanager.so.0 (0xb7578000)
libnih.so.1 => /lib/i386-linux-gnu/libnih.so.1 (0xb755f000)
libnih-dbus.so.1 => /lib/i386-linux-gnu/libnih-dbus.so.1 (0xb7555000)
libdbus-1.so.3 => /lib/i386-linux-gnu/libdbus-1.so.3 (0xb7509000)
librt.so.1 => /lib/i386-linux-gnu/librt.so.1 (0xb7500000)
http://packages.ubuntu.com/trusty/libs/libusb-1.0-0Which results in this error upon launch:
Code:
libusbx: error [_get_usbfs_fd] libusbx couldn't open USB device /dev/bus/usb/004/009: Permission denied
libusbx: error [_get_usbfs_fd] libusbx requires write access to USB device nodes.
But I have rw to the assigned port and am a member of the dialout group:
Code:
crw-rw---- 1 root dialout 166, 0 Mar 7 17:44 /dev/ttyACM0
I then added a new udev rule for my OP2:
Code:
SUBSYSTEM=="usb", ATTRS{idVendor}=="0403", ATTR{idProduct}=="cc4d",GROUP="dialout",MODE="0666"
This allowed the Logger to stay open a bit longer. Here's the logs with the OP2 connected to the computer but not to the ECU.
Attachment:
noConnect.tar.gz
And here's the crash logs with the OP2 connected to the ECU:
Attachment:
connectCrash.tar.gz