Hello Kiran,
The most recently updated data is automatically published by the slave when the master requests it with the corresponding subscriber frame.
How the data is updated is up to you.
As mentioned before, there are two different methods in PLIN-View Pro.
For further information, see the ...
Search found 34 matches
- Tue 25. Mar 2025, 11:48
- Forum: PLIN-View Pro
- Topic: How to repeatedly send 4 different data in sequence
- Replies: 5
- Views: 9308
- Fri 17. Jan 2025, 11:28
- Forum: PCAN-Explorer 6 & Add-ins
- Topic: How does one send the variables within a multiplexer?
- Replies: 6
- Views: 8780
Re: How does one send the variables within a multiplexer?
Hello
1) Please note that any Multiplexer-Signal will also be part of the Signals Collection, so if you just wanna access the Signal, you can use the collection, change the value and this change will automatically trigger a transmission:
That means that all Signals/Variables in all Symbols ...
1) Please note that any Multiplexer-Signal will also be part of the Signals Collection, so if you just wanna access the Signal, you can use the collection, change the value and this change will automatically trigger a transmission:
That means that all Signals/Variables in all Symbols ...
- Tue 27. Aug 2024, 17:05
- Forum: PLIN-View Pro
- Topic: How to repeatedly send 4 different data in sequence
- Replies: 5
- Views: 9308
Re: How to repeatedly send 4 different data in sequence
Hello,
As I wrote in method 1, sending cannot be automated, also because the software is connected as a LIN slave.
Only the LIN master can send data automatically with a scheduler and the LIN slave can only publish data.
For further information, please refer to the software documentation and the ...
As I wrote in method 1, sending cannot be automated, also because the software is connected as a LIN slave.
Only the LIN master can send data automatically with a scheduler and the LIN slave can only publish data.
For further information, please refer to the software documentation and the ...
- Mon 26. Aug 2024, 13:35
- Forum: PLIN-View Pro
- Topic: How to repeatedly send 4 different data in sequence
- Replies: 5
- Views: 9308
Re: How to repeatedly send 4 different data in sequence
Hello,
There are two possibilities for this.
1. Write a Before Publish script for the frame in the Publish list.
This way you can control the data before sending, but not the timing. You have to trigger each send manually.
For further information, see the software documentation and the Automation ...
There are two possibilities for this.
1. Write a Before Publish script for the frame in the Publish list.
This way you can control the data before sending, but not the timing. You have to trigger each send manually.
For further information, see the software documentation and the Automation ...
- Wed 3. Jan 2024, 12:50
- Forum: PCAN-ISO TP
- Topic: Error Inquiry Regarding Delphi's PCANTP_2016
- Replies: 1
- Views: 2529
Re: Error Inquiry Regarding Delphi's PCANTP_2016
Hello
Thank you for this notice.
The reason is due Range checking compiling option (under Runtime errors in Project options ).
This option is enabled by default for debug configuration in new projects on Delphi 11.3 and 12.
And the range checking seems to be done with signed bounds even when {$Z4 ...
Thank you for this notice.
The reason is due Range checking compiling option (under Runtime errors in Project options ).
This option is enabled by default for debug configuration in new projects on Delphi 11.3 and 12.
And the range checking seems to be done with signed bounds even when {$Z4 ...
- Mon 19. Jun 2023, 16:59
- Forum: PLIN-API
- Topic: GetFrameEntry in master mode
- Replies: 1
- Views: 5923
Re: GetFrameEntry in master mode
Hello,
Thanks for your question.
This behavior works as designed by the firmware of the PCAN-USB Pro FD LIN hardware.
The InitialData are not stored permanently in the hardware. The data is only used to determine the start values of the LIN frame.
For this reason, the InitialData cannot be read ...
Thanks for your question.
This behavior works as designed by the firmware of the PCAN-USB Pro FD LIN hardware.
The InitialData are not stored permanently in the hardware. The data is only used to determine the start values of the LIN frame.
For this reason, the InitialData cannot be read ...
- Fri 7. Oct 2022, 13:36
- Forum: PLIN-API
- Topic: SetSchedule returns errWrongParameterValue
- Replies: 3
- Views: 3807
Re: SetSchedule returns errWrongParameterValue
Hello,
I think you forgot to initialize all struct values of the slots (TLINScheduleSlot).
You can just do it also like this:
Regards
M.Riedl
I think you forgot to initialize all struct values of the slots (TLINScheduleSlot).
You can just do it also like this:
Code: Select all
TLINScheduleSlot schedule[3] = { 0 };
M.Riedl
- Tue 15. Mar 2022, 16:05
- Forum: PLIN-API
- Topic: Using schedule function problem
- Replies: 4
- Views: 6092
Re: Using schedule function problem
Hi,
I think you misunderstood something.
The slot entry's FrameId array property can only be fully used if the Type is set to sltSporadic .
If you decide to use normal unconditional slots (Type = sltUnconditional ), you can only use the first element of the FrameId array.
Before that you need to ...
I think you misunderstood something.
The slot entry's FrameId array property can only be fully used if the Type is set to sltSporadic .
If you decide to use normal unconditional slots (Type = sltUnconditional ), you can only use the first element of the FrameId array.
Before that you need to ...
- Mon 14. Mar 2022, 11:49
- Forum: PLIN-API
- Topic: Using schedule function problem
- Replies: 4
- Views: 6092
Re: Using schedule function problem
Hi,
Yes, after LIN_StartSchedule you should call LIN_UpdateByteArray, not before.
Because LIN_StartSchedule initializes the data of the LIN frame.
You can also define the initialization data of the frame with the InitialData of the TLINFrameEntry.
Regards
M.Riedl
Yes, after LIN_StartSchedule you should call LIN_UpdateByteArray, not before.
Because LIN_StartSchedule initializes the data of the LIN frame.
You can also define the initialization data of the frame with the InitialData of the TLINFrameEntry.
Regards
M.Riedl
- Thu 2. Sep 2021, 14:52
- Forum: PCAN-Explorer 6 & Add-ins
- Topic: Claimed Address Overview
- Replies: 1
- Views: 2703
Re: Claimed Address Overview
Hello,
Unfortunately, there is currently no pre-built Add-in or Macro that can list or display the addresses as you described.
However, you can write your own Add-in that can display the information in a window as you wish.
Regards
M.Riedl
Unfortunately, there is currently no pre-built Add-in or Macro that can list or display the addresses as you described.
However, you can write your own Add-in that can display the information in a window as you wish.
Regards
M.Riedl