Hello,
I'm trying to connect a PCAN-miniPCIe FD card to a Jetson AGX Orin, both on the NVIDIA devkit and on a Forge carrier board, using an M-key to miniPCIe adapter. Unfortunately, the system does not detect the card at all — running lspci -vvv returns nothing.
Interestingly, when I test the same ...
Search found 12 matches
- Wed 28. May 2025, 20:05
- Forum: Hardware
- Topic: PCAN-miniPCIe FD Not Detected on Jetson AGX Orin (Devkit & Forge Carrier) — Possible Power or Pinout Issue?
- Replies: 1
- Views: 8437
- Thu 20. Feb 2025, 08:38
- Forum: Software
- Topic: PCAN PCI Channel Init Causes Stuff & Form Errors on the Bus
- Replies: 5
- Views: 7638
Re: PCAN PCI Channel Init Causes Stuff & Form Errors on the Bus
when I write dmesg it shows a lot of irrelevant stuff about v4l2 but i did
dmesg | grep pcan
pcan: Release_20200701_n (le)
pcan: driver config [mod] [isa] [pci] [pec] [dng] [usb]
pcan: 0000:01:00: enabling device (0000 -> 0002)
pcan: 0000:01:00.0: PCAN-miniPCIe FD sub-system id 14h (4 channels ...
dmesg | grep pcan
pcan: Release_20200701_n (le)
pcan: driver config [mod] [isa] [pci] [pec] [dng] [usb]
pcan: 0000:01:00: enabling device (0000 -> 0002)
pcan: 0000:01:00.0: PCAN-miniPCIe FD sub-system id 14h (4 channels ...
- Tue 18. Feb 2025, 14:39
- Forum: Software
- Topic: PCAN PCI Channel Init Causes Stuff & Form Errors on the Bus
- Replies: 5
- Views: 7638
Re: PCAN PCI Channel Init Causes Stuff & Form Errors on the Bus
I am using version 8.18 and previously tried 8.10.2, but both behaved the same.
I have 120-ohm termination resistors at both ends of the CAN bus (I can successfuly listen the line), but I have not added any termination in my Jetson-PCAN configuration since the device is not at either end of the ...
I have 120-ohm termination resistors at both ends of the CAN bus (I can successfuly listen the line), but I have not added any termination in my Jetson-PCAN configuration since the device is not at either end of the ...
- Tue 18. Feb 2025, 11:51
- Forum: Software
- Topic: PCAN PCI Channel Init Causes Stuff & Form Errors on the Bus
- Replies: 5
- Views: 7638
PCAN PCI Channel Init Causes Stuff & Form Errors on the Bus
Hello,
I am using two Peak Systems PCAN PCI cards with two different Jetson TX2 for CAN communication. My setup initializes the channels as follows:
result = CAN_Initialize(PCAN_PCIBUS1, PCAN_BAUD_500K, 0, 0, 0);
// Similarly, initializing PCAN_PCIBUS2, PCAN_PCIBUS3, etc.
Before sending any ...
I am using two Peak Systems PCAN PCI cards with two different Jetson TX2 for CAN communication. My setup initializes the channels as follows:
result = CAN_Initialize(PCAN_PCIBUS1, PCAN_BAUD_500K, 0, 0, 0);
// Similarly, initializing PCAN_PCIBUS2, PCAN_PCIBUS3, etc.
Before sending any ...
- Wed 18. Dec 2024, 11:39
- Forum: PCAN-Basic
- Topic: 80h: TX | Stuff Error
- Replies: 4
- Views: 6673
Re: 80h: TX | Stuff Error
Okay, I made sure the cable ends with proper resistance and it worked as we expect thank you



- Tue 17. Dec 2024, 11:56
- Forum: PCAN-Basic
- Topic: 80h: TX | Stuff Error
- Replies: 4
- Views: 6673
Re: 80h: TX | Stuff Error
Hi Michael, I initialize channel at 500K Baudrate do I need to sleep around 2 microseconds (which equivalents to 500 kHz) ? If I don't put a sleep in between, will the transmission occur at 500 kHz or do I need to run the entire thread at 500 kHz to be able to run at this baudrate?
- Tue 17. Dec 2024, 09:53
- Forum: PCAN-Basic
- Topic: 80h: TX | Stuff Error
- Replies: 4
- Views: 6673
80h: TX | Stuff Error
I'm currently trying to write data to my CANBUS line.
$ cat /proc/pcan
*------------- PEAK-System CAN interfaces (www.peak-system.com) -------------
*------------- Release_20240521_n (8.18.0) Dec 13 2024 16:57:39 --------------
*------------- [mod] [isa] [pci] [pec] [dng] [usb ...
$ cat /proc/pcan
*------------- PEAK-System CAN interfaces (www.peak-system.com) -------------
*------------- Release_20240521_n (8.18.0) Dec 13 2024 16:57:39 --------------
*------------- [mod] [isa] [pci] [pec] [dng] [usb ...
- Mon 2. Dec 2024, 11:41
- Forum: Linux
- Topic: Enabling PCAN write mode
- Replies: 5
- Views: 21069
Re: Enabling PCAN write mode
Can you tell me what kind of questions are answered in this forum?
From now on, I can report my problems accordingly.
sorry for the inconvenience
From now on, I can report my problems accordingly.
sorry for the inconvenience
- Mon 2. Dec 2024, 09:55
- Forum: Linux
- Topic: Enabling PCAN write mode
- Replies: 5
- Views: 21069
Re: Enabling PCAN write mode
I found out how to do it. As you said, it was already open, but I disabled it with C++ code as follows.
DWORD listenOnlyState = PCAN_PARAMETER_ON;
if (CAN_SetValue(channelUsed, PCAN_LISTEN_ONLY, &listenOnlyState, sizeof(listenOnlyState)) ==
PCAN_ERROR_OK)
When I turn the listen_only mode here to ...
DWORD listenOnlyState = PCAN_PARAMETER_ON;
if (CAN_SetValue(channelUsed, PCAN_LISTEN_ONLY, &listenOnlyState, sizeof(listenOnlyState)) ==
PCAN_ERROR_OK)
When I turn the listen_only mode here to ...
- Mon 2. Dec 2024, 08:48
- Forum: Linux
- Topic: Enabling PCAN write mode
- Replies: 5
- Views: 21069
Enabling PCAN write mode
Hello, I am new to PCAN stuff and try to run all CAN related works with C++ code.
I would like to enable PCAN cards write mode. Here it shows (I guess) it is closed because the value is 0. I am currently using jetson tx2.
I checked the usermanuel for the parameters and added options pcan txqsize ...
I would like to enable PCAN cards write mode. Here it shows (I guess) it is closed because the value is 0. I am currently using jetson tx2.
I checked the usermanuel for the parameters and added options pcan txqsize ...