10-01-2024 03:59 AM
I'm using AM 9848 HART interface toolkit for my project. In that, I'm able to execute the read comments but not the write commands (PFA). For example, COMMAND 17 and COMMAND 18. Can anyone who has experience with these commands please support?
10-15-2025 04:50 AM
Hello,
The problem failed to HART communication is related to LabVIEW code. You need to modify some part of code.
The request HART packet has the following structure:
Please refer to this link : Highway Addressable Remote Transducer Protocol - Wikipedia
As you can see above, Data locates after Number of data bytes. But in LabVIEW code, Data locates before Number of data bytes.
What you need to modify is swapping the order of Data and Number of data bytes. By changing the input order, you can solve the problem.
Souha