•  

Comment Results

Review Name Created Custom Fields Content
HD-DEN-15229-1 12 May 2023

it is done in the next state - user confirm. May be a better idea to move this pump & heater on to that state after user confirm.

CLOUDSYNC-DEN-16690-1 09 Apr 2024

that is the point. what if the du command is not successful?
there could be cases that the du call is fine from the python perspective but the result is not a successful or expected result.
therefore avoid getting the indexes from array unless you definitely know there is the index.

TD-LDT-94-3 21 Apr 2025

Done.

HD-DEN-14892-3 12 May 2023

What does this do? Why 64 (not 32)?

HD-DEN-15104-1 12 May 2023

Removed

DG-DEN-15274-1 12 May 2023

loadcells[] is an output in this function.

HD-DEN-15274-1 12 May 2023

FULL volume is 1500. Unlikely to be less than 1500 as fills tend to overshoot a little (they don't stop until at least 1500). Add new #define for a max start value - maybe 1575 and use that instead.

CLOUDSYNC-DEN-16690-1 09 Apr 2024

RESOLVED

DG-DEN-13989-2 24 Apr 2023

Yes. The pump minimum target is 3, attempting to set smaller than that limit results in the pump being turned off.

The underlying issue is that stepConcentratePumpToTargetSpeed does not initialize speedIncrease or hasTgtBeenReached, or update the currentPumpSpeed target unless the currentToTargetDiff is < nearly zero. Since the speeds are quantized, we'll see zero more frequently than expected. Particularly when stopping the pump, the Diff will be zero, and currentPumpSpeed may never be updated, leading to odd transient conditions.

By increasing the "zero" level, and adding the initialization and else clauses for zero error and stopping the pump, we guarantee that the speed setting is always set intentionally. Also we already have a minimum speed parameter, used to determine when to stop the motor, and attempts at motor control at these low levels.

CLOUDSYNC-DEN-16690-1 28 Mar 2024

where checked if the sd_used_bytes is zero or not?
[Divide by zero]

DIALIN-DEN-16851-1 02 May 2024

Done.

HD-DEN-16851-1 02 May 2024

Done.

CLOUDSYNC-DEN-16690-1 09 Apr 2024

It is fine for now, but as a comment, the part that calls the du command and checks the length and gets the size value should be a function.
Please consider for later improvements.

RESILVED.

CLOUDSYNC-DEN-16690-1 09 Apr 2024

It is fine for now, but as a comment, the part that calls the du command and checks the length and gets the size value should be a function.
Please consider for later improvements.

RESOLVED.

HD-DEN-16819-1 11 Apr 2024

RESOLVED in CODE WALKTHROUGH.

HD-DEN-16851-1 02 May 2024

Done.

DIALIN-DEN-16851-1 01 May 2024

float.

HD-DEN-16851-1 01 May 2024

Capitalize Baseline.

HD-DEN-16851-1 02 May 2024

RESOLVED in CODE WALKTHROUGH.

HD-DEN-16851-1 02 May 2024

I think these can remain U32s. It's just when we divide total by count to get the filtered value, then we should have F32.

HD-DEN-16851-1 02 May 2024

RESOLVED in CODE WALKTHROUGH.

HD-DEN-16851-1 02 May 2024

RESOLVED in CODE WALKTHROUGH.

HD-DEN-16851-1 02 May 2024

Are we guaranteed to be in Treatment mode here? If not, check mode too.

HD-DEN-16851-1 02 May 2024

F32 not needed here.

UI-DEN-16860-1 10 May 2024

add the newly added parameter here as well.

HD-DEN-16862-1 08 May 2024

Done

HD-DEN-16856-1 07 May 2024

Do we need to say in the comment "chemical disinfect is disabled by default in institutional record"?

UI-DEN-16860-1 10 May 2024

1 - remove _post from here and the header.

HD-DEN-16778-1 24 May 2024

This looks like a threshold. So name should start with MIN or MAX.

DG-DEN-16680-1 02 Jul 2024

Done

DG-DEN-16680-1 01 Jul 2024

If it does not come down below 60 and in the cool idle cycle if any issue occurs, the DG Software transitions to the cancel basic path.

DG-DEN-16680-1 28 Jun 2024

Will there be any worst-case scenario that the temperature never come down (say below 60) and get into a cyclic loop between cancel path and cool idle state?

DG-DEN-16680-1 02 Jul 2024

Added an event.

DG-DEN-16680-1 01 Jul 2024

This could just be an event at start.

DG-DEN-16680-1 03 Jul 2024

RESOLVED in CODE WALKTHROUGH.

UI-DEN-16953-1 23 Jul 2024

RESOLVED

UI-DEN-16953-1 15 Jul 2024

To be consistent add the ActiveCool here as well.

CLOUDSYNC-DEN-16657-3 02 Aug 2024

RESOLVED.

HD-DEN-16680-2 27 Aug 2024

Done

TD-LEAH-32-4 27 Aug 2024

Fixed.

DD-LEAH-210-5 27 Aug 2024

Consider turning these into bits like the commanded states above. Dialin can convert them to separate valve state flags on receipt and UI can do the same for logging. Discuss with Dara and Michael.

DD-LEAH-210-5 27 Aug 2024

These DD units should have your name on them.

DIALIN-DEN-15199-3 02 May 2023

Let's try not to use words like enable/disable unless we're literally doing just that (e.g. disable x alarm). I think the core of this test config is "use wet cartridge".

HD-DEN-16782-1 04 Apr 2024

RESOLVED in CODE WALKTHROUGH.

DG-DEN-16680-1 01 Jul 2024

RESOLVED IN CODEWALKTHROUGH.

CLOUDSYNC-DEN-16690-1 09 Apr 2024

added exception handling for when the subprocess call fails. thanks

CLOUDSYNC-DEN-16690-1 09 Apr 2024

RESOLVED

CLOUDSYNC-DEN-16690-1 28 Mar 2024

same here for split?
[index out of bounds]

TD-LDT-94-3 21 Apr 2025

signalEndTreatment?

HD-DEN-15104-1 12 May 2023

This doesn't seem to ever change. Why not just initialize this value once on reset?