•  

Comment Results

Review Name Created Custom Fields Content
LEAHI-DD-FIRMWARE-LDT-4719-1 30 Jun 2026

Missing Comment.

LEAHI-TD-FIRMWARE-LDT-4063-1 22 Jun 2026

Move this code inside if statement to handleOffButtonProcessing() where same if statement exists.

LEAHI-TD-FIRMWARE-LDT-2749-1 29 Jan 2026

done.

LEAHI-TESTSUITES-LDT-2278-1 30 Jun 2026

RESOLVED

LEAHI-DD-FIRMWARE-LDT-2004-3 03 Feb 2026

It is your comment, so please resolve it.

LEAHI-TESTSUITES-LDT-2278-1 15 Jun 2026

Why do we use findObjectByID and do not define it in then names.py?

LEAHI-DD-FIRMWARE-LDT-4409-2 15 Jun 2026

Remove unused header files.

LEAHI-TD-FIRMWARE-LDT-4033-1 12 Jun 2026

remove this

LEAHI-DD-FIRMWARE-LDT-2004-3 30 Jan 2026

its rate , pump speed in ml/min

LEAHI-APPLICATION-LDT-3194-1 30 Jan 2026

Was told by Systems to follow the same resolution as Treatment Duration and set the default to the minimum value.
Updated.

LEAHI-TESTSUITES-LDT-3427-1 18 Jun 2026

Added 60 second snooze

LEAHI-TESTSUITES-LDT-2971-1 30 Jan 2026

Please add a docstring for this function.
And the naming seems like to be better like:

navigation_pageIndicator_step(vStep_name)
LEAHI-TESTSUITES-LDT-2971-1 30 Jan 2026

When appropriate, align the code.

LEAHI-DD-FIRMWARE-LDT-4011-1 22 Jun 2026

Add Comment. Rename macro as UF_VOL_ML_PER_TASK_INTERVAL

LEAHI-TD-FIRMWARE-LDT-1415-1 02 Feb 2026

Yes, Updated

LEAHI-DIALIN-LDT-4484-1 29 Jun 2026

I have no idea what you are referring to as the link is not working.
The need to define the type and the name of the data being read is necessary, so if it's not here it will be somewhere else, that we can't escape.
Exporting that to different files won't serve a purpose and will only increase complexity as when debugging you will need to reference a separate file.
For the defs it made sense as they are used multiple places, but what a message contains is a single use place, so storing it separately is meaningless as it won't have any use outside of this single function.

LEAHI-DD-FIRMWARE-LDT-4612-1 24 Jun 2026

Add a TODO comment (remove later): this should be handled in IO/FP module.

LEAHI-TD-FIRMWARE-LDT-1415-1 02 Feb 2026

Yes, we do and this is not required here so, I removed

LEAHI-TESTSUITES-LDT-3208-1 25 Jun 2026

RESOLVED.

LEAHI-TESTSUITES-LDT-2971-1 02 Feb 2026

code is aligned

LEAHI-APPLICATION-LDT-4747-1 25 Jun 2026

Are all these valve messages the same message ID [0x1B]?

LEAHI-TESTSUITES-LDT-2971-1 03 Feb 2026

try catch is avoided as per suggestion

LEAHI-DD-FIRMWARE-LDT-2004-3 02 Feb 2026

Should there be any constraints to setting these request flags to TRUE? What if drain request is still in progress for example? Shouldn't drain finish before fill starts?
This wouldn't be an issue if we combined the 3 state machines.

LEAHI-APPLICATION-LDT-3194-1 03 Feb 2026

Updated.

LEAHI-APPLICATION-LDT-3194-1 03 Feb 2026

Updated.

LEAHI-APPLICATION-LDT-4787-1 25 Jun 2026

BN Approves

LEAHI-APPLICATION-LDT-3194-1 03 Feb 2026

Updated.

LEAHI-APPLICATION-LDT-3194-1 27 Jan 2026

Make this use Text.Align instead of defining a new enum.

LEAHI-COMMON-LDT-4832-1 29 Jun 2026

Facing build errors. Please check if DD staging builds with your branch.
Also, please add these to the sheet
MSG_ID_DD_TREATMENT_PARAMS_OVERRIDE_REQUEST
MSG_ID_DD_UF_DATA_PUBLISH_OVERRIDE_REQUEST

LEAHI-APPLICATION-LDT-4810-1 29 Jun 2026

make the slash more vertical

LEAHI-APPLICATION-LDT-4810-1 30 Jun 2026

BN approves

LEAHI-TD-FIRMWARE-LDT-4013-2 01 Jul 2026

Move after Modes so they are alphabetized.

LEAHI-DD-FIRMWARE-LDT-4719-1 30 Jun 2026

Same here. Let's use only D29.

LEAHI-TD-FIRMWARE-LDT-4033-1 30 Jun 2026

Please rename all the sPump registers as h10 for consistency.

LEAHI-TD-FIRMWARE-LDT-4033-1 24 Jun 2026

fpgaActuatorSetPoints is an output.
Input is none.

LEAHI-DIALIN-LDT-2749-1 29 Jan 2026

added.

LEAHI-TD-FIRMWARE-LDT-1415-1 29 Jan 2026

Added

UI-DENBUG-331-1 04 Feb 2026

Check the caller to include logfile name

LEAHI-DIALIN-LDT-3350-1 30 Jan 2026

Removed

UI-DENBUG-331-1 04 Feb 2026

Create enum for all rejection reasons.

Remove default

UI-DENBUG-331-1 04 Feb 2026

Add logname as the third parameter

UI-DENBUG-331-1 04 Feb 2026

change to quint 32

UI-DENBUG-331-1 04 Feb 2026

Change to QString

LEAHI-DIALIN-LDT-3350-1 03 Feb 2026

Yes, they are aliases that are used for example in Dialin's temperature sensor module to decide which msg id to use for the override.
Updating an alias's value when adding new entries to the enum is easier then changing the last or first sensor type across Dialin modules, which could be forgotten or missed.

UI-DENBUG-331-1 04 Feb 2026

Make clarification comments of what each parameter means

UI-DENBUG-331-1 04 Feb 2026

Add third argument for logname like line 526.

LEAHI-TD-FIRMWARE-LDT-4027-1 12 Jun 2026

align the comment part

LEAHI-DD-FIRMWARE-LDT-2004-3 02 Feb 2026

This state machine running continuously. fill request is initiated for every 1 minutes of balancing chamber exec (since right now level sensor is not working )

//Increment counter for dry bicarb chamber fill
bicarbChamberPeriodicFillCounter += 1;
// Fill bicarb chamber once every 60secs.
if ( bicarbChamberPeriodicFillCounter >= BICARB_CHAMBER_PERIODIC_FILL_TIME )

Unknown macro: { setBicarbChamberFillRequested(); bicarbChamberPeriodicFillCounter = 0; }


The request is cleared here. for consistency I am moving to the end of the fill cycle

LEAHI-DD-FIRMWARE-LDT-1473-1 10 Feb 2026

Updated.

LEAHI-TESTSUITES-LDT-2278-1 16 Jun 2026

Getting the text from rejection.conf