•  

Comment Results

Review Name Created Custom Fields Content
HD-DEN-4641-1 01 Dec 2020

Why there are two __ before LEN?

UI-DEN-3605-4 13 Oct 2020

It's not about what I want, it's about code consistency.
The comment I put up there was regarding a conversation we had about Data at the end and how Data is going to be in the naming and that time I didn't care about the specific Model and Treatment was an example.
I don't think I don't even need to tell you want it should look like as you put your code there it needs to be like the other ones next to it.
So please just be consistent.

HD-DEN-5674-2 29 Dec 2020

Suggest using parentheses to separate conditions.

DG-DEN-7802-1 10 Jun 2021

RESOLVED in CODE WALKTHROUGH.

DG-DEN-3504-1 02 Nov 2020

RESOLVED in CODE WALKTHROUGH.

DG-DEN-3504-1 02 Nov 2020

I don't know if it is mandatory, but we adopted a new way to transfer publish data to broadcast function using a public struct in the .h file and passing a pointer from it. I think we should do it that way everywhere.

DG-DEN-3504-1 02 Nov 2020

Need a space here.

HD-DEN-5381-1 17 Dec 2020

Done.

UI-DEN-4964-1 02 Nov 2020

Addressed in both VDGAccelerometerData.h and VHDAccelerometerData.h.

HD-DEN-14175-1 07 Nov 2022

Done.

UI-DEN-4598-1 04 Nov 2020

RESOLVED.

DG-DEN-8030-1 13 Jun 2021

Done.

DIALIN-DEN-4640-1 04 Nov 2020

Why the HD was removed? It looked like this is an HD message and leaving HD in the msg ID could add more meaning?

UI-DEN-4598-1 01 Nov 2020

Please define these magic numbers somewhere and use them here then.
As example :

//// PRS/SRS defined values
const quint32 bloodFlowRate_def = 100; // SRS nnnn : manufacturing default
const quint32 bloodFlowRate_min = 100; // SRS nnnn
const quint32 bloodFlowRate_max = 100; // SRS nnnn
const quint32 bloodFlowRate_res = 100; // SRS nnnn : resolution
....
UI-DEN-7135-1 10 Apr 2021

RESOLVED.

DG-DEN-5846-1 01 Dec 2020

RESOLVED in CODE WALKTHROUGH.

DG-DEN-5846-1 01 Dec 2020

RESOLVED in CODE WALKTHROUGH.

DG-DEN-5963-1 04 Jan 2021

A lot of these #includes are already in SystemCommMessages.h and so should probably be removed from this area as they are redundant.

DG-DEN-3421-2-1 01 Dec 2020

RESOLVED in CODE WALKTHROUGH.

DG-DEN-5963-1 04 Jan 2021

Should be an else (or default if you turn this into a switch) that triggers a s/w fault (bad reservoir param).

HD-DEN-5887-1 30 Dec 2020

RESOLVED in CODE WALKTHROUGH.

HD-DEN-4641-1 01 Dec 2020

RESOLVED in CODE WALKTHROUGH.

HD-DEN-4641-1 01 Dec 2020

Remove extra line.

HD-DEN-4641-1 01 Dec 2020

Do we need to consider the case where ctrlMode is >= NUM_OF_PUMP_CONTROL_MODES?

DG-DEN-6080-1 29 Dec 2020

Done

HD-DEN-4641-1 01 Dec 2020

RESOLVED in CODE WALKTHROUGH.

HD-DEN-4641-1 01 Dec 2020

The function name is not matched.

DG-DEN-6080-1 29 Dec 2020

Add new alarms to the below alarm table.

HD-DEN-4641-1 01 Dec 2020

RESOLVED in CODE WALKTHROUGH.

DG-DEN-5846-1 04 Dec 2020

Added the if statements to make it symmetrical.

HD-DEN-5674-2 29 Dec 2020

Added TODO instead.

DG-DEN-5846-1 01 Dec 2020

There should not be any data received at this time

HD-DEN-5674-2 29 Dec 2020

Fixed.

DG-DEN-5846-1 07 Dec 2020

RESOLVED in CODE WALKTHROUGH.

DG-DEN-5846-1 07 Dec 2020

Need to remove if and else if statement and pass the condition to check persistent alarm function.

UI-DEN-4964-1 29 Dec 2020

Done.

DG-DEN-6081-1 29 Dec 2020

Done

UI-DEN-4964-1 03 Jan 2021

RESOLVED

HD-DEN-5674-2 29 Dec 2020

Mismatch param.

HD-DEN-5674-2 30 Dec 2020

RESOLVED in CODE WALKTHROUGH.

HD-DEN-5674-2 30 Dec 2020

RESOLVED in CODE WALKTHROUGH.

HD-DEN-5674-2 30 Dec 2020

RESOLVED in CODE WALKTHROUGH.

HD-DEN-5674-2 30 Dec 2020

we are (formal) instead of we're (informal)

HD-DEN-5674-2 30 Dec 2020

RESOLVED in CODE WALKTHROUGH.

HD-DEN-5674-2 30 Dec 2020

we are (formal) instead of we're (informal)

HD-DEN-5674-2 30 Dec 2020

RESOLVED in CODE WALKTHROUGH.

HD-DEN-5674-2 30 Dec 2020

Fixed.

UI-DEN-4964-1 16 Dec 2020

Please add the message definition this method implements on top of the class like what you did for MDGAccelerometerData.h

UI-DEN-4964-1 16 Dec 2020

This is a broadcast message and should be Datum as you have correctly mentioned in the function typeText() method.

UI-DEN-4964-1 29 Oct 2020

please document the class with the format like the example below:
\sa (see also) should refer to the mode data which is used in this class in your case Model::DGAccelerometerData

/*!
 * \brief   The VDGDrainPump class
 * \details View for Model's Data  representation.
 *
 * \sa Model::MDGDrainPump
 *
 */

Please refer to more examples in the master branch and do the same for other Model/View classes.

As a tip just above your class name type "/*!" and hit enter to let QtCreator complete the scaffold for you.