DQMH Consortium Toolkits Discussions

cancel
Showing results for 
Search instead for 
Did you mean: 

How to avoid self-enqueuing

Solved!
Go to solution

Hi to all

 

I'm new to DQMH and I'm a litle bit confused how to structure my DQMH Module.

 

I have the Fallowing tasks to do in my Module:

Task 1: Chip Erase

Task 2: Download

Task 3: Verify

 

I want that this tasks are executet when i Push the Button "Program".

 

What I have done I made 3 Cases in the MHL for this Tasks and Enqued them in the EHL:

python007_0-1741260812368.png

This works so far but what is when an Error occurs in the "Chip Erase" and I don't want to execute the other tasks so I was thinking about to self enque the further Tasks only if Chip Erase is OK in the MHL.

 

What is here the best practise?

 

Best regards

0 Kudos
Message 1 of 7
(382 Views)
Solution
Accepted by topic author python007

You could make one 'Program Chip' MHL case which runs the three tasks as subVIs, one subVI per task. Each subVI will have an error case structure, which executes the corresponding task only if there's no incoming error.

Message 2 of 7
(374 Views)

@Dhakkan wrote:

You could make one 'Program Chip' MHL case which runs the three tasks as subVIs, one subVI per task. Each subVI will have an error case structure, which executes the corresponding task only if there's no incoming error.


Thanks for your fast reply.

 

Thats a good idea but how to deal with it when its nesccesery that only task 1 should be executed?

 

0 Kudos
Message 3 of 7
(356 Views)

@python007 wrote:

@Dhakkan wrote:

You could make one 'Program Chip' MHL case which runs the three tasks as subVIs, one subVI per task. Each subVI will have an error case structure, which executes the corresponding task only if there's no incoming error.


Thanks for your fast reply.

 

Thats a good idea but how to deal with it when its nesccesery that only task 1 should be executed?

 


Only call the 1 task subVI.

Maybe use a case structure:

avogadro5_0-1741297414928.png

Maybe have a separate MHL case that only includes task 1:

avogadro5_1-1741297470555.png

 

 

Message 4 of 7
(329 Views)

@python007 wrote:

...but how to deal with it when its nesccesery that only task 1 should be executed?



You could even go back to your approach in the opening post. Since an error detected at the end of an MHL case immediately makes the MHL go to the Error case in the next loop iteration, you can decide what to do in the event of a specific error. Of course, each of your tasks needs to generate a unique error within that MHL, so that your Error case can be programmed for appropriate exception handling, including discarding remaining enqueued messages.

Note that this approach has its own caveats.

Message 5 of 7
(298 Views)
Solution
Accepted by topic author python007

@Dhakkan wrote:

You could make one 'Program Chip' MHL case which runs the three tasks as subVIs, one subVI per task. Each subVI will have an error case structure, which executes the corresponding task only if there's no incoming error.


I second this suggestion.

 

@Dhakkan wrote:
You could even go back to your approach in the opening post. Since an error detected at the end of an MHL case immediately makes the MHL go to the Error case in the next loop iteration, you can decide what to do in the event of a specific error. Of course, each of your tasks needs to generate a unique error within that MHL, so that your Error case can be programmed for appropriate exception handling, including discarding remaining enqueued messages.
Note that this approach has its own caveats.

I would advise against this - having to tinker with the queue is one of the main reasons for not self-enqueueing. 

 


@python007 wrote:
Thats a good idea but how to deal with it when its nesccesery that only task 1 should be executed?

Create separate MHL cases that use those subVIs - one case pre scenario which then uses just the subset needed. This makes the code more readable (and if we're talking about requests, the API will be clearer too). Reusing those subVIs is the reason for creating them in the first place, after all.

 

 

Spoiler
If you want or need more control, I'd suggest looking into using a State Machine.



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 6 of 7
(264 Views)

Thank you all for your helpful tips now I have a lot of new ideas how to solve my "tasks".

 

Thanks 🤠

0 Kudos
Message 7 of 7
(213 Views)