•  

Comment Results

Review Name Created Custom Fields Content
RO-LEAH-244-1 30 Oct 2024

Need to add this call to initialize common FPGA driver:
initFPGA( (U08*)&fpgaHeader, (U08*)&fpgaSensorReadings, (U08*)&fpgaActuatorSetPoints,
sizeof(FPGA_HEADER_T), sizeof(FPGA_SENSORS_T), sizeof(FPGA_ACTUATORS_T) );

HD-DEN-17093-1 31 Oct 2024

Perhaps just a naming issue, but I can't figure out what these are for based on their name or comment.

HD-DEN-17093-1 16 Oct 2024

This is too brief. Assume we want at least 3 samples to show below threshold. That's 12 seconds.

HD-DEN-17093-1 31 Oct 2024

RESOLVED in CODE WALKTHROUGH.

LEAHI-APPLICATION-LDT-1536-1 11 Aug 2025

As we talked, please use check blocks instead of the nested multi-level if/else.
Also, if you want to reuse the same variable, name it more generally, like info, instead of IP.

QString info  = tr("WiFi Connection Error");
if ( ! _wifiValid ) { goto lOut; }

info  = tr("No WiFi");
if ( ! dev.isValid ) { goto lOut; }

info = tr("WiFi Not Connected");
if ( ! addresses.count() ) { goto lOut; }

if ( ! ( dev.flags().testFlag(QNetworkInterface::IsUp) && dev.flags().testFlag(QNetworkInterface::IsRunning) ) )  { goto lOut; }

info = addresses.first().ip().toString();

lOut:
 emit didWifiData(info);

LEAHI-APPLICATION-LDT-1021-1 24 Jun 2025

remove this line, and we need to have a binding on the ssid role from vdevice on the ssid test.

LEAHI-APPLICATION-LDT-1021-1 24 Jun 2025

add the doInitWifiInfo and remove thsi to be the returned result of the call.

LEAHI-APPLICATION-LDT-1536-1 12 Aug 2025

reverted to use the jumps

LEAHI-APPLICATION-LDT-1536-1 12 Aug 2025

make the wlan0 a const private value of the class.

LEAHI-APPLICATION-LDT-1536-1 12 Aug 2025

I pushed a fix for this behavior

LEAHI-APPLICATION-LDT-1788-1 13 Aug 2025

I believe this does need to be a pointer exposing it to QML because it is derived from QAbstractListModel we should expose a pointer to the actual model. Ff we pass it by value it will get some kind of deep copy of the model not the actual model. So the QML listview will not update when the _instructionsList changes

LEAHI-APPLICATION-LDT-1788-1 12 Aug 2025

That is fine for now, but I strongly believe that since our design is mostly with outlined images, we need to be consistent and keep all the images the same.
Please note this until we discuss it later.

LEAHI-APPLICATION-LDT-1788-1 13 Aug 2025

RESOLVED.

LEAHI-APPLICATION-LDT-1788-1 13 Aug 2025

removed

LEAHI-APPLICATION-LDT-1788-1 13 Aug 2025

remove me

LEAHI-APPLICATION-LDT-1788-1 13 Aug 2025

revert

LEAHI-APPLICATION-LDT-1636-1 13 Aug 2025

Have you tested the race condition here?
Is the _repeater initialized before the property being initialized?
How do you make sure we do not have a race condition?

LEAHI-APPLICATION-LDT-1596-1 13 Aug 2025

We agreed to use the color "#FEFEFE" instead of white for the HeaderbarPopup(s).

LEAHI-APPLICATION-LDT-1788-1 13 Aug 2025

updated

LEAHI-APPLICATION-LDT-1788-1 13 Aug 2025

Change to match other beginning { style.

RO-LDT-1242-1 03 Sep 2025

Or maybe 110 was correct and fault property should be FALSE and DD fault property should be TRUE? This doesn't look like a TD fault. All other faults are DD faults.

LEAHI-APPLICATION-LDT-2071-1 03 Sep 2025

Request: 0x5F

LEAHI-APPLICATION-LDT-1616-1 16 Sep 2025

updated

HD-DEN-17093-1 21 Oct 2024

I think you only want to call zeroBloodLeak() once. So this state needs to move on immediately. Or, if you're doing this because the queue might be full (it really shouldn't be), then you need to have some kind of timeout so you don't get stuck here forever.

DG-DEN-14253-1 02 Dec 2022

For both sensors, the .data should only be set once to final value. Use a temporary local variable until it's ready.

HD-DEN-14344-5 02 Dec 2022

Keep a blank line between declaration and code.

HD-DEN-14344-5 02 Dec 2022

First part of condition should have () around it too.
Do we want to set direction here even if we fail to satisfy condition below?

HD-DEN-14344-5 02 Dec 2022

Remove blank line.

HD-DEN-15367-1 07 Jun 2023

"bloodLeakPersitentCounter" should be bloodLeakPersistentCounter

DG-DEN-15367-1 12 Jun 2023

Cycle is mis-spelled.

DIALIN-DEN-14001-1 08 Dec 2022

Must have worked. I think just one H is all that's needed for unsigned short. Not sure why type "int" is being parsed as unsigned short though.

DG-DEN-15367-1 12 Jun 2023

Should default be separate from DISPENSING? And should default have a s/w fault?

HD-DEN-15363-1 12 Jun 2023

Comment alignment.

HD-DEN-17093-1 16 Oct 2024

Too complicated. Simplify.

HD-DEN-17093-1 16 Oct 2024

RESOLVED in CODE WALKTHROUGH.

HD-DEN-14458-1 12 Dec 2022

Delete extra line.

HD-DEN-17093-1 16 Oct 2024

I know I told you to do shift division, but I want a float for average so we need to do real division by sample count.

HD-DEN-14458-1 14 Dec 2022

RESOLVED in CODE WALKTHROUGH.

HD-DEN-17093-1 16 Oct 2024

RESOLVED in CODE WALKTHROUGH.

DD-LEAH-225-1 16 Oct 2024

Done.

DD-LEAH-225-1 16 Oct 2024

Why not just call stopHeater() here? And why are we checking for request at bottom of exec - shouldn't we do this first?

DD-LEAH-225-1 16 Oct 2024

Use OVERRIDE_RESET to initialize the override field.

HD-DEN-14007-1 19 Dec 2022

Updated.

HD-DEN-14007-1 19 Dec 2022

Updated.

HD-DEN-14007-1 13 Dec 2022

Update function header.

CS-BUILD-0-2-4-1 14 Dec 2022

Functions should have a header w/ brief description and @param describing parameters and @return describing return value if applicable.

TD-LEAH-51-1 29 Oct 2024

Fixed.

RO-LEAH-244-1 04 Nov 2024

This looks to be TD specific one.

DIALIN-DEN-17093-1 22 Oct 2024

This is in the dg_tests.py which is used for running various tests. This is not part of dialin modules. In this case exiting the loop is done manually by stopping the script.

HD-DEN-17093-1 21 Oct 2024

I'm pretty sure we need to do more to restore treatment. Look at saline bolus for what might be needed.
What about restoring dialyzer (no bypass) and getting DPo back on? What about resuming UF if it wasn't already paused before zero started?