DQMH Consortium Toolkits Discussions

cancel
Showing results for 
Search instead for 
Did you mean: 

Module broadcast from Initialize MHL case not working

My DisplayUI module starts ADSS_client, status logger modules. These are all singletons.
As needed, ADSS_client will start a cloneable Policy module to handle data.

 

I've put a log message in each of the module's INITIALIZE MHL case.

 

Following is the logger output as the status broadcasts are being received:
Initial Logger Message
1/16/2025 3:41:36 AM; ADSS_CLIENT; Initialized
1/16/2025 3:41:36 AM; DISPLAY UI; Initialized
1/16/2025 3:42:19 AM; ADSS_CLIENT; Created Policy Mod#1
1/16/2025 3:42:19 AM; POLICY 1; StartPolicyExecuted


I know POLICY 1 is running as I'm getting data and the StartPolicyExecuted (status sent from another Policy module MHL case)

 

So for some reason, the POLICY 1: initialized  message never got received. 

I even added a case for MOD DID INIT broadcast and that wasn't received either.

No idea why just those two broadcasts are not seen.  
What am I missing?

 ADSS_client starts a new policy module.  The two update VIs are to notify the other modules that a new Policy module started.

shuttlefan_3-1737029346581.png

Sending the INITIALIZED message as the last thing

shuttlefan_4-1737029452715.png

DisplayUI registration

shuttlefan_0-1737028800440.png 

Logger registration

shuttlefan_2-1737029234457.png

 



 

0 Kudos
Message 1 of 5
(271 Views)

After some more digging around, it appears that my logger can get the broadcasts if I delay the broadcasts (1 or 2sec)
So something downstream of the module startup/synchronization is happening two secs before the Initialize case has completed.


Looking at the code comments, my understanding is as soon as it enters the INITIALIZE and the synch caller events runs, the module should already be good to send/receive broadcasts.  Having to force a stall in order to do this doesn't seem like is the solution.
The two other singleton modules don't have this behavior.  

anyone have an idea why this is?  

shuttlefan_0-1737066688899.png

 

0 Kudos
Message 2 of 5
(244 Views)

Nothing jumps at me as to why adding a 2-second wait would make this code work.

 

Looks like a good candidate for running Lumos to get more details on the sequence of events:

 

https://dqmh.org/product/lumos/

 

You could request a trial version of Lumos and run it to see if that gives you more clarity as to what may be happening.

 

 

For an opportunity to learn from experienced developers / entrepeneurs (Steve, Joerg, and Brian amongst them):
Check out DSH Pragmatic Software Development Workshop!

DQMH Lead Architect * DQMH Trusted Advisor * Certified LabVIEW Architect * Certified LabVIEW Embedded Developer * Certified Professional Instructor * LabVIEW Champion * Code Janitor

Have you been nice to future you?
0 Kudos
Message 3 of 5
(238 Views)

Interesting...by doing what was suggested (using the null broadcast events; moving the registrations in the EHL for each), now the logger doesn't see ANY of the Module Did Init broadcasts anymore.

So broadcasts when module started outside is seen

when the module start is moved inside the EHL, it gets lost.

rest of code still runs normal.  Just that any broadcasts from within the "initialize" MHL case is lost.

0 Kudos
Message 4 of 5
(212 Views)

Could you share a simplified version of your code?

 

For an opportunity to learn from experienced developers / entrepeneurs (Steve, Joerg, and Brian amongst them):
Check out DSH Pragmatic Software Development Workshop!

DQMH Lead Architect * DQMH Trusted Advisor * Certified LabVIEW Architect * Certified LabVIEW Embedded Developer * Certified Professional Instructor * LabVIEW Champion * Code Janitor

Have you been nice to future you?
0 Kudos
Message 5 of 5
(188 Views)