annotate Discovery/Src/tMenuEditSetpoint.c @ 775:46c6d2380d4e

Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop. Uses the configured setpoint with the highest / lowest switch depth as the high / low setpoints respectively. (mikeller)
author heinrichsweikamp
date Thu, 11 May 2023 12:13:03 +0200
parents 2c243233c999
children 4abfb8a2a435
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1 ///////////////////////////////////////////////////////////////////////////////
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
2 /// -*- coding: UTF-8 -*-
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
3 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
4 /// \file Discovery/Src/tMenuEditSetpoint.c
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
5 /// \brief
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
6 /// \author heinrichs weikamp gmbh
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
7 /// \date 19-Dec-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
8 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
9 /// \details
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
10 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
11 /// $Id$
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
12 ///////////////////////////////////////////////////////////////////////////////
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
13 /// \par Copyright (c) 2014-2018 Heinrichs Weikamp gmbh
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
14 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
15 /// This program is free software: you can redistribute it and/or modify
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
16 /// it under the terms of the GNU General Public License as published by
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
17 /// the Free Software Foundation, either version 3 of the License, or
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
18 /// (at your option) any later version.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
19 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
20 /// This program is distributed in the hope that it will be useful,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
21 /// but WITHOUT ANY WARRANTY; without even the implied warranty of
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
22 /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
23 /// GNU General Public License for more details.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
24 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
25 /// You should have received a copy of the GNU General Public License
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
26 /// along with this program. If not, see <http://www.gnu.org/licenses/>.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
27 //////////////////////////////////////////////////////////////////////////////
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
28
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
29 /* Includes ------------------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
30 #include "tMenuEditSetpoint.h"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
31
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
32 #include "check_warning.h"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
33 #include "gfx_fonts.h"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
34 #include "tMenuEdit.h"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
35 #include "unit.h"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
36
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
37 /* Private types -------------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
38 typedef struct
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
39 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
40 uint8_t spID;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
41 SSetpointLine * pSetpointLine;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
42 } SEditSetpointPage;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
43
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
44
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
45 /* Private variables ---------------------------------------------------------*/
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
46 static SEditSetpointPage editSetpointPage;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
47
775
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
48 static uint8_t switchToSetpointCbar;
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
49
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
50 /* Private function prototypes -----------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
51
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
52 /* Announced function prototypes -----------------------------------------------*/
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
53 static uint8_t OnAction_SP_Setpoint (uint32_t editId, uint8_t blockNumber, uint8_t digitNumber, uint8_t digitContent, uint8_t action);
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
54 static uint8_t OnAction_SP_DM_Sensor1 (uint32_t editId, uint8_t blockNumber, uint8_t digitNumber, uint8_t digitContent, uint8_t action);
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
55 static uint8_t OnAction_SP_DM_Sensor2 (uint32_t editId, uint8_t blockNumber, uint8_t digitNumber, uint8_t digitContent, uint8_t action);
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
56 static uint8_t OnAction_SP_DM_Sensor3 (uint32_t editId, uint8_t blockNumber, uint8_t digitNumber, uint8_t digitContent, uint8_t action);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
57
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
58 /* Exported functions --------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
59
773
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
60 void checkSwitchToLoop(void)
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
61 {
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
62 if(!isLoopMode(stateUsedWrite->diveSettings.diveMode)) {
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
63 stateUsedWrite->diveSettings.diveMode = settingsGetPointer()->dive_mode;
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
64
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
65 unblock_diluent_page();
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
66 }
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
67 }
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
68
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
69
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
70 void openEdit_Setpoint(uint8_t line)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
71 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
72 uint8_t useSensorSubMenu = 0;
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
73 char text[20];
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
74 uint8_t sensorActive[3];
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
75
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
76 /* dive mode */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
77 if(actual_menu_content != MENU_SURFACE)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
78 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
79 uint8_t setpointCbar, actualGasID;
130
b7689d9e888a Minor changes to improved code quality and to eliminate warnings
Ideenmodellierer
parents: 38
diff changeset
80 setpointCbar = 100;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
81
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
82 // actualGasID
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
83 if(!isLoopMode(stateUsedWrite->diveSettings.diveMode))
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
84 {
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
85 actualGasID = stateUsedWrite->lifeData.lastDiluent_GasIdInSettings;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
86 if((actualGasID <= NUM_OFFSET_DILUENT) || (actualGasID > NUM_GASES + NUM_OFFSET_DILUENT))
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
87 actualGasID = NUM_OFFSET_DILUENT + 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
88 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
89 else
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
90 actualGasID = stateUsedWrite->lifeData.actualGas.GasIdInSettings;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
91
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
92 // setpointCbar, CCR_Mode and sensor menu
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
93 if((line < 6) && (stateUsedWrite->diveSettings.diveMode != DIVEMODE_PSCR)) /* setpoints inactive in PSCR mode */
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
94 {
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
95 setpointCbar = stateUsedWrite->diveSettings.setpoint[line].setpoint_cbar;
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
96 stateUsedWrite->diveSettings.CCR_Mode = CCRMODE_FixedSetpoint;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
97
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
98 // BetterSetpoint warning only once
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
99 if(actualBetterSetpointId() == line)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
100 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
101 uint8_t depth;
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
102 depth = stateUsedWrite->diveSettings.setpoint[line].depth_meter;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
103 // BetterSetpoint warning only once -> clear active
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
104 for(int i=0; i<=NUM_GASES; i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
105 {
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
106 stateUsedWrite->diveSettings.setpoint[i].note.ub.first = 0;
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
107 if(stateUsedWrite->diveSettings.setpoint[i].depth_meter <= depth)
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
108 stateUsedWrite->diveSettings.setpoint[i].note.ub.active = 0;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
109 }
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
110 stateUsedWrite->diveSettings.setpoint[line].note.ub.first = 1;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
111 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
112 }
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
113 else /* menu item not pointing to setpoint selection => use sensor or ppo2 simulation */
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
114 {
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
115 if((stateUsedWrite->diveSettings.diveMode == DIVEMODE_PSCR) && (line == 2))
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
116 {
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
117 stateUsedWrite->diveSettings.CCR_Mode = CCRMODE_Simulation;
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
118 }
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
119 else /* => use sensor */
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
120 {
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
121 if(stateUsedWrite->diveSettings.CCR_Mode != CCRMODE_Sensors)
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
122 {
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
123 /* setpoint_cbar will be written by updateSetpointStateUsed() in main.c loop */
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
124 setpointCbar = 255;
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
125 stateUsedWrite->diveSettings.CCR_Mode = CCRMODE_Sensors;
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
126 }
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
127 else
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
128 {
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
129 useSensorSubMenu = 1;
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
130 }
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
131 }
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
132 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
133
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
134 setActualGas_DM(&stateUsedWrite->lifeData,actualGasID,setpointCbar);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
135
773
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
136 checkSwitchToLoop();
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
137
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
138 clear_warning_fallback();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
139
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
140 if(!useSensorSubMenu)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
141 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
142 exitMenuEdit_to_Home();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
143 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
144 else // entire sub menu during dive to select sensors active
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
145 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
146 set_globalState_Menu_Line(line);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
147 resetMenuEdit(CLUT_MenuPageGasSP);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
148
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
149 text[0] = '\001';
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
150 text[1] = TXT_o2Sensors;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
151 text[2] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
152 write_topline(text);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
153
638
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
154 if(stateUsedWrite->diveSettings.ppo2sensors_deactivated & 1)
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
155 {
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
156 snprintf (text,20,"Sensor 1");
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
157 sensorActive[0] = 0;
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
158 }
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
159 else
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
160 {
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
161 snprintf (text,20,"Sensor 1 (%01.2f)", stateUsed->lifeData.ppO2Sensor_bar[0] );
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
162 sensorActive[0] = 1;
638
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
163 }
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
164 write_label_var( 96, 600, ME_Y_LINE1, &FontT48, text);
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
165 if(stateUsedWrite->diveSettings.ppo2sensors_deactivated & 2)
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
166 {
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
167 snprintf (text,20,"Sensor 2");
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
168 sensorActive[1] = 0;
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
169 }
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
170 else
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
171 {
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
172 snprintf (text,20,"Sensor 2 (%01.2f)", stateUsed->lifeData.ppO2Sensor_bar[1] );
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
173 sensorActive[1] = 1;
638
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
174 }
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
175 write_label_var( 96, 600, ME_Y_LINE2, &FontT48, text);
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
176 if(stateUsedWrite->diveSettings.ppo2sensors_deactivated & 4)
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
177 {
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
178 snprintf (text,20,"Sensor 3");
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
179 sensorActive[2] = 0;
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
180 }
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
181 else
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
182 {
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
183 snprintf (text,20,"Sensor 3 (%01.2f)", stateUsed->lifeData.ppO2Sensor_bar[2] );
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
184 sensorActive[2] = 1;
638
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
185 }
4532953ac1a0 Added last measured PPO2 value to sensor selection dialog:
Ideenmodellierer
parents: 288
diff changeset
186 write_label_var( 96, 600, ME_Y_LINE3, &FontT48, text);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
187
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
188 write_field_on_off(StMSP_Sensor1, 30, 95, ME_Y_LINE1, &FontT48, "", sensorActive[0]);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
189 write_field_on_off(StMSP_Sensor2, 30, 95, ME_Y_LINE2, &FontT48, "", sensorActive[1]);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
190 write_field_on_off(StMSP_Sensor3, 30, 95, ME_Y_LINE3, &FontT48, "", sensorActive[2]);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
191
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
192 setEvent(StMSP_Sensor1, (uint32_t)OnAction_SP_DM_Sensor1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
193 setEvent(StMSP_Sensor2, (uint32_t)OnAction_SP_DM_Sensor2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
194 setEvent(StMSP_Sensor3, (uint32_t)OnAction_SP_DM_Sensor3);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
195 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
196 return;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
197 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
198 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
199 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
200 /* surface mode */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
201 uint8_t spId, setpoint_cbar, sp_high, depthDeco, first;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
202 // uint8_t active,
166
255eedad4155 cleanup: get rid of some compile warnings
Jan Mulder <jlmulder@xs4all.nl>
parents: 130
diff changeset
203 char text[70];
255eedad4155 cleanup: get rid of some compile warnings
Jan Mulder <jlmulder@xs4all.nl>
parents: 130
diff changeset
204 uint8_t textPointer;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
205 uint16_t y_line;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
206
650
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
207 if(line < 6)
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
208 {
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
209 set_globalState_Menu_Line(line);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
210
650
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
211 resetMenuEdit(CLUT_MenuPageGasSP);
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
212
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
213 spId = line;
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
214 editSetpointPage.spID = spId;
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
215 SSettings *data = settingsGetPointer();
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
216 editSetpointPage.pSetpointLine = data->setpoint;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
217
650
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
218 setpoint_cbar = editSetpointPage.pSetpointLine[spId].setpoint_cbar;
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
219 depthDeco = editSetpointPage.pSetpointLine[spId].depth_meter;
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
220 //active = editSetpointPage.pSetpointLine[spId].note.ub.active;
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
221 first = editSetpointPage.pSetpointLine[spId].note.ub.first;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
222
650
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
223 sp_high = setpoint_cbar / 100;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
224
650
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
225 strcpy(text, "\001" "Setpoint #0 X");
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
226 text[11] += spId;
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
227 text[13] = TXT_Setpoint_Edit;
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
228 write_topline(text);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
229
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
230
650
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
231 y_line = ME_Y_LINE_BASE + (line * ME_Y_LINE_STEP);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
232
650
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
233 textPointer = 0;
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
234 text[textPointer++] = 'S';
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
235 text[textPointer++] = 'P';
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
236 text[textPointer++] = '0' + spId;
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
237 text[textPointer++] = ' ';
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
238 text[textPointer++] = ' ';
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
239
650
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
240 if(first == 0)
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
241 strcpy(&text[textPointer++],"\177");
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
242
650
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
243 textPointer += snprintf(&text[textPointer], 60,\
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
244 "* "
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
245 " "
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
246 "\016\016"
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
247 " bar"
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
248 "\017"
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
249 "\034"
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
250 " "
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
251 "\016\016"
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
252 " "
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
253 "\017"
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
254 " "
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
255 "\016\016"
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
256 "meter"
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
257 "\017"
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
258 "\035"
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
259 "\n\r"
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
260 );
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
261 write_label_var( 20, 800, y_line, &FontT48, text);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
262
650
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
263 write_field_udigit(StMSP_ppo2_setting, 160, 800, y_line, &FontT48, "#.## ###", (uint32_t)sp_high, (uint32_t)(setpoint_cbar - (100 * sp_high)), depthDeco, 0);
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
264 setEvent(StMSP_ppo2_setting, (uint32_t)OnAction_SP_Setpoint);
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
265 startEdit();
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
266 }
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
267 else
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
268 {
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
269 SSettings *pSettings = settingsGetPointer();
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
270
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
271 if(pSettings->autoSetpoint == 0)
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
272 {
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
273 pSettings->autoSetpoint = 1;
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
274 }
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
275 else
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
276 {
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
277 pSettings->autoSetpoint = 0;
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
278 }
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
279 exitMenuEdit_to_Menu_with_Menu_Update_do_not_write_settings_for_this_only();
5f0d3dce5ef4 Automatik setpoint change:
Ideenmodellierer
parents: 638
diff changeset
280 }
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
281 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
282 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
283
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
284 static uint8_t OnAction_SP_Setpoint(uint32_t editId, uint8_t blockNumber, uint8_t digitNumber, uint8_t digitContent, uint8_t action)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
285 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
286 int8_t digitContentNew;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
287 uint32_t new_integer_part, new_fractional_part, new_cbar, newDepth;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
288
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
289 if(action == ACTION_BUTTON_ENTER)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
290 return digitContent;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
291
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
292 if(action == ACTION_BUTTON_ENTER_FINAL)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
293 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
294 evaluateNewString(editId, &new_integer_part, &new_fractional_part, &newDepth, 0);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
295
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
296 new_cbar = (new_integer_part * 100) + new_fractional_part;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
297
652
f6212495f34f Allow setpoint starting at 0.4 ppO2:
Ideenmodellierer
parents: 650
diff changeset
298 if(new_cbar < MIN_PPO2_SP_CBAR)
f6212495f34f Allow setpoint starting at 0.4 ppO2:
Ideenmodellierer
parents: 650
diff changeset
299 new_cbar = MIN_PPO2_SP_CBAR;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
300
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
301 if(new_cbar > 160)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
302 new_cbar = 160;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
303
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
304 new_integer_part = new_cbar / 100;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
305 new_fractional_part = new_cbar - (new_integer_part * 100);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
306
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
307 editSetpointPage.pSetpointLine[editSetpointPage.spID].setpoint_cbar = new_cbar;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
308
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
309 if(newDepth > 255)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
310 newDepth = 255;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
311
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
312 editSetpointPage.pSetpointLine[editSetpointPage.spID].depth_meter = newDepth;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
313
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
314 return UPDATE_AND_EXIT_TO_MENU;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
315 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
316
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
317 if(action == ACTION_BUTTON_NEXT)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
318 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
319 digitContentNew = digitContent + 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
320 if((blockNumber == 0) && (digitContentNew > '1'))
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
321 digitContentNew = '0';
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
322 if(digitContentNew > '9')
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
323 digitContentNew = '0';
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
324 return digitContentNew;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
325 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
326
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
327 if(action == ACTION_BUTTON_BACK)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
328 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
329 digitContentNew = digitContent - 1;
213
d539ed9aa5b8 Bugfix, trivial: do not visit 9 on first digit for setpoint
Jan Mulder <jlmulder@xs4all.nl>
parents: 166
diff changeset
330 if((blockNumber == 0) && (digitContentNew < '0'))
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
331 digitContentNew = '1';
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
332 if(digitContentNew < '0')
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
333 digitContentNew = '9';
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
334 return digitContentNew;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
335 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
336
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
337 return EXIT_TO_MENU;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
338 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
339
773
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
340 void openEdit_DiveSelectBetterSetpoint(bool useLastDiluent)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
341 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
342 uint8_t spId;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
343 uint8_t depth;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
344
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
345 if(stateUsedWrite->diveSettings.diveMode != DIVEMODE_PSCR) /* no setpoints in PSCR mode */
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
346 {
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
347 spId = actualBetterSetpointId();
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
348
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
349 depth = stateUsedWrite->diveSettings.setpoint[spId].depth_meter;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
350
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
351 // BetterSetpoint warning only once -> clear active
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
352 for(int i=0; i<=NUM_GASES; i++)
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
353 {
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
354 stateUsedWrite->diveSettings.setpoint[i].note.ub.first = 0;
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
355 if(stateUsedWrite->diveSettings.setpoint[i].depth_meter <= depth)
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
356 stateUsedWrite->diveSettings.setpoint[i].note.ub.active = 0;
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
357 }
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
358
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
359 // new setpoint
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
360 stateUsedWrite->diveSettings.setpoint[spId].note.ub.first = 1;
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
361
773
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
362 uint8_t gasId;
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
363 if (useLastDiluent) {
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
364 gasId = stateUsed->lifeData.lastDiluent_GasIdInSettings;
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
365 } else {
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
366 gasId = stateUsed->lifeData.actualGas.GasIdInSettings;
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
367 }
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
368
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
369 // change in lifeData
773
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
370 setActualGas_DM(&stateUsedWrite->lifeData, gasId, stateUsedWrite->diveSettings.setpoint[spId].setpoint_cbar);
662
1b995079c045 PSCR Mode
heinrichs weikamp
parents: 652
diff changeset
371 }
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
372 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
373
773
2c243233c999 Menu shortcut for bailout / return to circuit when diving in CCR mode (mikeller)
heinrichsweikamp
parents: 662
diff changeset
374
775
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
375 bool findSwitchToSetpoint(void)
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
376 {
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
377 uint8_t setpointLowId = getSetpointLowId();
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
378 uint8_t setpointHighId = getSetpointHighId();
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
379 uint8_t setpointCurrentCbar = stateUsed->lifeData.actualGas.setPoint_cbar;
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
380 if (setpointLowId && setpointCurrentCbar != stateUsed->diveSettings.setpoint[setpointLowId].setpoint_cbar && ((!setpointHighId || setpointCurrentCbar == stateUsed->diveSettings.setpoint[setpointHighId].setpoint_cbar) || stateUsed->lifeData.depth_meter < stateUsed->diveSettings.setpoint[setpointLowId].depth_meter)) {
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
381 switchToSetpointCbar = stateUsed->diveSettings.setpoint[setpointLowId].setpoint_cbar;
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
382 } else if (setpointHighId && setpointCurrentCbar != stateUsed->diveSettings.setpoint[setpointHighId].setpoint_cbar) {
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
383 switchToSetpointCbar = stateUsed->diveSettings.setpoint[setpointHighId].setpoint_cbar;
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
384 } else {
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
385 // We don't have a setpoint to switch to
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
386 switchToSetpointCbar = 0;
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
387
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
388 return false;
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
389 }
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
390
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
391 return true;
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
392 }
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
393
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
394
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
395 uint8_t getSwitchToSetpointCbar(void)
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
396 {
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
397 return switchToSetpointCbar;
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
398 }
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
399
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
400
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
401 void checkSwitchSetpoint(void)
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
402 {
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
403 if (switchToSetpointCbar) {
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
404 setActualGas_DM(&stateUsedWrite->lifeData, stateUsed->lifeData.lastDiluent_GasIdInSettings, switchToSetpointCbar);
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
405 }
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
406 }
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
407
46c6d2380d4e Add a shortcuts to change the setpoint to the loop to the 'normal' display when diving. It is only shown when diving in CCR mode and on the loop.
heinrichsweikamp
parents: 773
diff changeset
408
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
409 static uint8_t OnAction_SP_DM_Sensor1 (uint32_t editId, uint8_t blockNumber, uint8_t digitNumber, uint8_t digitContent, uint8_t action)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
410 {
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
411 if(stateUsedWrite->diveSettings.ppo2sensors_deactivated & 1)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
412 {
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
413 stateUsedWrite->diveSettings.ppo2sensors_deactivated &= 4+2;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
414 tMenuEdit_set_on_off(editId, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
415 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
416 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
417 {
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
418 stateUsedWrite->diveSettings.ppo2sensors_deactivated |= 1;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
419 tMenuEdit_set_on_off(editId, 0);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
420 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
421
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
422 return UNSPECIFIC_RETURN;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
423 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
424
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
425 static uint8_t OnAction_SP_DM_Sensor2 (uint32_t editId, uint8_t blockNumber, uint8_t digitNumber, uint8_t digitContent, uint8_t action)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
426 {
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
427 if(stateUsedWrite->diveSettings.ppo2sensors_deactivated & 2)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
428 {
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
429 stateUsedWrite->diveSettings.ppo2sensors_deactivated &= 4+1;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
430 tMenuEdit_set_on_off(editId, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
431 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
432 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
433 {
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
434 stateUsedWrite->diveSettings.ppo2sensors_deactivated |= 2;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
435 tMenuEdit_set_on_off(editId, 0);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
436 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
437
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
438 return UNSPECIFIC_RETURN;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
439 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
440
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
441 static uint8_t OnAction_SP_DM_Sensor3 (uint32_t editId, uint8_t blockNumber, uint8_t digitNumber, uint8_t digitContent, uint8_t action)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
442 {
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
443 if(stateUsedWrite->diveSettings.ppo2sensors_deactivated & 4)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
444 {
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
445 stateUsedWrite->diveSettings.ppo2sensors_deactivated &= 2+1;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
446 tMenuEdit_set_on_off(editId, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
447 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
448 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
449 {
288
ba229a012ac7 cleanup: no useless checks for simulator state
Jan Mulder <jlmulder@xs4all.nl>
parents: 213
diff changeset
450 stateUsedWrite->diveSettings.ppo2sensors_deactivated |= 4;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
451 tMenuEdit_set_on_off(editId, 0);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
452 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
453 return UNSPECIFIC_RETURN;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
454 }