DIALIN-DEN-15196

DEN-15364: updated enum for crc override.
DEN-15364: updated enum for crc override.
RESOLVED in CODE WALKTHROUGH.

RESOLVED in CODE WALKTHROUGH.

RESOLVED in CODE WALKTHROUGH.

RESOLVED in CODE WALKTHROUGH.

We need to display the last Saline event before we switch back. Due to how we exit this state machine, we call transitionToDialysis() if we go to SALINE_BOLUS_STATE_MAX_DELIVERED which will update...

We need to display the last Saline event before we switch back.

Due to how we exit this state machine, we call transitionToDialysis() if we go to SALINE_BOLUS_STATE_MAX_DELIVERED which will update the substate back to the current UF state.

Fixed. Thanks!

Fixed. Thanks!

Why does this situation require sending the status event here (instead of in op modes where this is usually done)?

Why does this situation require sending the status event here (instead of in op modes where this is usually done)?

Align comment.

Align comment.

DIAL-262-fixes
DIAL-262-fixes
DIALIN-DEN-15196_DIAL-254
DIALIN-DEN-15196_DIAL-254
DIALIN-DEN-15196_DIAL-258
DIALIN-DEN-15196_DIAL-258
DIALIN-DEN-15196_DIAL-254
DIALIN-DEN-15196_DIAL-254
DIALIN-DEN-15196_chem_disinfection_update
DIALIN-DEN-15196_chem_disinfection_update
Correct

Correct

I think I see how it works - thanks for clarifying. In your example, '23' is event id for event status (the new state msg), right? RESOLVED.

I think I see how it works - thanks for clarifying. In your example, '23' is event id for event status (the new state msg), right?
RESOLVED.

I'll defer to John he is the one implementing the test code changes.

I'll defer to John he is the one implementing the test code changes.

Can you clarify? Events are organized by event id and by time. Currently the usage is looking like this: >>> from dialin import HD >>> hd = HD() >>> hd.events.get_hd_events(23) [] >>> hd.events.ge...

Can you clarify? Events are organized by event id and by time. Currently the usage is looking like this:

>>> from dialin import HD
>>> hd = HD()
>>> hd.events.get_hd_events(23)
[]
>>> hd.events.get_hd_events(23)
[('1684258483', 3, 1, 255)]
>>> hd.events.get_hd_events(23,10)
[('1684258478', 3, 0, 255), ('1684258478', 3, 1, 255), ('1684258479', 4, 0, 255), ('1684258483', 3, 0, 255), ('1684258483', 3, 1, 255)
>>> from dialin.common.hd_defs import HDEventList
>>> hd.events.get_hd_events(HDEventList.HD_EVENT_OPERATION_STATUS.value,10)
[('1684258478', 3, 0, 255), ('1684258478', 3, 1, 255), ('1684258479', 4, 0, 255), ('1684258483', 3, 0, 255), ('1684258483', 3, 1, 255)]

where the user has the option to read the most recent event or a set of the event list.

I'll clarify with V&V. Feedback from john was to change the epoch time to a float.