Search found 1751 matches

by M.Maidhof
Wed 9. Apr 2025, 10:08
Forum: PCAN-Router FD
Topic: Messages delay in tx and rx on one can with PCAN Router FD
Replies: 8
Views: 3839

Re: Messages delay in tx and rx on one can with PCAN Router FD

Hi,

start with the examples we provide in the PEAK-Dev package, and modify it step by step when you are unsure what the code does.

regards

Michael
by M.Maidhof
Wed 9. Apr 2025, 10:06
Forum: Linux
Topic: PCAN-USB on Linux
Replies: 4
Views: 3952

Re: PCAN-USB on Linux

Hi,

did you use a terminated CAN cable with 120 Ohms on both ends between CAN-H and CAN-L to connect both PCAN-USBs?

regards

Michael
by M.Maidhof
Tue 8. Apr 2025, 16:43
Forum: PLIN-View Pro
Topic: Transmitting multiple frames while schedule table is running
Replies: 3
Views: 1824

Re: Transmitting multiple frames while schedule table is running

Hi,

no you can't run several scheduler at the same time. This could not work in a LIN system. But you can use a VBscript to run a scheduler, stop it, run some 3C/3D commuication and start scheduler again. See help in PLIN-View Pro for more details.

There are also some script examples here in the ...
by M.Maidhof
Tue 8. Apr 2025, 16:40
Forum: PLIN-View Pro
Topic: Plugins for Graphical analysis.
Replies: 3
Views: 1363

Re: Plugins for Graphical analysis.

Hi,

here the link to the PLIN-API: https://www.peak-system.com/fileadmin/m ... in-api.zip

the API itself don't offer any graphical display, it gives you access to the raw LIN data, which you can use in your application to display it in a graphical way.

regards

Michael
by M.Maidhof
Tue 8. Apr 2025, 11:52
Forum: PLIN-View Pro
Topic: Need optimization suggestions for PLIN GUI freezing on running multiple functionalities
Replies: 3
Views: 1242

Re: Need optimization suggestions for PLIN GUI freezing on running multiple functionalities

Hi,

which UDS Window are you talking about? PLIN-View Pro don't offer an UDS Window. Can you please share a screenshot?

regards

Michael
by M.Maidhof
Tue 8. Apr 2025, 08:27
Forum: PCAN-Router FD
Topic: Messages delay in tx and rx on one can with PCAN Router FD
Replies: 8
Views: 3839

Re: Messages delay in tx and rx on one can with PCAN Router FD

Hi,

yes, because the logic in your code doesn't fit. Why do you call the CAN_UserRead again without checking if there was a message received or not?

regards

Michael
by M.Maidhof
Mon 7. Apr 2025, 16:20
Forum: PLIN-View Pro
Topic: Need optimization suggestions for PLIN GUI freezing on running multiple functionalities
Replies: 3
Views: 1242

Re: Need optimization suggestions for PLIN GUI freezing on running multiple functionalities

Hi,

Which PLIN GUI do you use? PLIN-View Pro? Which refresh rate is used (right mouse click in the receive window)?

regards

Michael
by M.Maidhof
Mon 7. Apr 2025, 16:17
Forum: PLIN-View Pro
Topic: Plugins for Graphical analysis.
Replies: 3
Views: 1363

Re: Plugins for Graphical analysis.

Hi,

PLIN-View pro don't offer any graphical analysis tools. But you can use the PLIN-API to build an own application to analyze the LIN bus in a graphical way.

regards

Michael
by M.Maidhof
Mon 7. Apr 2025, 16:15
Forum: PCAN-Router FD
Topic: Messages delay in tx and rx on one can with PCAN Router FD
Replies: 8
Views: 3839

Re: Messages delay in tx and rx on one can with PCAN Router FD

Hi,

please check you code again. You call "CAN_UserRead ( VEHICLE_CAN_BUS, &RxMsg)" without checking the return value. This is not a good idea. What is the reason for this?

regards

Michael
by M.Maidhof
Thu 3. Apr 2025, 14:47
Forum: PLIN-API
Topic: Implementing 'Publish' Direction in Slave Mode Using PLIN API
Replies: 7
Views: 5846

Re: Implementing 'Publish' Direction in Slave Mode Using PLIN API

Hi,

as a first step please build two projecs with your ldf in PLIN-View Pro. One as a master task with active scheduler, the other as a slave task with publishe data for some frames. If you want to use a VBscript to control the slave part, please build up a VBscript where you load the slave project ...