Mercurial > public > ostc4
annotate Common/Inc/data_exchange.h @ 1072:8b97003dbb60 Icon_Integration
Improve CO2 calibration:
The most common calibration environment for diving is fresh air => ~400ppm co2. Some sensors do not have this setting as default => Calibration to 0ppm. To make sure that a proper calibration reference is set the common used value of 400ppm is not set before starting the calibration. For implementation new states were added to the co2 protocol state maschine. In addition the rx processor is now able to handle two responds parameters.
| author | Ideenmodellierer |
|---|---|
| date | Thu, 19 Feb 2026 21:37:34 +0100 |
| parents | 4499227a2db8 |
| children |
| rev | line source |
|---|---|
| 38 | 1 /////////////////////////////////////////////////////////////////////////////// |
| 2 /// -*- coding: UTF-8 -*- | |
| 3 /// | |
| 4 /// \file Common/Inc/data_exchange.h | |
| 5 /// \brief Data exchange between RTE and Discovery processors. | |
| 6 /// \author Heinrichs Weikamp | |
| 7 /// \date 2018 | |
| 8 /// | |
| 9 /// $Id$ | |
| 10 /////////////////////////////////////////////////////////////////////////////// | |
| 11 /// \par Copyright (c) 2014-2018 Heinrichs Weikamp gmbh | |
| 12 /// | |
| 13 /// This program is free software: you can redistribute it and/or modify | |
| 14 /// it under the terms of the GNU General Public License as published by | |
| 15 /// the Free Software Foundation, either version 3 of the License, or | |
| 16 /// (at your option) any later version. | |
| 17 /// | |
| 18 /// This program is distributed in the hope that it will be useful, | |
| 19 /// but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 20 /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 21 /// GNU General Public License for more details. | |
| 22 /// | |
| 23 /// You should have received a copy of the GNU General Public License | |
| 24 /// along with this program. If not, see <http://www.gnu.org/licenses/>. | |
| 25 ////////////////////////////////////////////////////////////////////////////// | |
| 26 | |
| 27 #ifndef DATA_EXCHANGE_H | |
| 28 #define DATA_EXCHANGE_H | |
| 29 | |
| 30 #include "data_central.h" | |
| 31 #include "settings.h" | |
| 32 #include "stm32f4xx_hal.h" | |
| 33 | |
| 691 | 34 /* Command definitions for control of external interface */ |
| 35 /* 1st nibble binary on/off states */ | |
|
957
3420e3ba698d
External sensor commands: Add sensor ID to command:
Ideenmodellierer
parents:
955
diff
changeset
|
36 /* 2nd nibble target sensor ID (if sensor command is active) */ |
|
3420e3ba698d
External sensor commands: Add sensor ID to command:
Ideenmodellierer
parents:
955
diff
changeset
|
37 /* 3rd nibble sensor commands */ |
|
3420e3ba698d
External sensor commands: Add sensor ID to command:
Ideenmodellierer
parents:
955
diff
changeset
|
38 /* 4th nibble control channel */ |
| 691 | 39 #define EXT_INTERFACE_33V_ON (0x8000u) /* Bit set to enable 3.3V power interface */ |
| 40 #define EXT_INTERFACE_ADC_ON (0x4000u) /* Bit set to enable ADC conversion */ | |
| 951 | 41 #define EXT_INTERFACE_BUZZER_ON (0x2000u) /* Bit set to enable the buzzer */ |
|
702
6d7c812fc173
Added digital o2 sensor to settings and data exchange:
Ideenmodellierer
parents:
691
diff
changeset
|
42 |
|
728
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
43 /* Command subset */ |
|
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
44 #define EXT_INTERFACE_AUTODETECT (0x0001u) /* Start auto detection of connected sensors */ |
|
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
45 #define EXT_INTERFACE_COPY_SENSORMAP (0x0002u) /* Use the sensor map provided by master for internal operations */ |
|
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
46 #define EXT_INTERFACE_CO2_CALIB (0x0010u) /* Request calibration of CO2Sensor */ |
|
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
47 #define EXT_INTERFACE_O2_INDICATE (0x0020u) /* Request LED to blink*/ |
|
702
6d7c812fc173
Added digital o2 sensor to settings and data exchange:
Ideenmodellierer
parents:
691
diff
changeset
|
48 |
| 691 | 49 #define DATA_BUFFER_ADC (0x01u) |
| 50 #define DATA_BUFFER_CO2 (0x02u) | |
| 662 | 51 |
|
714
045ff7800501
Added customizable data area for specific sensor data:
Ideenmodellierer
parents:
702
diff
changeset
|
52 #define EXTIF_SENSOR_INFO_SIZE (32u) /* size of data array reserved for extended sensor data from external interface */ |
|
045ff7800501
Added customizable data area for specific sensor data:
Ideenmodellierer
parents:
702
diff
changeset
|
53 |
| 756 | 54 #define CO2_WARNING_LEVEL_PPM (2000u) /* Early warning to indicate unexpected high co2 concentration (yellow) */ |
| 55 #define CO2_ALARM_LEVEL_PPM (5000u) /* starting by this level CO2 has a negative impact on health (long exposure) */ | |
| 56 | |
| 949 | 57 #define GNSS_ALIVE_STATE_ALIVE (0x01u) /* Communication to module active */ |
| 58 #define GNSS_ALIVE_STATE_TIME (0x02u) /* Time information valid */ | |
| 955 | 59 #define GNSS_ALIVE_BACKUP_POS (0x04u) /* Backup position not older than x hours */ |
| 949 | 60 |
|
1070
4499227a2db8
Added compile option for o2/diluent pressure display:
Ideenmodellierer
parents:
989
diff
changeset
|
61 #define PRESSURE_BOTTLE_CNT (0x2u) /* Number of bottle information (max 255 bar) */ |
|
4499227a2db8
Added compile option for o2/diluent pressure display:
Ideenmodellierer
parents:
989
diff
changeset
|
62 |
| 38 | 63 enum MODE |
| 64 { | |
| 65 MODE_SURFACE = 0, | |
| 66 MODE_DIVE = 1, | |
| 67 MODE_CALIB = 2, | |
| 68 MODE_SLEEP = 3, | |
|
728
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
69 MODE_SHUTDOWN = 4, |
| 38 | 70 MODE_ENDDIVE = 5, |
|
728
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
71 MODE_BOOT = 6, |
| 38 | 72 MODE_CHARGESTART = 7, |
|
728
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
73 MODE_TEST = 8, |
| 38 | 74 MODE_POWERUP = 9, |
| 75 }; | |
| 76 | |
| 77 enum ACCIDENT_BITS | |
| 78 { | |
|
728
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
79 ACCIDENT_DECOSTOP = 0x01, |
|
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
80 ACCIDENT_CNS = 0x02, |
| 38 | 81 ACCIDENT_CNSLVL2 = 0x02 + 0x04, |
| 82 ACCIDENT_SPARE2 = 0x08, | |
| 83 ACCIDENT_SPARE3 = 0x10, | |
| 84 ACCIDENT_SPARE4 = 0x20, | |
| 85 ACCIDENT_SPARE5 = 0x40, | |
| 86 ACCIDENT_SPARE6 = 0x80 | |
| 87 }; | |
| 88 | |
|
728
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
89 |
| 38 | 90 typedef struct{ |
| 91 uint8_t button:1; | |
| 92 uint8_t date:1; | |
| 93 uint8_t time:1; | |
| 94 uint8_t clearDeco:1; | |
| 95 uint8_t compass:1; | |
| 96 uint8_t devicedata:1; | |
| 97 uint8_t batterygauge:1; | |
| 98 uint8_t accident:1; | |
| 99 } confirmbit8_t; | |
| 100 | |
|
555
573a2bc796c8
Added HW_Info to Discovery <=> RTE data exchange:
Ideenmodellierer
parents:
51
diff
changeset
|
101 typedef struct{ |
| 559 | 102 uint8_t checkCompass:1; |
| 103 uint8_t checkADC:1; | |
| 104 uint8_t reserve:5; | |
|
555
573a2bc796c8
Added HW_Info to Discovery <=> RTE data exchange:
Ideenmodellierer
parents:
51
diff
changeset
|
105 uint8_t extADC:1; |
|
573a2bc796c8
Added HW_Info to Discovery <=> RTE data exchange:
Ideenmodellierer
parents:
51
diff
changeset
|
106 uint8_t compass:8; |
|
573a2bc796c8
Added HW_Info to Discovery <=> RTE data exchange:
Ideenmodellierer
parents:
51
diff
changeset
|
107 } hw_Info_t; |
|
573a2bc796c8
Added HW_Info to Discovery <=> RTE data exchange:
Ideenmodellierer
parents:
51
diff
changeset
|
108 |
|
573a2bc796c8
Added HW_Info to Discovery <=> RTE data exchange:
Ideenmodellierer
parents:
51
diff
changeset
|
109 |
| 38 | 110 #define CRBUTTON (0x01) |
| 111 #define CRDATE (0x02) | |
| 112 #define CRTIME (0x04) | |
| 662 | 113 #define CRCLEARDECO (0x08) |
| 114 #define CRCOMPASS (0x10) | |
| 115 #define CRDEVICEDATA (0x20) | |
| 116 #define CRBATTERY (0x40) | |
| 117 #define CRACCIDENT (0x80) | |
| 38 | 118 |
| 119 typedef union{ | |
| 120 confirmbit8_t ub; | |
| 121 uint8_t uw; | |
| 122 } confirmbit8_Type; | |
| 123 | |
| 124 typedef struct | |
| 125 { | |
| 126 uint8_t checkCode[4]; | |
| 127 | |
| 128 } SDataExchangeHeader; | |
| 129 | |
| 130 typedef struct | |
| 131 { | |
| 132 uint8_t checkCode[4]; | |
| 133 | |
| 134 } SDataExchangeFooter; | |
| 135 | |
| 136 typedef struct | |
| 137 { | |
| 138 SDataExchangeHeader header; | |
| 139 SLifeData lifeData; | |
| 140 } SDataExchangeMasterToSlave; | |
| 141 | |
| 142 typedef struct | |
| 143 { | |
|
714
045ff7800501
Added customizable data area for specific sensor data:
Ideenmodellierer
parents:
702
diff
changeset
|
144 int32_t temperature; |
|
045ff7800501
Added customizable data area for specific sensor data:
Ideenmodellierer
parents:
702
diff
changeset
|
145 uint32_t status; |
|
045ff7800501
Added customizable data area for specific sensor data:
Ideenmodellierer
parents:
702
diff
changeset
|
146 uint64_t sensorId; |
| 723 | 147 int32_t intensity; |
| 148 int32_t ambient; | |
| 149 int32_t pressure; | |
| 150 int32_t humidity; | |
|
714
045ff7800501
Added customizable data area for specific sensor data:
Ideenmodellierer
parents:
702
diff
changeset
|
151 } SSensorDataDiveO2; |
|
045ff7800501
Added customizable data area for specific sensor data:
Ideenmodellierer
parents:
702
diff
changeset
|
152 |
|
045ff7800501
Added customizable data area for specific sensor data:
Ideenmodellierer
parents:
702
diff
changeset
|
153 typedef struct |
|
045ff7800501
Added customizable data area for specific sensor data:
Ideenmodellierer
parents:
702
diff
changeset
|
154 { |
| 38 | 155 //pressure |
| 156 float temperature; | |
| 157 float pressure_mbar; | |
| 158 float surface_mbar; | |
| 159 float ascent_rate_meter_per_min; | |
| 160 //toxic | |
| 161 float otu; | |
| 162 float cns; | |
| 163 uint16_t desaturation_time_minutes; | |
| 164 uint16_t no_fly_time_minutes; | |
| 165 //tisssue | |
| 166 float tissue_nitrogen_bar[16]; | |
| 167 float tissue_helium_bar[16]; | |
| 168 //maxcrushingpressure | |
| 169 float max_crushing_pressure_he[16]; | |
| 170 float max_crushing_pressure_n2[16]; | |
| 171 float adjusted_critical_radius_he[16]; | |
| 172 float adjusted_critical_radius_n2[16]; | |
| 173 // Compass | |
| 174 float compass_heading; | |
| 175 float compass_roll; | |
| 176 float compass_pitch; | |
| 177 int16_t compass_DX_f; | |
| 178 int16_t compass_DY_f; | |
| 179 int16_t compass_DZ_f; | |
| 180 //time | |
| 181 uint16_t counterSecondsShallowDepth; | |
| 182 uint32_t localtime_rtc_tr; | |
| 183 uint32_t localtime_rtc_dr; | |
| 184 uint32_t divetime_seconds; | |
| 185 uint32_t surfacetime_seconds; | |
| 186 uint32_t dive_time_seconds_without_surface_time; | |
| 187 //battery /* take care of uint8_t count to be in multiplies of 4 */ | |
| 188 float battery_voltage; | |
| 189 float battery_charge; | |
| 190 //ambient light | |
| 191 uint16_t ambient_light_level; | |
|
555
573a2bc796c8
Added HW_Info to Discovery <=> RTE data exchange:
Ideenmodellierer
parents:
51
diff
changeset
|
192 uint16_t SPARE_ALIGN32; |
|
573a2bc796c8
Added HW_Info to Discovery <=> RTE data exchange:
Ideenmodellierer
parents:
51
diff
changeset
|
193 float extADC_voltage[3]; |
| 662 | 194 uint16_t CO2_ppm; |
| 195 uint16_t CO2_signalStrength; | |
| 196 uint16_t externalInterface_CmdAnswer; | |
|
714
045ff7800501
Added customizable data area for specific sensor data:
Ideenmodellierer
parents:
702
diff
changeset
|
197 uint8_t alignmentdummy; |
|
045ff7800501
Added customizable data area for specific sensor data:
Ideenmodellierer
parents:
702
diff
changeset
|
198 uint8_t externalInterface_SensorID; /* Used to identify how to read the sensor data array */ |
|
045ff7800501
Added customizable data area for specific sensor data:
Ideenmodellierer
parents:
702
diff
changeset
|
199 uint8_t sensor_data[EXTIF_SENSOR_INFO_SIZE]; /* sensor specific data array. Content may vary from sensor type to sensor type */ |
|
728
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
200 uint8_t sensor_map[EXT_INTERFACE_SENSOR_CNT]; |
|
1070
4499227a2db8
Added compile option for o2/diluent pressure display:
Ideenmodellierer
parents:
989
diff
changeset
|
201 uint8_t pressure_bottle[PRESSURE_BOTTLE_CNT]; |
|
4499227a2db8
Added compile option for o2/diluent pressure display:
Ideenmodellierer
parents:
989
diff
changeset
|
202 uint8_t SPARE_OldWireless[3]; /* 64 - 12 for extADC - 6 for CO2 - 34 for sensor (+dummmy) - sensor map - pressure*/ |
| 38 | 203 // PIC data |
|
763
aa6006975e76
increase HAL_Delay to 10ms for cold-start-button reset
heinrichsweikamp
parents:
756
diff
changeset
|
204 uint8_t button_setting[4]; /* see dependency to SlaveData->buttonPICdata */ |
| 38 | 205 uint8_t SPARE1; |
| 206 //debug | |
| 207 uint32_t pressure_uTick; | |
| 208 uint32_t compass_uTick; | |
| 931 | 209 SGnssInfo gnssInfo; |
| 38 | 210 |
| 211 } SExchangeData; | |
| 212 | |
| 213 typedef struct | |
| 214 { | |
| 215 uint8_t VPMconservatism; | |
| 216 SGas actualGas; | |
| 217 | |
| 218 int8_t offsetPressureSensor_mbar; | |
| 219 int8_t offsetTemperatureSensor_centiDegree; | |
| 220 | |
| 662 | 221 uint16_t externalInterface_Cmd; |
| 38 | 222 |
|
728
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
223 uint8_t externalInterface_SensorMap[EXT_INTERFACE_SENSOR_CNT]; |
|
5143e927219f
Added sensor map to Firmware <=> RTE inferface:
Ideenmodellierer
parents:
723
diff
changeset
|
224 |
| 38 | 225 float UNUSED1[16-1];//VPM_adjusted_critical_radius_he[16]; |
| 226 float UNUSED2[16];//VPM_adjusted_critical_radius_n2[16]; | |
| 227 float UNUSED3[16];//VPM_adjusted_crushing_pressure_he[16]; | |
| 228 float UNUSED4[16];//VPM_adjusted_crushing_pressure_n2[16]; | |
| 229 float UNUSED5[16];//VPM_initial_allowable_gradient_he[16]; | |
| 230 float UNUSED6[16];//VPM_initial_allowable_gradient_n2[16]; | |
| 231 float UNUSED7[16];//VPM_max_actual_gradient[16]; | |
| 232 | |
| 233 RTC_TimeTypeDef newTime; | |
| 234 RTC_DateTypeDef newDate; | |
| 235 | |
| 236 float ambient_pressure_mbar_ceiling; | |
| 237 float descend_rate_bar_per_minute; | |
| 238 float ascend_rate_bar_per_minute; | |
| 239 | |
| 240 uint16_t timeoutDiveReachedZeroDepth; | |
| 241 uint16_t divetimeToCreateLogbook; | |
| 242 | |
| 243 uint8_t buttonResponsiveness[4]; | |
| 244 | |
| 245 SDevice DeviceData; | |
| 246 | |
| 247 float newBatteryGaugePercentageFloat; | |
| 248 | |
| 249 } SReceiveData; | |
| 250 | |
| 251 | |
| 252 typedef struct | |
| 253 { | |
| 254 SDataExchangeHeader header; | |
| 255 | |
| 256 uint8_t mode; | |
| 257 uint8_t power_on_reset; | |
| 258 uint8_t RTE_VERSION_high; | |
| 259 uint8_t RTE_VERSION_low; | |
| 260 | |
| 261 uint8_t chargeStatus; | |
| 262 uint8_t boolPICdata; | |
| 263 confirmbit8_Type confirmRequest; // confirmbit8_Type | |
| 691 | 264 uint8_t boolADCO2Data; |
| 38 | 265 |
| 266 uint8_t boolPressureData; | |
| 267 uint8_t boolCompassData; | |
| 268 uint8_t boolTisssueData; | |
| 269 uint8_t boolCrushingData; | |
| 270 | |
| 271 uint8_t boolToxicData; | |
| 272 uint8_t boolTimeData; | |
| 273 uint8_t boolBatteryData; | |
| 274 uint8_t boolAmbientLightData; | |
| 275 | |
| 276 uint8_t accidentFlags; | |
| 277 uint8_t sensorErrors; | |
| 278 uint8_t spare2; | |
| 279 uint8_t spare3; | |
| 280 | |
| 281 SExchangeData data[2]; | |
| 282 SDataExchangeFooter footer; | |
| 283 uint8_t CRC_feature_by_SPI[4]; | |
| 284 } SDataExchangeSlaveToMaster; | |
| 285 | |
| 286 | |
| 287 typedef struct | |
| 288 { | |
| 289 SDataExchangeHeader header; | |
| 290 | |
| 291 uint8_t mode; | |
| 292 uint8_t power_on_reset; | |
| 293 uint8_t RTE_VERSION_high; | |
| 294 uint8_t RTE_VERSION_low; | |
| 295 | |
| 296 uint8_t chargeStatus; | |
|
555
573a2bc796c8
Added HW_Info to Discovery <=> RTE data exchange:
Ideenmodellierer
parents:
51
diff
changeset
|
297 hw_Info_t hw_Info; |
| 38 | 298 uint8_t spare1; |
| 299 | |
| 300 uint8_t boolDeviceData; | |
| 301 uint8_t boolVpmRepetitiveDataValid; | |
| 302 uint8_t bool3; | |
| 303 uint8_t bool4; | |
| 304 | |
| 305 uint8_t spare1_1; | |
| 306 uint8_t spare1_2; | |
| 307 uint8_t spare1_3; | |
| 308 uint8_t spare1_4; | |
| 309 | |
| 310 uint8_t spare2_1; | |
| 311 uint8_t spare2_2; | |
| 312 uint8_t spare2_3; | |
| 313 uint8_t spare2_4; | |
| 314 | |
| 315 SDevice DeviceData[2]; | |
| 316 SVpmRepetitiveData VpmRepetitiveData; | |
| 317 | |
| 318 uint8_t arraySizeOfMinimumSExChangeDate[(2 * sizeof(SExchangeData)) - ((2 * sizeof(SDevice)) + sizeof(SVpmRepetitiveData))]; | |
| 319 SDataExchangeFooter footer; | |
| 320 uint8_t CRC_feature_by_SPI[4]; | |
| 321 } SDataExchangeSlaveToMasterDeviceData; | |
| 322 | |
| 323 | |
| 324 typedef struct | |
| 325 { | |
| 326 SDataExchangeHeader header; | |
| 327 | |
| 328 uint8_t mode; | |
| 329 uint8_t getDeviceDataNow; | |
| 330 uint8_t diveModeInfo; | |
| 331 uint8_t setEndDive; | |
| 332 | |
| 333 uint8_t bool4; | |
| 334 uint8_t setButtonSensitivityNow; | |
| 335 uint8_t setDateNow; | |
| 336 uint8_t setTimeNow; | |
| 337 | |
| 338 uint8_t calibrateCompassNow; | |
| 339 uint8_t clearDecoNow; | |
| 340 uint8_t setBatteryGaugeNow; | |
| 341 uint8_t bool9; | |
| 342 | |
| 343 uint8_t revisionHardware; | |
| 344 uint8_t revisionCRCx0x7A; | |
| 989 | 345 uint8_t displayVersion; |
| 38 | 346 uint8_t spare1_4; |
| 347 | |
| 348 uint8_t setAccidentFlag; | |
| 349 uint8_t spare2_1; | |
| 350 uint8_t spare2_2; | |
| 351 uint8_t spare2_3; | |
| 352 | |
| 353 SReceiveData data; | |
| 354 uint8_t arraySizeOfMinimumSExChangeDate[(2 * sizeof(SExchangeData)) - sizeof(SReceiveData)]; | |
| 355 SDataExchangeFooter footer; | |
| 356 uint8_t CRC_feature_by_SPI[4]; | |
| 357 } SDataReceiveFromMaster; | |
| 358 | |
| 359 | |
| 360 /* Size of Transmission buffer */ | |
| 361 #define EXCHANGE_BUFFERSIZE (sizeof(SDataExchangeSlaveToMaster) - 2) | |
| 362 #define EXCHANGE_BUFFERSIZE2 (sizeof(SDataReceiveFromMaster) - 2) | |
| 363 // header: 5 | |
| 364 // mode+bool: 5 | |
| 365 // data 552 ( 69 * float/4 * 2 ) | |
| 366 // footer: 4 | |
| 367 // ______________ | |
| 368 // SUM 566 | |
| 369 // CRC_feature does not count into BUFFERSIZE! | |
| 370 | |
| 371 //(COUNTOF(struct SDataExchangeSlaveToMaster) + 1) | |
| 372 | |
| 373 /* Exported macro ------------------------------------------------------------*/ | |
| 374 //#define COUNTOF(__BUFFER__) (sizeof(__BUFFER__) / sizeof(*(__BUFFER__))) | |
| 375 | |
| 376 #endif /* DATA_EXCHANGE_H */ | |
| 377 |
