DQMH Consortium Toolkits Discussions

cancel
Showing results for 
Search instead for 
Did you mean: 

Questions on best practices and getting started with DQMH on RT/FPGA

I recently discovered the DQMH pattern and thought I would give it a go on a pretty simple project to just log some data for benchmark/validation on a larger project. I was curious and wanted to try it (learn it), and I also have another project coming down the pipeline that I wanted to start writing some reusable code for. Since there is the DQMH CML shipping example, I am basically basing my project off a modified version of that. For hardware I am using a cRIO-9047 and will be using an NI9203 to acquire the data. I have successfully created the NI9203 DQMH module based off the supplied CML Acquisition Module, and modified the Settings Editor Module included in the DQMH CML template to suit my needs. I created the RT API testers for both and was able to find a few minor bugs that otherwise would have been a pain to identify. So, that was pretty cool that I could individually run the modules and find the errors and fix them without having to run all of the code at once (like there's a lot of it or something, ha), very useful. I have found a few things though that I haven't really been able to find answers to while searching, and maybe this is just my lack of experience and no one else needs these answers because its basic knowledge, but if someone could answer these questions for me it would be helpful. 

 

This project will be headless, I do not need any user interface for this. I plan on plugging in the cRIO, hooking up the 4-20mA sensors to the 9203 module and when the User Pushbutton on the cRIO is pressed acquisition and logging will start. During my testing and using the RT API testers I found that there didn't seem to be a way to stop the front panels from opening when they were running on the RT target. When I ran the modules on my Windows dev machine (I put some simulated data generation in the NI9203 module and used some conditional disables for the DAQmx stuff), I was able to set the modules with the existing code and VI Properties so they wouldn't open a Front Panel when called. I know in this case it doesn't really matter on the RT side, if there's no monitor connected the modules would still operate as expected without having to click on anything because of the way my code is setup and the modules are called. But, like I mentioned, I want to reuse some of this code and the project I will be re-using it in will have a HMI UI so I would like to know what the best method of suppressing or not opening a module FP is until I want to see it when it is running on RT. 

 

The workaround I am using now is to use a conditional diagram disable structure in the MHL Init, when the target == RT, the case is empty:

TheWolfmansBrother_0-1718624470501.png

Additionally, when the Hide Panel.vi is called, it also scripted an FP.Open Invoke Method and wouldn't change the VI to hidden, so I changed it to a FP.Close Invoke Method. In this program I won't be using the show panel or hide panel, so calling FP.Close shouldn't cause any unsuspected behavior, but later when I use this code or similar code to show and hide front panels I can see calling FP.Close being a problem if I close the calling VI. 

 

What is the best way to handle calling these modules so that on a RT target they don't open when started? What about showing and then hiding them on an RT target with a UI? am I missing something that should make the FP.Open invoke work on RT as it does on a Windows machine? I should also mention that I have "Enable Embeded UI" checked in NI-Max in the cRIO settings, which I think it needs to be checked for the event structures in the modules to work properly(?). 

 

My next question may be less about DQMH and more about FPGA, and FPGA/RT best practices, but I am curious to know what the best method for monitoring FPGA I/O is while using DQMH on the RT side. As mentioned above, I want to use the User Pushbutton to start the acquisition and logging in this project. In a future project I will be doing a lot more on the FPGA than just monitoring the user button. My plan here is basically just setup a SCTL with the pushbutton rising edge triggering an interrupt. I created a, "FPGA Interface", DQMH module to run on the RT side. I added a helper Loop, "Monitor FPGA Interrupts", that I have setup to immediately wake on module init. In the helper loop timeout, I have a "Wait on IRQ" with the timeout going to a case with an Ack IRQ and another case based on IRQ number that will fire off an event, in this case, my only IRQ (that I want to act on), NI9203 "Start Acquisition" event. This works, but for future projects, is using an interrupt for something like this a bad idea? This is my first time messing with FPGA interrupts. I know I could create an FPGA Boolean indicator and read the bool on the RT side with a read/write control from the FPGA interface pallet, but have read somewhere that having too many controls and indicators on an FPGA can use up resources or slow things down. Where I am just monitoring a button, I am no where remotely close to using up FPGA resources and nothing here is time critical, but I just thought that maybe this is a better way rather than having an FPGA FP indicator?

 

TheWolfmansBrother_1-1718626712534.png

 

I need to add some logic to stop the acquisition on a second button press/interrupt and it won't be hard, but I just want to make sure I'm not wasting my time by using an interrupt like this before I go nuts dong something impractical that I will regret later. If I wanted to read and write FPGA controls/indicators in addition would this best be accomplished with a second helper loop? 

 

And one last question, Is there a quick way to add or remove payload data from an event without having to do event/vi surgery, or deleting and rebuilding the event? I can do it without blowing away the event, but it's tedious and was wondering if there is a quicker way that I have missed.

 

Thanks.

 

TL;DR: Trying to figure out some DQMH, RT, and FPGA interaction, my questions are in bold. 

0 Kudos
Message 1 of 11
(1,502 Views)

What version of LabVIEW are you using?  There was once a bug in LabVIEW 2021 that opens the front panels of VIs while deploying them to RT from the IDE.  But this was apparently fixed in LabVIEW 2022.

 

But having said that, if the application is headless, then I wouldn't worry about the panels opening/closing - just leave them as is.  I presume you're seeing them pop up because you're still within the development environment.  But when you deploy an exe, you won't see this happen.

 

You do not need Embedded UI turned on if you're going to run headless. DQMH can run fine on cRIOs (ie. 905x or 906x) that don't have this capability. (What you cannot do however is handle front panel button presses via an Event structure, but if the application is headless then this won't be required anyway.)

 

As for the FPGA, the approach sounds ok but I would need to understand more what your future requirements are!

 

Not sure what you're asking with regards to payload data.

 

 

Christopher Farmer

Certified LabVIEW Architect and LabVIEW Champion
DQMH Trusted Advisor
https://wiredinsoftware.com.au

0 Kudos
Message 2 of 11
(1,455 Views)

Hello Brother of Wolfman,

 

thanks for giving DQMH a try. Before we go into any details, can you share the LabVIEW version you're working with?

 

Edit: Chris beat me to it. You can read up on the bug he mentions (which affected all LV versions prior to LV2022) here. I'm curious, though - you're saying that "I was able to set the modules with the existing code and VI Properties so they wouldn't open a Front Panel when called". No DQMH module should open its front panel without being told to, so if you have to put in code to prevent this from happening, then something is wrong.

 

Cheers,

Joerg




DSH Pragmatic Software Development Workshops (Fab, Steve, Brian and me)
Release Automation Tools for LabVIEW (CI/CD integration with LabVIEW)
HSE Discord Server (Discuss our free and commercial tools and services)
DQMH® (Developer Experience that makes you smile )


0 Kudos
Message 3 of 11
(1,436 Views)

Thank you for the replies @OZFarmBoy & @joerg.hampel, 

 

What version of LabVIEW are you using? if the application is headless, then I wouldn't worry about the panels opening/closing - just leave them as is.  I presume you're seeing them pop up because you're still within the development environment.  But when you deploy an exe, you won't see this happen.

I am using LV 2020 SP1. I know it doesn't really matter in this headless case but I was just trying to figure it out for my next project where I will need to display and hide different user interfaces on the HMI. I will have to get the touchscreen setup that will be used for the HMI to check on that. Yes, I have been running in the development environment, so that is probably why I am seeing the front panels open. I looked at the bug that Joerg linked, I am not getting any sort of warnings when deploying the code to the target. 

 

"I was able to set the modules with the existing code and VI Properties so they wouldn't open a Front Panel when called".

I guess what had confused me was that I had been modifying the existing DQMH CML project which has the Settings Editor set to launch and display the front panel when called. So when the Acquisition Module or CML UI Main was started the Settings editor was automatically opening and displaying the FP in modal, forcing the user to set the settings for the example project. I had changed the setting so it wouldn't "Show front panel when called" but it was still immediately opening the front panel when running on the RT target. That is why I had started using the conditional disable structures on the FP.Open invoke methods and associated code in the initialize cases, which did seem to work and keep the front panels from opening while still allowing me to use the show/hide buttons of the API Testers. I will try to build it all as an exe and get the monitor setup to see how they behave without the disabled code. 

 

Not sure what you're asking with regards to payload data.

Maybe I used the wrong term. When I create an event through the DQMH scripting, the event args window pops up and I can add my args or what I had referred to as payload data. If I forget to put some data type into the event args window, is there an easy way to change this after the event creation without either deleting the event and re creating it with the correct event args data, or without having to open the event payload type-def add it there, and then subsequently go through all VIs that call the type-def and fixing them to work with the updated type-def and added arg?

 

One additional question that I had forgotten, I keep reading and hearing (I listened to some of the podcast) about all of these templates that people in the community are sharing. I found an older thread about starting a template manager, the thread sort of took a turn towards the creation of Antidoc, which I also plan to try, but where are all of these templates? The last post of the thread sort of eludes to the loss of focus on the thread title but no one replies. Did some sort of template manager ever come to fruition, or is there some sort of list of git links somewhere? In the first few episodes of the podcast it was made to sound like there were all kinds of templates floating around the forum.

 

0 Kudos
Message 4 of 11
(1,424 Views)

We created an RT application with Embedded UI turned ON and we did experience the issue of windows popping up on the launch of each module. We actually employ the same workaround you have. Cool! In your case, with Embedded UI turned OFF, it really shouldn't matter other then when running from the development environment.

 

Changing Event Arguments (payload)

I feel your pain! However, it is not that bad. You modify the typedef and then make sure to visit the EHL (and MHL) frame where the request or broadcast is handled. The Panther Dashboard for DQMH can help you find all those places pretty quickly. Feel free to suggest a feature addition to script argument changes. It will need lots of Kudos, but there is always a chance!

 

Reading I/O from FPGA

Your choices are polling and interrupts. In both cases a helper loop is... helpful. I like to use interrupts for waveform data and trigger signals. I use polling for keeping low-speed values fresh on the RT side. I'm thinking things like temperature inputs and such.

 

 

Message 5 of 11
(1,415 Views)

One additional question that I had forgotten, I keep reading and hearing (I listened to some of the podcast) about all of these templates that people in the community are sharing. I found an older thread about starting a template manager, the thread sort of took a turn towards the creation of Antidoc, which I also plan to try, but where are all of these templates? The last post of the thread sort of eludes to the loss of focus on the thread title but no one replies. Did some sort of template manager ever come to fruition, or is there some sort of list of git links somewhere? In the first few episodes of the podcast it was made to sound like there were all kinds of templates floating around the forum.

 


Good question.  A few of the trusted advisors on the podcast have talked about their own internal tools and templates that are not necessarily readily and freely available.  A fair bit of IP goes into these templates, and would be worth a bit of money to each of the trusted advisors.  

 

Having said that, Hampel Soft have an application template here: 

01 Application Template [HAMPEL SOFTWARE ENGINEERING] (hampel-soft.com)

Christopher Farmer

Certified LabVIEW Architect and LabVIEW Champion
DQMH Trusted Advisor
https://wiredinsoftware.com.au

Message 6 of 11
(1,403 Views)

Hi,

 

Regarding the FPGA questions, they are very depending on the application and not really related to DQMH itself.
However, Wait for Interrupt does have a timeout. IMO you should build a Helper Loop with a Timout set to 0, and rely entirely on the Wait On IRQ node.

If the Wait for IRQ times out, then re-read, otherwise set Helper Timeout back to -1, and enqueue an order to do something (or private evt).

 

Also, whatever happens on DI side (button, etc...) and need to sync with RT, I would still use interrupts and have the FPGA detecting the button rising/falling edge. It would allow having a monitoring loop on the RT side running as slow as possible (based on Wait for IRQ timeout) while you don't care if the FPGA just runs as fast as possible to detect egdes.

CLA, CTA, LV Champion
View Cyril Gambini's profile on LinkedIn
This post is made under CC BY 4.0 DEED licensing
Message 7 of 11
(1,392 Views)
I know it doesn't really matter in this headless case but I was just trying to figure it out for my next project where I will need to display and hide different user interfaces on the HMI.

As the others already said, the front panels opening up are nothing other than a nuisance. 

 

The “FP.Open” node in the “Initialise” MHL case does not behave as expected when deploying Singleton modules to an RT target. All the other property nodes seem to make no difference.

 

These tests were done on a cRIO-9030 running NI Linux RT and LabVIEW RT 2020. For these tests, I added a separate error indicator on the front panel of the main VI showing the error output of the FP.Open node.

 

With Embedded UI enabled:

  • When executing the FP.Open node (i.e. after deploying successfully, when executing the code), LabVIEW will open the Main.vi front panel in the IDE (Windows) but not on the target.
  • This only happens for the Singleton, Cloneable modules are not affected
  • No error occurs in any of the property nodes

 

With Embedded UI disabled:

  • During deployment, if LV needed to recompile any VI containing an event structure (both singleton and cloneable Main.vi in this example), LV will show the VI FPs as per bug 1876112 
  • When executing the FP.Open node (i.e. after deploying successfully, when executing the code), LabVIEW will not open the Main.vi front panel
  • In both cases described above, on the RT target, the FP.Open node throws error 53:
    • Property Node (arg 1) in MySingleton.lvlib:Main.vi->MySingleton.lvlib:Main.vi.ACBRProxyCaller.32900000
  • If LV showed the Main.vi FP during deployment (due to the bug), it will not throw an error for the FP.Open node
  • If LV did not open FPs during deployment, and the main.vi is opened afterwards, the indicator on the FP will show the Error 53

 


I looked at the bug that Joerg linked, I am not getting any sort of warnings when deploying the code to the target. 

You will not see any of the warnings, these are internal to the LabVIEW IDE. The only thing you will see are the front panels popping up.

 


I had changed the setting so it wouldn't "Show front panel when called" but it was still immediately opening the front panel when running on the RT target. That is why I had started using the conditional disable structures on the FP.Open invoke methods and associated code in the initialize cases, which did seem to work and keep the front panels from opening while still allowing me to use the show/hide buttons of the API Testers. I will try to build it all as an exe and get the monitor setup to see how they behave without the disabled code. 

The agreed-upon better practice to deal with the phenomenon of front panels being opened by the IDE when deploying to RT targets actually is to wrap (at least) the FP.Open node in a conditional disable strucure, just as you did. We all arrive at the same conclusion.

 

I want to reiterate and stress the fact that this is a false behaviour of the LabVIEW IDE, we don't know that it affects the actual execution of the module on the RT target in any way. 

 

When you're testing your modules on Windows, then obviously the front panels should open and close as expected, using the Show Panel and Hide Panel requests. Nothing should pop up just by itself, without being called from somewhere.

 

When you're running your code on RT, it doesn't really matter what you see in your Windows IDE - meaning it only resembles a debugging UI, it does not reflect how your application runs eventually when you deploy it as an RT EXE.

 

If you do have Embedded UI enabled, watch and operate your modules on the display attached to the target (rather than on Windows). 




DSH Pragmatic Software Development Workshops (Fab, Steve, Brian and me)
Release Automation Tools for LabVIEW (CI/CD integration with LabVIEW)
HSE Discord Server (Discuss our free and commercial tools and services)
DQMH® (Developer Experience that makes you smile )


Message 8 of 11
(1,387 Views)

Thank you all for answering my questions. I appreciate it. 

 

I will continue development with the disable structures stopping the FP.Open nodes from running. I haven't had a chance to work on this much this week, hopefully I can get back to it in the next day or so and try to run with an HMI setup to see what happens. 

 

I'm looking forward to trying DQMH out in a larger project.

 

Thank you!

 

 

0 Kudos
Message 9 of 11
(1,366 Views)

If you can find the time, I'd appreciate your feedback on the documentation I finally compiled on this topic in our Dokuwiki:

 

https://dokuwiki.hampel-soft.com/kb/labview-frameworks/dqmh/realtime

https://dokuwiki.hampel-soft.com/kb/ni-rt/deployment

 

If you could let me know whether those pages make sense to you and describe the situation sufficiently, that would be a tremendous help. Thank you in advance!




DSH Pragmatic Software Development Workshops (Fab, Steve, Brian and me)
Release Automation Tools for LabVIEW (CI/CD integration with LabVIEW)
HSE Discord Server (Discuss our free and commercial tools and services)
DQMH® (Developer Experience that makes you smile )


Message 10 of 11
(1,359 Views)