annotate Discovery/Src/logbook.c @ 455:928a14568689 minor_improvments

Reactivated samples for bottle pressure information: I previous versions (and also in the upcommings) the bottle pressure informations are not added to the log information. However for alfatesting of a potential pressure measurement the function may now be reactivated by a compile switch Added the possibility to create dummy profiles based on the max depth, time and temperature values stored in the dive header: In case the sample information belonging to a dive is no longer available a dummy profile shall be provided to the consumers (infolog view as well as external read requests).
author ideenmodellierer
date Tue, 24 Mar 2020 22:12:08 +0100
parents ee1434824c3f
children 4bd01f48c285
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 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
3 * @copyright heinrichs weikamp
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
4 * @file logbook.c
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
5 * @author heinrichs weikamp gmbh and heinrichs weikamp gmbh
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
6 * @date 22-Apr-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
7 * @version V0.0.3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
8 * @since 03-Feb-2016
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
9 * @brief Everything about creating and evaluating the logbook
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
10 * without the flash part which is included in externLogbookFlash.c
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
11 * and the USB/Bluetooth part in tComm.c
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
12 * CHANGE V0.0.3 hw: ppO2 sensor values
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
13 * CHANGE V0.0.4 hw: fix event bytes according to hwos_interface.odt dated 160610 in bitbucket hwOS
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
14 * @bug
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
15 * @warning
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
16 @verbatim
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
17 ==============================================================================
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
18 ##### Header #####
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
19 ==============================================================================
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
20 [..] SLogbookHeader
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
21 The order has changed in comparsion to OSTC3 for perfect alignment
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
22 with 16bit and 32bit. The header is 256kB as well.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
23 DO NOT rearrange anything but add new data to a second page
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
24 beyond diveHeaderEnd. Use extraPagesWithData to indicate that there is
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
25 data available that was not available in the OSTC3 256KB
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
26 This data will be behind the diveHeaderEnd. DO NOT delete diveHeaderEnd.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
27
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
28 [..] SLogbookHeaderOSTC3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
29 is the format used by the OSTC3.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
30 logbook_getHeaderOSTC3() does the job using the global headers in logbook.c
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
31
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
32 [..] SSmallHeader
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
33 - is the format used by the OSTC3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
34
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
35 [..] Summary
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
36 The header format is not perfect and might be optimized prior to
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
37 releasing the diving computer. For now it is good to be compatible
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
38 with PC software available for checking the content of the logbook
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
39
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
40
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
41 @endverbatim
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
42 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
43 * @attention
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
44 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
45 * <h2><center>&copy; COPYRIGHT(c) 2014 heinrichs weikamp</center></h2>
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
46 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
47 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
48 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
49
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
50 /* Includes ------------------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
51 #include <stdint.h>
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
52 #include <string.h>
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
53 #include "logbook.h"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
54 //#include "test_vpm.h"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
55 #include "externLogbookFlash.h"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
56 #include "data_exchange.h"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
57 #include "decom.h"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
58 #include "tHome.h" // for tHome_findNextStop()
445
ee1434824c3f Removed duplicated definition:
ideenmodellierer
parents: 427
diff changeset
59 #include "settings.h"
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
60 #include "configuration.h"
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
61
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
62 /* Private types -------------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
63
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
64 #define LOGBOOK_VERSION (0x30)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
65 #define LOGBOOK_VERSION_OSTC3 (0x24)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
66
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
67 #define DEFAULT_SAMPLES (100) /* Number of sample data bytes in case of an broken header information */
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
68 #define DUMMY_SAMPLES (1000) /* Maximum number of samples profided by a dummy dive profile */
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
69
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
70 typedef struct /* don't forget to adjust void clear_divisor(void) */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
71 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
72 uint8_t temperature;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
73 uint8_t deco_ndl;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
74 uint8_t gradientFactor;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
75 uint8_t ppo2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
76 uint8_t decoplan;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
77 uint8_t cns;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
78 uint8_t tank;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
79 } SDivisor;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
80
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
81 /* Exported variables --------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
82
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
83 /* Private variables ---------------------------------------------------------*/
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
84 static SLogbookHeader gheader;
194
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
85 static SLogbookHeaderOSTC3 headerOSTC3;
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
86 static SLogbookHeaderOSTC3compact headerOSTC3compact;
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
87 static SSmallHeader smallHeader;
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
88 static SDivisor divisor;
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
89 static SDivisor divisorBackup;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
90
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
91 static SSmallHeader smallDummyHeader;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
92 static uint16_t dummyWriteIdx;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
93 static uint16_t dummyReadIdx;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
94 static uint8_t dummyMemoryBuffer[1000*4];
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
95
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
96
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
97 /* Private function prototypes -----------------------------------------------*/
194
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
98 static void clear_divisor(void);
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
99 static void logbook_SetAverageDepth(float average_depth_meter);
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
100 static void logbook_SetMinTemperature(float min_temperature_celsius);
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
101 static void logbook_SetMaxCNS(float max_cns_percentage);
270
2e58a4094770 feature, debug: make simulator write a logbook entry
Jan Mulder <jlmulder@xs4all.nl>
parents: 269
diff changeset
102 static void logbook_SetCompartmentDesaturation(const SDiveState * pStateReal);
194
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
103 static void logbook_SetLastStop(float last_stop_depth_bar);
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
104 static void logbook_writedata(void * data, int length_byte);
270
2e58a4094770 feature, debug: make simulator write a logbook entry
Jan Mulder <jlmulder@xs4all.nl>
parents: 269
diff changeset
105 static void logbook_UpdateHeader(const SDiveState * pStateReal);
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
106 static void logbook_createDummyProfile(uint16_t maxDepth, uint8_t lastDecostop_m, int16_t minTemp, uint16_t length, uint16_t* depth, int16_t* temperature);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
107
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
108 /* Exported functions --------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
109
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
110 void logbook_EndDive(void)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
111 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
112 ext_flash_close_new_dive_log((uint8_t*) &gheader);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
113 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
114
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
115
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
116 // ===============================================================================
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
117 // logbook_last_totalDiveCount
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
118 /// @brief Fix setting issues
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
119 /// @date 04-April-2016
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
120 ///
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
121 /// @return diveNumber (totalDiveCounter) of latest log entry, 0 if not a valid header
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
122 // ===============================================================================
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
123 uint16_t logbook_lastDive_diveNumber(void)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
124 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
125 SLogbookHeader tempLogbookHeader;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
126 if(logbook_getHeader(0, &tempLogbookHeader))
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
127 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
128 return tempLogbookHeader.diveNumber;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
129 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
130 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
131 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
132 return 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
133 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
134 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
135
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
136
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
137 /**
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
138 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
139 * @brief logbook_getCurrentHeader. /
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
140 * @author heinrichs weikamp
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
141 * @version V0.0.1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
142 * @date 22-April-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
143 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
144 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
145 * @return SLogbookHeader*:
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
146 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
147 SLogbookHeader* logbook_getCurrentHeader(void)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
148 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
149 return &gheader;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
150 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
151
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
152 /**
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
153 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
154 * @brief logbook_getNumberOfHeaders. /
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
155 * @author heinrichs weikamp gmbh
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
156 * @version V0.0.1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
157 * @date 18-May-2016
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
158 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
159 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
160 * @return uint8_t : number of valid headers (0xFAFA) found.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
161 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
162 uint8_t logbook_getNumberOfHeaders(void)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
163 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
164 return ext_flash_count_dive_headers();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
165 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
166
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
167
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
168 /**
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
169 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
170 * @brief logbook_getHeader. /
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
171 * @author heinrichs weikamp
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
172 * @version V0.0.1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
173 * @date 22-April-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
174 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
175 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
176 * @param StepBackwards : 0 Last lokbook entry, 1 second to last entry, etc.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
177 * @param SSLogbookHeader* pLogbookHeader: Output found LogbookHeader
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
178 * @return uint8_t : 1 = success
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
179 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
180 uint8_t logbook_getHeader(uint8_t StepBackwards,SLogbookHeader* pLogbookHeader)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
181 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
182 ext_flash_read_dive_header((uint8_t *)pLogbookHeader, StepBackwards);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
183 if(pLogbookHeader->diveHeaderStart != 0xFAFA)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
184 return 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
185 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
186 return 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
187 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
188
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
189 /**
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
190 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
191 * @brief logbook_initNewdiveProfile. /
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
192 * creates header and smallHeader from diveState and global Settings
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
193 * and writes new lookboock entry on flash device
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
194 * diveState
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
195 * @author heinrichs weikamp
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
196 * @version V0.0.1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
197 * @date 22-April-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
198 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
199 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
200 * @param SDiveState* pInfo: Input
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
201 * @param SSettings* pSettings: Input
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
202 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
203
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
204 void logbook_initNewdiveProfile(const SDiveState* pInfo, SSettings* pSettings)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
205 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
206 RTC_DateTypeDef Sdate;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
207 RTC_TimeTypeDef Stime;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
208
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
209 for(int i = 0; i < sizeof(SLogbookHeader); i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
210 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
211 ((uint8_t*)(&gheader))[i] = 0;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
212 }
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
213 gheader.diveHeaderStart = 0xFAFA;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
214 gheader.diveHeaderEnd = 0xFBFB;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
215 gheader.samplingRate = 2;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
216 if(pInfo->diveSettings.diveMode == DIVEMODE_OC)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
217 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
218 for(int i = 0; i < 5; i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
219 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
220 gheader.gasordil[i].oxygen_percentage = pSettings->gas[i+1].oxygen_percentage;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
221 gheader.gasordil[i].helium_percentage = pSettings->gas[i+1].helium_percentage;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
222 gheader.gasordil[i].note.uw = pSettings->gas[i+1].note.uw;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
223 gheader.gasordil[i].depth_meter = pSettings->gas[i+1].depth_meter;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
224 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
225 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
226 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
227 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
228 for(int i = 0; i < 5; i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
229 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
230 gheader.gasordil[i].oxygen_percentage = pSettings->gas[i+6].oxygen_percentage;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
231 gheader.gasordil[i].helium_percentage = pSettings->gas[i+6].helium_percentage;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
232 gheader.gasordil[i].note.uw = pSettings->gas[i+6].note.uw;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
233 gheader.gasordil[i].depth_meter = pSettings->gas[i+6].depth_meter;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
234 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
235
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
236 for(int i = 0; i < 5; i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
237 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
238 gheader.setpoint[i].setpoint_cbar = pSettings->setpoint[i+1].setpoint_cbar;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
239 gheader.setpoint[i].depth_meter = pSettings->setpoint[i+1].depth_meter;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
240 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
241 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
242 // header.gasordil[pInfo->lifeData.actualGas.GasIdInSettings].depth_meter = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
243
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
244 translateDate(pInfo->lifeData.dateBinaryFormat, &Sdate);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
245 translateTime(pInfo->lifeData.timeBinaryFormat, &Stime);
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
246 gheader.dateYear = Sdate.Year;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
247 gheader.dateMonth = Sdate.Month;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
248 gheader.dateDay = Sdate.Date;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
249 gheader.timeHour = Stime.Hours;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
250 gheader.timeMinute = Stime.Minutes;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
251 gheader.cnsAtBeginning = (uint16_t)pInfo->lifeData.cns;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
252 gheader.surfacePressure_mbar = (uint16_t)(pInfo->lifeData.pressure_surface_bar * 1000);
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
253 gheader.firmwareVersionHigh = firmwareVersion_16bit_high();
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
254 gheader.firmwareVersionLow = firmwareVersion_16bit_low();
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
255 gheader.logbookProfileVersion = LOGBOOK_VERSION;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
256 gheader.salinity = pSettings->salinity;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
257 gheader.diveNumber = pSettings->totalDiveCounter;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
258 gheader.personalDiveCount = pSettings->personalDiveCount;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
259
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
260 gheader.diveMode = pInfo->diveSettings.diveMode;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
261 gheader.CCRmode = pInfo->diveSettings.CCR_Mode;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
262 gheader.lastDecostop_m = pSettings->last_stop_depth_meter;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
263
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
264 if(pInfo->diveSettings.deco_type.ub.standard == GF_MODE)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
265 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
266 gheader.decoModel = 1;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
267 gheader.gfLow_or_Vpm_conservatism = pInfo->diveSettings.gf_low;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
268 gheader.gfHigh = pInfo->diveSettings.gf_high;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
269 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
270 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
271 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
272 gheader.decoModel = 2;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
273 gheader.gfLow_or_Vpm_conservatism = pInfo->diveSettings.vpm_conservatism;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
274 gheader.gfHigh = 0;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
275 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
276
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
277 memcpy(gheader.n2Compartments, pInfo->lifeData.tissue_nitrogen_bar, 64);
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
278 memcpy(gheader.heCompartments, pInfo->lifeData.tissue_helium_bar, 64);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
279
270
2e58a4094770 feature, debug: make simulator write a logbook entry
Jan Mulder <jlmulder@xs4all.nl>
parents: 269
diff changeset
280 logbook_SetCompartmentDesaturation(pInfo);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
281
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
282 ext_flash_start_new_dive_log_and_set_actualPointerSample((uint8_t*)&gheader);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
283
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
284 smallHeader.profileLength[0] = 0xFF;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
285 smallHeader.profileLength[1] = 0xFF;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
286 smallHeader.profileLength[2] = 0xFF;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
287 smallHeader.samplingRate_seconds = 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
288 smallHeader.numDivisors = 7;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
289
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
290 smallHeader.tempType = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
291 smallHeader.tempLength = 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
292 smallHeader.tempDivisor = 6;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
293
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
294 smallHeader.deco_ndlType = 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
295 smallHeader.deco_ndlLength = 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
296 smallHeader.deco_ndlDivisor = 6; //= 6;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
297
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
298 /* GF in % at actual position */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
299 smallHeader.gfType = 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
300 smallHeader.gfLength = 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
301 smallHeader.gfDivisor = 0; //12;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
302
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
303 /* 3 Sensors: 8bit ppO2 in 0.01bar, 16bit voltage in 0,1mV */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
304 smallHeader.ppo2Type = 3;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
305 smallHeader.ppo2Length = 9;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
306 smallHeader.ppo2Divisor = 2; //2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
307
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
308 /* last 15 stops in minutes (last, second_to_last, ... */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
309 /* last stop depth is defined in header */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
310 smallHeader.decoplanType = 4;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
311 smallHeader.decoplanLength = 15;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
312 smallHeader.decoplanDivisor = 12;//12;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
313
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
314 smallHeader.cnsType = 5;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
315 smallHeader.cnsLength = 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
316 smallHeader.cnsDivisor = 12;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
317
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
318 smallHeader.tankType = 6;
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
319 #ifdef ENABLE_BOTTLE_SENSOR
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
320 smallHeader.tankLength = 2;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
321 smallHeader.tankDivisor = 30; /* log tank data once a minute */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
322 #else
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
323 smallHeader.tankLength = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
324 smallHeader.tankDivisor = 0;
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
325 #endif
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
326 logbook_writedata((void *) &smallHeader,sizeof(smallHeader));
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
327
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
328 clear_divisor();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
329 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
330
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
331 /**
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
332 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
333 * @brief clear_divisor / clears divisor struct
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
334 * @author heinrichs weikamp
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
335 * @version V0.0.1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
336 * @date 22-April-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
337 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
338 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
339 */
194
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
340 static void clear_divisor(void)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
341 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
342 divisor.cns = smallHeader.cnsDivisor - 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
343 divisor.decoplan = smallHeader.decoplanDivisor - 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
344 divisor.deco_ndl = smallHeader.deco_ndlDivisor - 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
345 divisor.gradientFactor = smallHeader.gfDivisor -1 ;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
346 divisor.ppo2 = smallHeader.ppo2Divisor - 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
347 divisor.tank = smallHeader.tankDivisor - 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
348 divisor.temperature = smallHeader.tempDivisor - 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
349 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
350
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
351
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
352 /**
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
353 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
354 * @brief add16. / adds 16 bit variable to 8 bit array
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
355 * @author heinrichs weikamp
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
356 * @version V0.0.1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
357 * @date 22-April-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
358 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
359 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
360 * @param uint8_t *pos: Output 8 bit array
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
361 * @param uint16_t var: 16 bit variable
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
362 */
194
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
363 static void addU16(uint8_t *pos, uint16_t var)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
364 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
365 *((uint16_t*)pos) = var;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
366 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
367
194
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
368 static void addS16(uint8_t *pos, int16_t var)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
369 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
370 *((int16_t*)pos) = var;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
371 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
372
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
373 /**
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
374 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
375 * @brief logbook_writeSample. / Writes one logbook sampl
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
376 * @author heinrichs weikamp
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
377 * @date 22-April-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
378 * @version V0.0.2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
379 * @since 20-June-2016
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
380 * @bug Deco/NDL Status fixed in V0.0.2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
381
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
382
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
383 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
384 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
385 * @param SDiveState state:
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
386 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
387
270
2e58a4094770 feature, debug: make simulator write a logbook entry
Jan Mulder <jlmulder@xs4all.nl>
parents: 269
diff changeset
388 void logbook_writeSample(const SDiveState *state)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
389 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
390 uint8_t sample[256];
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
391 // int position = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
392 int length = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
393 // _Bool bEvent = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
394 uint8_t nextstopDepthMeter = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
395 uint16_t nextstopLengthSeconds = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
396 uint8_t nextstopLengthMinutes = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
397 bit8_Type eventByte1, eventByte2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
398 bit8_Type profileByteFlag;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
399 int i = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
400 for(i = 0; i <256 ;i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
401 sample[i] = 0;
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
402 addU16(sample, (uint16_t)(state->lifeData.depth_meter * 100));
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
403 length += 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
404 sample[2] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
405 length++;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
406 eventByte1.uw = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
407 eventByte2.uw = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
408 //uint16_t tmpU16 = 0;
130
b7689d9e888a Minor changes to improved code quality and to eliminate warnings
Ideenmodellierer
parents: 38
diff changeset
409 const SDecoinfo * pDecoinfo; // new hw 160620
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
410
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
411 //BuildEevntyte 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
412 // sub old 0-3 only one at a time
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
413 if(state->events.manualMarker)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
414 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
415 eventByte1.uw = 6;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
416 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
417 else
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
418 if(state->warnings.decoMissed)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
419 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
420 eventByte1.uw = 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
421 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
422 else
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
423 if(state->warnings.ppO2Low)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
424 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
425 eventByte1.uw = 4;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
426 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
427 else
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
428 if(state->warnings.ppO2High)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
429 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
430 eventByte1.uw = 5;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
431 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
432 else
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
433 if(state->warnings.lowBattery)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
434 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
435 eventByte1.uw = 7;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
436 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
437 else
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
438 if(state->warnings.slowWarning)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
439 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
440 eventByte1.uw = 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
441 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
442 // sub bit 4 to 7
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
443 if(state->events.manualGasSet)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
444 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
445 eventByte1.ub.bit4 = 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
446 }
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
447 if(state->events.gasChange)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
448 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
449 eventByte1.ub.bit5 = 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
450 }
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
451 if(state->events.setpointChange)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
452 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
453 eventByte1.ub.bit6 = 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
454 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
455 // sub bit 7 + eventbyte2
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
456 if(state->events.bailout)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
457 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
458 eventByte1.ub.bit7 = 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
459 eventByte2.ub.bit0 = 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
460 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
461 //Add EventByte 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
462 if(eventByte1.uw > 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
463 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
464 sample[length] = eventByte1.uw;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
465 length++;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
466 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
467 if(eventByte2.uw > 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
468 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
469 sample[length] = eventByte2.uw;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
470 length++;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
471 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
472 //Add EventInfos
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
473 if(state->events.manualGasSet)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
474 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
475 //manual gas in %O2 & %He
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
476 sample[length] = state->events.info_manualGasSetO2;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
477 length += 1;
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
478 sample[length] = state->events.info_manualGasSetHe;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
479 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
480 }
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
481 if(state->events.gasChange)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
482 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
483 //Current gas (gasid)
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
484 sample[length] = state->events.info_GasChange;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
485 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
486 }
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
487 if(state->events.setpointChange)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
488 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
489 //New setpoint in cbar
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
490 sample[length] = state->events.info_SetpointChange;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
491 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
492 }
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
493 if(state->events.bailout)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
494 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
495 //bailout gas in % O2 & %He
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
496 sample[length] = state->events.info_bailoutO2;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
497 length += 1;
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
498 sample[length] = state->events.info_bailoutHe;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
499 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
500 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
501
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
502
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
503 if(divisor.temperature == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
504 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
505 divisor.temperature = smallHeader.tempDivisor - 1;
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
506 addS16(&sample[length], (int16_t)((state->lifeData.temperature_celsius * 10.0f) + 0.5f));
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
507 length += 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
508 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
509 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
510 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
511 divisor.temperature--;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
512 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
513
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
514
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
515 if(smallHeader.deco_ndlDivisor > 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
516 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
517 if(divisor.deco_ndl == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
518 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
519 divisor.deco_ndl = smallHeader.deco_ndlDivisor - 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
520
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
521 if(stateUsed->diveSettings.deco_type.ub.standard == GF_MODE)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
522 pDecoinfo = &stateUsed->decolistBuehlmann;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
523 else if(stateUsed->diveSettings.deco_type.ub.standard == VPM_MODE)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
524 pDecoinfo = &stateUsed->decolistVPM;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
525 else // should not happen as only GF and VPM at the moment
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
526 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
527 sample[length] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
528 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
529 sample[length] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
530 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
531 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
532
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
533 if(pDecoinfo->output_ndl_seconds > 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
534 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
535 sample[length] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
536 length += 1;
283
04cdeff80254 Bugfix: write NDL in logbook correctly
Jan Mulder <jlmulder@xs4all.nl>
parents: 281
diff changeset
537 sample[length] = (uint8_t)(pDecoinfo->output_ndl_seconds / 60);
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
538
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
539 // Limit stored sample within 0 to 240 mins (Since it's 8bit UINT only)
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
540 if ((pDecoinfo->output_ndl_seconds / 60) > 240) sample[length] = 240;
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
541 if ((pDecoinfo->output_ndl_seconds / 60) < 0) sample[length] = 0;
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
542
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
543 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
544 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
545 else if(pDecoinfo->output_time_to_surface_seconds)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
546 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
547 tHome_findNextStop(pDecoinfo->output_stop_length_seconds, &nextstopDepthMeter, &nextstopLengthSeconds);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
548 nextstopLengthMinutes = (nextstopLengthSeconds +59 ) / 60;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
549
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
550 sample[length] = nextstopDepthMeter;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
551 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
552 sample[length] = nextstopLengthMinutes;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
553 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
554 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
555 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
556 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
557 sample[length] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
558 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
559 sample[length] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
560 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
561 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
562 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
563 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
564 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
565 divisor.deco_ndl --;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
566 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
567 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
568
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
569
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
570 if(smallHeader.ppo2Divisor)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
571 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
572 if(divisor.ppo2 == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
573 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
574 divisor.ppo2 = smallHeader.ppo2Divisor - 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
575
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
576 for(int i = 0; i <3; i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
577 {
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
578 sample[length] = (uint8_t)(state->lifeData.ppO2Sensor_bar[i] * 100.0f + 0.5f);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
579 length += 1;
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
580 addU16(&sample[length], (uint16_t)(state->lifeData.sensorVoltage_mV[i] * 10.0f + 0.5f));
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
581 length += 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
582 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
583 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
584 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
585 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
586 divisor.ppo2--;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
587 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
588 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
589
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
590
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
591 if(smallHeader.decoplanDivisor)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
592 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
593 if(divisor.decoplan == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
594 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
595 divisor.decoplan = smallHeader.decoplanDivisor - 1;
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
596 if(state->diveSettings.deco_type.ub.standard == VPM_MODE)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
597 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
598 for(int i = 0; i <15; i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
599 {
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
600 sample[length] = state->decolistVPM.output_stop_length_seconds[i] / 60;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
601 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
602 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
603 }
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
604 else if(state->diveSettings.deco_type.ub.standard == GF_MODE)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
605 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
606 for(int i = 0; i <15; i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
607 {
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
608 sample[length] = state->decolistBuehlmann.output_stop_length_seconds[i] / 60;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
609 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
610 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
611 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
612 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
613 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
614 for(int i = 0; i <15; i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
615 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
616 sample[length] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
617 length += 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
618 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
619 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
620 // add16(&sample[length], state.temperature);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
621 //length += 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
622 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
623 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
624 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
625 divisor.decoplan --;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
626 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
627 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
628 if(divisor.cns == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
629 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
630 divisor.cns = smallHeader.cnsDivisor - 1;
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
631 addU16(&sample[length], (uint16_t)state->lifeData.cns);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
632 length += 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
633 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
634 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
635 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
636 divisor.cns--;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
637 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
638
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
639 #ifdef ENABLE_BOTTLE_SENSOR
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
640 if(smallHeader.tankDivisor)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
641 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
642 if(divisor.tank == 0)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
643 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
644 divisor.tank = smallHeader.tankDivisor - 1;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
645 addS16(&sample[length], ((state->lifeData.bottle_bar[state->lifeData.actualGas.GasIdInSettings])));
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
646 length += smallHeader.tankLength;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
647 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
648 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
649 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
650 divisor.tank--;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
651 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
652 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
653 #endif
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
654
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
655 profileByteFlag.uw = length - 3;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
656 if(eventByte1.uw)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
657 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
658 profileByteFlag.ub.bit7 = 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
659 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
660 sample[2] = profileByteFlag.uw;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
661 logbook_writedata((void *) sample,length);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
662
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
663 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
664
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
665 /**
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
666 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
667 * @brief readSample. / Reads data of one logbook sample
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
668 * @author heinrichs weikamp
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
669 * @version V0.0.1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
670 * @date 22-April-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
671 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
672 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
673 * @param int32_t* depth: output Value
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
674 * @param int16_t * gasid: output Value
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
675 * @param int32_t* temperature: output Value
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
676 * @param int32_t* sensor1, sensor2, sensor3: output Value
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
677 * @param int32_t* cns: output Value
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
678 * @return bytes read / 0 = reading Error
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
679 */
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
680 static uint16_t readSample(int32_t* depth, int16_t * gasid, int16_t* setpoint_cbar, int32_t* temperature, int32_t* sensor1, int32_t* sensor2,
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
681 int32_t* sensor3, int32_t* cns, SManualGas* manualGas, int16_t* bailout, int16_t* decostopDepth, uint16_t* tank)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
682 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
683 int length = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
684 _Bool bEvent = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
685 bit8_Type eventByte1, eventByte2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
686 bit8_Type profileByteFlag;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
687
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
688 eventByte1.uw = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
689 eventByte2.uw = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
690 uint8_t tempU8 = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
691 uint16_t temp = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
692 uint16_t bytesRead = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
693
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
694 if(gasid)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
695 *gasid = -1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
696 if(temperature)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
697 *temperature = -1000;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
698 if(sensor1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
699 *sensor1 = -1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
700 if(sensor2)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
701 *sensor2 = -1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
702 if(sensor3)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
703 *sensor3 = -1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
704 if(cns)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
705 *cns = -1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
706 if(setpoint_cbar)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
707 *setpoint_cbar = -1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
708 if(bailout)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
709 *bailout = -1;
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
710 if(tank)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
711 *tank = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
712
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
713 if(manualGas)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
714 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
715 manualGas->percentageO2 =-1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
716 manualGas->percentageHe =-1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
717 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
718 if(decostopDepth)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
719 *decostopDepth = -1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
720
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
721 ext_flash_read_next_sample_part( (uint8_t*)&temp, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
722 if(depth)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
723 *depth = (int32_t)temp;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
724 bytesRead += 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
725
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
726 ext_flash_read_next_sample_part( &profileByteFlag.uw, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
727 bytesRead ++;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
728
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
729 bEvent = profileByteFlag.ub.bit7;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
730 profileByteFlag.ub.bit7 = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
731 length = profileByteFlag.uw;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
732
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
733 if(bEvent)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
734 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
735 ext_flash_read_next_sample_part( &eventByte1.uw, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
736 bytesRead ++;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
737
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
738 length--;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
739
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
740 //second event byte
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
741 if(eventByte1.ub.bit7)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
742 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
743 ext_flash_read_next_sample_part( &eventByte2.uw, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
744 bytesRead ++;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
745 length--;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
746 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
747 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
748 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
749 eventByte2.uw = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
750 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
751
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
752 //manual Gas Set
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
753 if( eventByte1.ub.bit4)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
754 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
755 //Evaluate manual Gas
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
756 ext_flash_read_next_sample_part( (uint8_t*)&tempU8, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
757 bytesRead +=1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
758 length -= 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
759 manualGas->percentageO2 = tempU8;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
760 ext_flash_read_next_sample_part( (uint8_t*)&tempU8, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
761 bytesRead +=1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
762 length -= 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
763 manualGas->percentageHe = tempU8;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
764 if(gasid)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
765 *gasid = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
766 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
767 //gas change
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
768 if( eventByte1.ub.bit5)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
769 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
770 ext_flash_read_next_sample_part( &tempU8, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
771 bytesRead +=1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
772 length -= 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
773 if(gasid)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
774 *gasid = (uint16_t)tempU8;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
775 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
776 //SetpointChange
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
777 if( eventByte1.ub.bit6)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
778 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
779 ext_flash_read_next_sample_part( &tempU8, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
780 *setpoint_cbar = tempU8;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
781 bytesRead +=1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
782 length -= 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
783 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
784
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
785 // second event Byte
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
786 //bailout
298
50c26a4442af Bugfix: fix drawing of CCR bailout profile
Jan Mulder <jlmulder@xs4all.nl>
parents: 283
diff changeset
787 if(eventByte2.ub.bit0)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
788 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
789 //evaluate bailout gas Gas
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
790 *bailout = 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
791
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
792 ext_flash_read_next_sample_part( (uint8_t*)&tempU8, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
793 bytesRead +=1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
794 length -= 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
795 manualGas->percentageO2 = tempU8;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
796 ext_flash_read_next_sample_part( (uint8_t*)&tempU8, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
797 bytesRead +=1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
798 length -= 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
799 manualGas->percentageHe = tempU8;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
800
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
801 if(gasid)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
802 *gasid = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
803 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
804 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
805
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
806 if(divisor.temperature == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
807 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
808 divisor.temperature = smallHeader.tempDivisor - 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
809 ext_flash_read_next_sample_part( (uint8_t*)&temp, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
810 bytesRead +=2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
811 length -= 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
812 if(temperature)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
813 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
814 *temperature = (int32_t)temp;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
815 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
816 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
817 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
818 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
819 divisor.temperature--;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
820 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
821
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
822 if(smallHeader.deco_ndlDivisor > 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
823 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
824 if(divisor.deco_ndl == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
825 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
826 divisor.deco_ndl = smallHeader.deco_ndlDivisor - 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
827 ext_flash_read_next_sample_part( &tempU8, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
828 if(decostopDepth)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
829 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
830 *decostopDepth = tempU8 * 100;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
831 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
832 ext_flash_read_next_sample_part( &tempU8, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
833 bytesRead += 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
834 length -= 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
835 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
836 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
837 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
838 divisor.deco_ndl--;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
839 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
840 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
841
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
842 if(divisor.ppo2 == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
843 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
844 int32_t ppO2Tmp = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
845 divisor.ppo2 = smallHeader.ppo2Divisor -1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
846 for(int i = 0; i <3 ; i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
847 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
848 ext_flash_read_next_sample_part( &tempU8, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
849 ppO2Tmp += tempU8;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
850 bytesRead +=1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
851 length -= 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
852 ext_flash_read_next_sample_part( (uint8_t*)&temp, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
853 bytesRead +=2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
854 length -= 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
855 if(sensor1 && (i==0))
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
856 *sensor1 = (((int32_t)tempU8) * 0xFFFF) + temp;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
857 if(sensor2 && (i==1))
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
858 *sensor2 = (((int32_t)tempU8) * 0xFFFF) + temp;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
859 if(sensor3 && (i==2))
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
860 *sensor3 = (((int32_t)tempU8) * 0xFFFF) + temp;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
861 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
862 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
863 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
864 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
865 divisor.ppo2--;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
866 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
867
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
868 if(smallHeader.decoplanDivisor > 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
869 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
870 if(divisor.decoplan == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
871 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
872 divisor.decoplan = smallHeader.decoplanDivisor - 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
873 for(int i = 0; i <15; i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
874 ext_flash_read_next_sample_part( &tempU8, 1);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
875 bytesRead += 15;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
876 length -= 15;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
877 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
878 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
879 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
880 divisor.decoplan--;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
881 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
882 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
883
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
884
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
885
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
886 if(divisor.cns == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
887 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
888 divisor.cns = smallHeader.cnsDivisor - 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
889
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
890 ext_flash_read_next_sample_part( (uint8_t*)&temp, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
891 bytesRead +=2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
892 length -= 2;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
893 if(cns)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
894 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
895 *cns = (int32_t)temp;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
896 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
897 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
898 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
899 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
900 divisor.cns--;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
901 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
902
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
903 #ifdef ENABLE_BOTTLE_SENSOR
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
904 if(smallHeader.tankDivisor)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
905 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
906 if(divisor.tank == 0)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
907 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
908 divisor.tank = smallHeader.tankDivisor - 1;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
909 ext_flash_read_next_sample_part( (uint8_t*)&temp, 2);
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
910 bytesRead +=2;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
911 length -= 2;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
912 if(tank)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
913 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
914 *tank = (uint16_t)temp;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
915 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
916 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
917 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
918 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
919 divisor.tank--;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
920 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
921 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
922 #endif
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
923
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
924 if (length != 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
925 return 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
926
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
927 return bytesRead;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
928 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
929 /**
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
930 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
931 * @brief logbook_readSampleData. / Reads sample data of whole logbook entry
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
932 * @author heinrichs weikamp
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
933 * @version V0.0.1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
934 * @date 22-April-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
935 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
936 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
937 * @param uint8_t StepBackwards: witch lookbook entry?
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
938 * @param uint16_t length : maxlength of output arrays
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
939 * @param int32_t* depth : output array
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
940 * @param int16_t * gasid : output array
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
941 * @param int32_t* temperature : output array
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
942 * @param int32_t* ppo2 : output array
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
943 * @param int32_t* cns : output array
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
944 * @return length of output
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
945 */
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
946 uint16_t logbook_readSampleData(uint8_t StepBackwards, uint16_t length,uint16_t* depth, uint8_t* gasid, int16_t* temperature, uint16_t* ppo2,
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
947 uint16_t* setpoint, uint16_t* sensor1, uint16_t* sensor2, uint16_t* sensor3, uint16_t* cns, uint8_t* bailout,
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
948 uint16_t* decostopDepth, uint16_t* tank)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
949 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
950 //Test read
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
951 //SLogbookHeader header;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
952
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
953 //logbook_getHeader(&header);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
954 SLogbookHeader header;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
955 int iNum;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
956 int firstgasid = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
957 int retVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
958 int compression = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
959 int i;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
960 // uint32_t diveTime_seconds;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
961 int32_t depthVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
962 int16_t gasidVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
963 int16_t setPointVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
964 int16_t bailoutVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
965 int16_t bailoutLast = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
966 uint16_t setPointLast = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
967 int32_t temperatureVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
968 int32_t sensor1Val = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
969 int32_t sensor2Val = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
970 int32_t sensor3Val = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
971 int32_t sensor1Last = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
972 int32_t sensor2Last = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
973 int32_t sensor3Last = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
974 int32_t cnsVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
975 int32_t depthLast = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
976 int16_t gasidLast = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
977 int32_t temperatureLast = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
978 int32_t temperatureFirst = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
979 int32_t cnsLast = 0;
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
980 int16_t decostepDepthVal = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
981 int16_t decostepDepthLast = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
982 int16_t tankVal = 0;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
983
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
984 SManualGas manualGasVal;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
985 SManualGas manualGasLast;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
986 manualGasLast.percentageO2 = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
987 manualGasLast.percentageHe = 0;
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
988 uint16_t numSamples = 0;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
989
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
990 float ambiant_pressure_bar = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
991 float ppO2 = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
992 ext_flash_read_dive_header((uint8_t*)&header, StepBackwards);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
993 for(i = 0;i< 5;i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
994 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
995 if(header.gasordil[i].note.ub.first)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
996 break;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
997 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
998 firstgasid = i + 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
999 if(header.diveMode == DIVEMODE_CCR)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1000 setPointLast = header.setpoint[0].setpoint_cbar;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1001 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1002 setPointLast = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1003 //diveTime_seconds = header.diveTime_seconds ;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1004 for(compression = 1; compression < 100; compression ++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1005 {
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1006 numSamples = (header.total_diveTime_seconds / header.samplingRate)/compression;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1007 if(numSamples <= length)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1008 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1009 break;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1010 }
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1011 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1012
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1013
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1014 for(i = 0;i< length;i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1015 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1016 if(depth)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1017 depth[i] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1018 if(temperature)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1019 temperature[i] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1020 if(gasid)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1021 gasid[i] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1022 if(ppo2)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1023 ppo2[i] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1024 if(setpoint)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1025 setpoint[i] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1026 if(sensor1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1027 sensor1[i] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1028 if(sensor2)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1029 sensor2[i] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1030 if(sensor3)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1031 sensor3[i] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1032 if(cns)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1033 cns[i] = 0;
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1034 if(tank)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1035 tank[i] = 0;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1036 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1037 //We start with fist gasid
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1038 gasidLast = firstgasid;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1039
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1040
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1041 //uint16_t* ppo2, uint16_t* cns#
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1042 uint32_t totalNumberOfBytes = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1043 uint32_t bytesRead = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1044 ext_flash_open_read_sample( StepBackwards,&totalNumberOfBytes);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1045 ext_flash_read_next_sample_part((uint8_t*)&smallHeader, sizeof(SSmallHeader));
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1046 bytesRead += sizeof(SSmallHeader);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1047
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1048 clear_divisor();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1049
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1050 iNum = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1051 int counter = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1052 temperatureLast = -1000;
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1053 if(totalNumberOfBytes > 2) /* read real data */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1054 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1055 while ((bytesRead < totalNumberOfBytes) && (iNum < length))
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1056 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1057 ext_flash_set_entry_point();
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1058 divisorBackup = divisor;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1059 retVal = readSample(&depthVal,&gasidVal, &setPointVal, &temperatureVal, &sensor1Val, &sensor2Val, &sensor3Val, &cnsVal, &manualGasVal,
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1060 &bailoutVal, &decostepDepthVal, &tankVal);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1061
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1062 if(retVal == 0)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1063 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1064 //Error try to read again!!!
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1065 ext_flash_reopen_read_sample_at_entry_point();
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1066 divisor = divisorBackup;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1067 retVal = readSample(&depthVal,&gasidVal,&setPointVal, &temperatureVal, &sensor1Val, &sensor2Val, &sensor3Val, &cnsVal,
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1068 &manualGasVal, &bailoutVal, &decostepDepthVal, &tankVal);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1069
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1070 if(retVal == 0)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1071 break;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1072 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1073 bytesRead +=retVal;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1074
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1075 //if for some variable no new value is in the sample for (z.B. gasidVal = -1), we take the last value
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1076 if(depthVal == -1)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1077 depthVal = depthLast;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1078 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1079 depthLast = depthVal;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1080
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1081 if(gasidVal == -1)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1082 gasidVal = gasidLast;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1083 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1084 gasidLast = gasidVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1085
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1086 if(temperatureVal == -1000)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1087 temperatureVal = temperatureLast;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1088 else
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1089 {
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1090 if(temperatureLast == -1000)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1091 temperatureFirst = temperatureVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1092 temperatureLast = temperatureVal;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1093 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1094
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1095 if(setPointVal == -1)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1096 setPointVal = setPointLast;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1097 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1098 setPointLast = setPointVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1099
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1100 if(sensor1Val == -1)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1101 sensor1Val = sensor1Last;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1102 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1103 sensor1Last = sensor1Val;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1104
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1105 if(sensor2Val == -1)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1106 sensor2Val = sensor2Last;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1107 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1108 sensor2Last = sensor2Val;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1109
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1110 if(sensor3Val == -1)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1111 sensor3Val = sensor3Last;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1112 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1113 sensor3Last = sensor3Val;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1114
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1115 if(cnsVal == -1)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1116 cnsVal = cnsLast;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1117 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1118 cnsLast = cnsVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1119
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1120 if(manualGasVal.percentageO2 == -1)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1121 manualGasVal = manualGasLast;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1122 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1123 manualGasLast = manualGasVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1124
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1125 if(bailoutVal == -1)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1126 bailoutVal = bailoutLast;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1127 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1128 bailoutLast = bailoutVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1129
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1130 if(decostepDepthVal == -1)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1131 decostepDepthVal = decostepDepthLast;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1132 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1133 decostepDepthLast = decostepDepthVal;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1134
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1135 counter++;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1136 // Heed compression
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1137 // Write here to arrays
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1138 if(counter == compression)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1139 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1140 if(depth)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1141 depth[iNum] = depthVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1142 if(gasid)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1143 gasid[iNum] = gasidVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1144 if(temperature)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1145 temperature[iNum] = temperatureVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1146 if(cns)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1147 cns[iNum] = cnsVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1148 if(bailout)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1149 bailout[iNum] = bailoutVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1150 if(decostopDepth)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1151 decostopDepth[iNum] = decostepDepthVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1152
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1153 if(ppo2)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1154 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1155 //Calc ppo2 - Values
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1156 SGas gas;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1157 gas.setPoint_cbar = setPointVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1158 if(gasidVal > 0)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1159 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1160 gas.helium_percentage = header.gasordil[gasidVal - 1].helium_percentage;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1161 gas.nitrogen_percentage = 100 - gas.helium_percentage - header.gasordil[gasidVal - 1].oxygen_percentage;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1162 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1163 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1164 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1165 gas.helium_percentage = manualGasVal.percentageHe;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1166 gas.nitrogen_percentage = 100 - gas.helium_percentage - manualGasVal.percentageO2;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1167 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1168 ambiant_pressure_bar =((float)(depthVal + header.surfacePressure_mbar))/1000;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1169 ppO2 = decom_calc_ppO2(ambiant_pressure_bar, &gas );
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1170 ppo2[iNum] = (uint16_t) ( ppO2 * 100);
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1171 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1172
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1173 if(tank)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1174 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1175 tank[iNum] = tankVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1176 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1177 if(setpoint)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1178 setpoint[iNum] = setPointVal;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1179
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1180 if(sensor1)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1181 sensor1[iNum] = (sensor1Val / 0xFFFF) & 0xFF;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1182 if(sensor2)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1183 sensor2[iNum] = (sensor2Val / 0xFFFF) & 0xFF;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1184 if(sensor3)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1185 sensor3[iNum] = (sensor3Val / 0xFFFF) & 0xFF;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1186 iNum++;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1187 counter = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1188 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1189 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1190 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1191 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1192 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1193 logbook_createDummyProfile(header.maxDepth, header.lastDecostop_m, header.minTemp, numSamples, depth, temperature);
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1194 iNum = numSamples;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1195 }
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1196
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1197 // Fix first Temperature Entries 150930 hw
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1198 if(temperature)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1199 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1200 int i = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1201 while((temperature[i] == -1000) && (i < iNum))
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1202 temperature[i++] = temperatureFirst;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1203 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1204
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1205 ext_flash_close_read_sample();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1206 return iNum;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1207 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1208
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1209
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1210 /********************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1211 * @brief logbook_InitAndWrite. / Controls writing of logbook
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1212 * Should be called ten times per second
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1213 * Automatically Initializes logbook at beginning of dive,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1214 * write samples every 2 seconds
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1215 * and finishes logbook after end of dive
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1216 *********************************************************************************/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1217
270
2e58a4094770 feature, debug: make simulator write a logbook entry
Jan Mulder <jlmulder@xs4all.nl>
parents: 269
diff changeset
1218 void logbook_InitAndWrite(const SDiveState *pStateReal)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1219 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1220 SSettings *pSettings = settingsGetPointer();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1221 static uint8_t bDiveMode = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1222 static uint32_t tickstart = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1223 uint32_t ticksdiff = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1224 uint32_t lasttick = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1225 static float min_temperature_float_celsius = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1226
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1227 if(!bDiveMode)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1228 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1229 if((pStateReal->mode == MODE_DIVE) && (pStateReal->diveSettings.diveMode != DIVEMODE_Apnea) && (pStateReal->lifeData.dive_time_seconds >= 5))
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1230 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1231 //InitdiveProfile
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1232 pSettings->totalDiveCounter++;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1233 logbook_initNewdiveProfile(pStateReal,settingsGetPointer());
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1234 min_temperature_float_celsius = pStateReal->lifeData.temperature_celsius;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1235 //Write logbook sample
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
1236 logbook_writeSample(pStateReal);
270
2e58a4094770 feature, debug: make simulator write a logbook entry
Jan Mulder <jlmulder@xs4all.nl>
parents: 269
diff changeset
1237 resetEvents(pStateReal);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1238 tickstart = HAL_GetTick();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1239 bDiveMode = 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1240 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1241 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1242 else if((pStateReal->mode == MODE_DIVE) && (pStateReal->diveSettings.diveMode != DIVEMODE_Apnea))
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1243 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1244 lasttick = HAL_GetTick();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1245 ticksdiff = time_elapsed_ms(tickstart,lasttick);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1246 //
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1247 if(ticksdiff >= 2000)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1248 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1249 //Write logbook sample
269
6e78137952af cleanup: do not pass large struct by value
Jan Mulder <jlmulder@xs4all.nl>
parents: 225
diff changeset
1250 logbook_writeSample(pStateReal);
270
2e58a4094770 feature, debug: make simulator write a logbook entry
Jan Mulder <jlmulder@xs4all.nl>
parents: 269
diff changeset
1251 resetEvents(pStateReal);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1252 if(min_temperature_float_celsius > pStateReal->lifeData.temperature_celsius)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1253 min_temperature_float_celsius = pStateReal->lifeData.temperature_celsius;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1254 tickstart = lasttick;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1255 if((bDiveMode == 1) && (pStateReal->lifeData.dive_time_seconds >= pSettings->divetimeToCreateLogbook))
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1256 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1257 ext_flash_create_new_dive_log((uint8_t*)&gheader);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1258 /** save settings
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1259 * with new lastDiveLogId and time and day
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1260 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1261 pSettings->personalDiveCount++;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1262 if(pSettings->logbookOffset)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1263 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1264 pSettings->logbookOffset++;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1265 }
427
b1091e183d52 Activated ringbuffer for settings:
ideenmodellierer
parents: 426
diff changeset
1266 ext_flash_write_settings(0);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1267 ext_flash_disable_protection_for_logbook();
426
514e6269256f Added function to analyse the sampel ringbuffer:
ideenmodellierer
parents: 411
diff changeset
1268
514e6269256f Added function to analyse the sampel ringbuffer:
ideenmodellierer
parents: 411
diff changeset
1269 ext_flash_CloseSector(); /* this is just a repair function which invalidates a not used sector in case a log maintenance was called before dive */
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1270 bDiveMode = 3;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1271 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1272 if(bDiveMode == 3)
270
2e58a4094770 feature, debug: make simulator write a logbook entry
Jan Mulder <jlmulder@xs4all.nl>
parents: 269
diff changeset
1273 logbook_UpdateHeader(pStateReal);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1274 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1275 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1276 else if(bDiveMode == 3)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1277 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1278 //End of Dive
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1279 logbook_SetAverageDepth(pStateReal->lifeData.average_depth_meter);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1280 logbook_SetMinTemperature(min_temperature_float_celsius);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1281 logbook_SetMaxCNS(pStateReal->lifeData.cns);
270
2e58a4094770 feature, debug: make simulator write a logbook entry
Jan Mulder <jlmulder@xs4all.nl>
parents: 269
diff changeset
1282 logbook_SetCompartmentDesaturation(pStateReal);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1283 logbook_SetLastStop(pStateReal->diveSettings.last_stop_depth_bar);
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1284 gheader.batteryVoltage = pStateReal->lifeData.battery_voltage * 1000;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1285 logbook_EndDive();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1286 bDiveMode = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1287 } else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1288 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1289 ext_flash_enable_protection();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1290 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1291 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1292
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1293
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1294 /* Private functions ---------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1295
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1296 /********************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1297 * @brief logbook_UpdateHeader. /
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1298 * set date, time, max depth. etc. pp.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1299 * the internal pointer to the end of profile and length will be set by
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1300 ext_flash_close_new_dive_log() in externLogbookFlash.c
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1301 * @author heinrichs weikamp gmbh
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1302 * @version V0.0.1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1303 * @date 27-Nov-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1304 *********************************************************************************/
270
2e58a4094770 feature, debug: make simulator write a logbook entry
Jan Mulder <jlmulder@xs4all.nl>
parents: 269
diff changeset
1305 static void logbook_UpdateHeader(const SDiveState *pStateReal)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1306 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1307 // uint16_t secondsAtShallow = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1308 RTC_DateTypeDef Sdate;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1309 RTC_TimeTypeDef Stime;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1310 uint32_t time1_u32, time2_u32;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1311 uint32_t divetimeHelper;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1312
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1313 /* time and day */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1314 /* don't update CHANGE 160224 hw, maybe save actual time and date at other place
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1315 translateDate(pStateReal->lifeData.dateBinaryFormat, &Sdate);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1316 translateTime(pStateReal->lifeData.timeBinaryFormat, &Stime);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1317
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1318 header.dateYear = Sdate.Year;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1319 header.dateMonth = Sdate.Month;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1320 header.dateDay = Sdate.Date;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1321 header.timeHour = Stime.Hours;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1322 header.timeMinute = Stime.Minutes;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1323 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1324 /// 160315 Quick fix for empty date problem
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1325 if((!(gheader.dateYear)) || (!(gheader.dateMonth)) || (!(gheader.dateDay)))
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1326 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1327 translateDate(pStateReal->lifeData.dateBinaryFormat, &Sdate);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1328 translateTime(pStateReal->lifeData.timeBinaryFormat, &Stime);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1329
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1330 gheader.dateYear = Sdate.Year;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1331 gheader.dateMonth = Sdate.Month;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1332 gheader.dateDay = Sdate.Date;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1333
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1334 time1_u32 = (uint32_t)gheader.timeMinute + (uint32_t)(gheader.timeHour * 60);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1335 time2_u32 = (uint32_t)Stime.Minutes + (uint32_t)(Stime.Hours * 60);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1336 if(time2_u32 < time1_u32)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1337 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1338 if(gheader.dateDay > 1)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1339 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1340 gheader.dateDay -= 1;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1341 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1342 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1343 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1344 gheader.dateMonth --;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1345 if(!gheader.dateMonth)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1346 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1347 gheader.dateYear--;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1348 gheader.dateMonth = 12;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1349 gheader.dateDay = 31;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1350 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1351 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1352 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1353 if(gheader.dateMonth == 2)
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1354 gheader.dateDay = 28;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1355 else
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1356 if((gheader.dateMonth == 4) || (gheader.dateMonth == 6) || (gheader.dateMonth == 9) || (gheader.dateMonth == 11))
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1357 gheader.dateDay = 30;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1358 else
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1359 gheader.dateDay = 31;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1360 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1361 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1362 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1363 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1364
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1365 /* duration */
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1366 gheader.total_diveTime_seconds = pStateReal->lifeData.dive_time_seconds;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1367 gheader.maxDepth = pStateReal->lifeData.max_depth_meter * 100;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1368
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1369 /* old:
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1370
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1371 secondsAtShallow = pSettings->timeoutDiveReachedZeroDepth;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1372 if(pStateReal->lifeData.dive_time_seconds <= secondsAtShallow)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1373 secondsAtShallow = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1374 header.diveTimeMinutes = (header.total_diveTime_seconds - secondsAtShallow )/ 60;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1375 header.diveTimeSeconds = header.total_diveTime_seconds - secondsAtShallow - (header.diveTimeMinutes * 60);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1376 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1377 divetimeHelper = pStateReal->lifeData.dive_time_seconds_without_surface_time;
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1378 gheader.diveTimeMinutes = (uint16_t)(divetimeHelper/60);
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1379 divetimeHelper -= 60 * (uint32_t)gheader.diveTimeMinutes;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1380 gheader.diveTimeSeconds = (uint16_t)divetimeHelper;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1381
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1382 /* deco algorithm (final) */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1383 if(pStateReal->diveSettings.deco_type.ub.standard == GF_MODE)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1384 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1385 gheader.decoModel = 1;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1386 gheader.gfLow_or_Vpm_conservatism = pStateReal->diveSettings.gf_low;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1387 gheader.gfHigh = pStateReal->diveSettings.gf_high;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1388 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1389 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1390 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1391 gheader.decoModel = 2;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1392 gheader.gfLow_or_Vpm_conservatism = pStateReal->diveSettings.vpm_conservatism;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1393 gheader.gfHigh = 0;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1394 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1395
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1396 /* tissue load */
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1397 memcpy(gheader.n2Compartments, pStateReal->lifeData.tissue_nitrogen_bar, 64);
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1398 memcpy(gheader.heCompartments, pStateReal->lifeData.tissue_helium_bar, 64);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1399
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1400 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1401
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1402
194
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
1403 static void logbook_SetAverageDepth(float average_depth_meter)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1404 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1405 gheader.averageDepth_mbar = (uint16_t)(average_depth_meter * 100);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1406 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1407
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1408
194
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
1409 static void logbook_SetMinTemperature(float min_temperature_celsius)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1410 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1411 gheader.minTemp = (int16_t)((min_temperature_celsius * 10.0f) + 0.5f);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1412 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1413
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1414
194
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
1415 static void logbook_SetMaxCNS(float max_cns_percentage)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1416 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1417 if(max_cns_percentage < 9999)
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1418 gheader.maxCNS = (uint16_t)(max_cns_percentage);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1419 else
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1420 gheader.maxCNS = 9999;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1421 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1422
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1423
270
2e58a4094770 feature, debug: make simulator write a logbook entry
Jan Mulder <jlmulder@xs4all.nl>
parents: 269
diff changeset
1424 static void logbook_SetCompartmentDesaturation(const SDiveState * pStateReal)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1425 {
225
2bb1db22b5f5 cleanup: random set of cleanups
Jan Mulder <jlmulder@xs4all.nl>
parents: 199
diff changeset
1426 SLifeData2 secondaryInformation = { 0 };
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1427
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1428 decom_tissues_desaturation_time(&pStateReal->lifeData, &secondaryInformation);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1429 for(int i=0;i<16;i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1430 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1431 if(secondaryInformation.tissue_nitrogen_desaturation_time_minutes[i] <= (15 * 255))
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1432 gheader.n2CompartDesatTime_min[i] = (uint8_t)((secondaryInformation.tissue_nitrogen_desaturation_time_minutes[i] + 14) / 15);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1433 else
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1434 gheader.n2CompartDesatTime_min[i] = 255;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1435 if(secondaryInformation.tissue_helium_desaturation_time_minutes[i] <= (15 * 255))
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1436 gheader.heCompartDesatTime_min[i] = (uint8_t)((secondaryInformation.tissue_helium_desaturation_time_minutes[i] + 14 )/ 15);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1437 else
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1438 gheader.heCompartDesatTime_min[i] = 255;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1439 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1440 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1441
194
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
1442 static void logbook_SetLastStop(float last_stop_depth_bar)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1443 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1444 gheader.lastDecostop_m = (uint8_t)(last_stop_depth_bar / 10.0f);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1445 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1446
194
f23b9055436f cleanup: more trivial cleanup (logbook.c/h)
Jan Mulder <jlmulder@xs4all.nl>
parents: 149
diff changeset
1447 static void logbook_writedata(void * data, int length_byte)
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1448 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1449 ext_flash_write_sample(data, length_byte);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1450 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1451
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1452 /********************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1453 * @brief logbook_build_ostc3header. /
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1454 * @author heinrichs weikamp gmbh
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1455 * @version V0.0.2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1456 * @date 27-Nov-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1457 *********************************************************************************/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1458 SLogbookHeaderOSTC3 * logbook_build_ostc3header(SLogbookHeader* pHead)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1459 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1460 convert_Type data,data2;
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1461 uint16_t dummyLength = 0;
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1462
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1463 memcpy(headerOSTC3.diveHeaderStart, &pHead->diveHeaderStart, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1464 memcpy(headerOSTC3.pBeginProfileData, &pHead->pBeginProfileData, 3);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1465 memcpy(headerOSTC3.pEndProfileData, &pHead->pEndProfileData, 3);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1466
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1467
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1468 data.u8bit.byteHigh = 0;
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1469 data.u8bit.byteLow = pHead->pBeginProfileData[0];
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1470 data.u8bit.byteMidLow = pHead->pBeginProfileData[1];
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1471 data.u8bit.byteMidHigh = pHead->pBeginProfileData[2];
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1472
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1473 data2.u8bit.byteHigh = 0;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1474 data2.u8bit.byteLow = pHead->pEndProfileData[0];
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1475 data2.u8bit.byteMidLow = pHead->pEndProfileData[1];
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1476 data2.u8bit.byteMidHigh = pHead->pEndProfileData[2];
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1477
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1478 if( (pHead->pBeginProfileData[0] == 0) /* no sample data available => use dummy */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1479 &&(pHead->pBeginProfileData[1] == 0)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1480 &&(pHead->pBeginProfileData[2] == 0))
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1481 {
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1482 dummyLength = logbook_fillDummySampleBuffer(pHead->diveTimeMinutes, pHead->diveTimeSeconds,pHead->maxDepth
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1483 ,pHead->lastDecostop_m, pHead->minTemp);
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1484
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1485 data2.u32bit = data.u32bit + dummyLength; /* calc new end address (which is equal to dummyLength) */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1486 data.u32bit = data2.u32bit; /* data is used below to represent the length */
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1487 }
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1488 else
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1489 {
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1490 /* check if sample address information are corrupted by address range. */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1491 /* TODO: Workaround. Better solution would be to check end of ring for 0xFF pattern */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1492 if((data.u32bit > data2.u32bit) && (data.u32bit < (SAMPLESTOP - 0x9000)))
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1493 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1494 data2.u32bit = data.u32bit + DEFAULT_SAMPLES;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1495 pHead->pEndProfileData[0] = data2.u8bit.byteLow;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1496 pHead->pEndProfileData[1] = data2.u8bit.byteMidLow;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1497 pHead->pEndProfileData[2] = data2.u8bit.byteMidHigh;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1498 data.u32bit = DEFAULT_SAMPLES;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1499 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1500 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1501 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1502 data.u8bit.byteHigh = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1503 data.u8bit.byteLow = pHead->profileLength[0];
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1504 data.u8bit.byteMidLow = pHead->profileLength[1];
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1505 data.u8bit.byteMidHigh = pHead->profileLength[2];
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1506 }
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1507 }
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1508 if(data.u32bit != 0xFFFFFF)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1509 data.u32bit += 3;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1510
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1511 headerOSTC3.profileLength[0] = data.u8bit.byteLow;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1512 headerOSTC3.profileLength[1] = data.u8bit.byteMidLow;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1513 headerOSTC3.profileLength[2] = data.u8bit.byteMidHigh;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1514
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1515 memcpy(headerOSTC3.gasordil, pHead->gasordil, 20);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1516
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1517 if(pHead->logbookProfileVersion == LOGBOOK_VERSION)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1518 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1519 headerOSTC3.logbookProfileVersion = LOGBOOK_VERSION_OSTC3;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1520 memcpy(headerOSTC3.personalDiveCount, &pHead->personalDiveCount, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1521 headerOSTC3.safetyDistance_10cm = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1522
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1523 for(int i=0;i<5;i++)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1524 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1525 if(!pHead->gasordil[i].note.ub.active)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1526 headerOSTC3.gasordil[3 + (i*4)] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1527 else if(pHead->gasordil[i].note.ub.first)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1528 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1529 /* depth = 0, note = 1 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1530 headerOSTC3.gasordil[2 + (i*4)] = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1531 headerOSTC3.gasordil[3 + (i*4)] = 1;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1532 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1533 else if( pHead->gasordil[i].depth_meter)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1534 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1535 /* note = 3 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1536 headerOSTC3.gasordil[3 + (i*4)] = 3;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1537 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1538 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1539 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1540 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1541 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1542 headerOSTC3.logbookProfileVersion = 0xFF;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1543 headerOSTC3.personalDiveCount[0] = 0xFF;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1544 headerOSTC3.personalDiveCount[1] = 0xFF;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1545 headerOSTC3.safetyDistance_10cm = 0xFF;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1546 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1547
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1548 headerOSTC3.dateYear = pHead->dateYear;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1549 headerOSTC3.dateMonth = pHead->dateMonth;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1550 headerOSTC3.dateDay = pHead->dateDay;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1551 headerOSTC3.timeHour = pHead->timeHour;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1552 headerOSTC3.timeMinute = pHead->timeMinute;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1553
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1554
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1555 memcpy(headerOSTC3.maxDepth, &pHead->maxDepth, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1556 memcpy(headerOSTC3.diveTimeMinutes, &pHead->diveTimeMinutes, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1557
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1558 headerOSTC3.diveTimeSeconds = pHead->diveTimeSeconds;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1559
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1560 memcpy(headerOSTC3.minTemp, &pHead->minTemp, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1561 memcpy(headerOSTC3.surfacePressure_mbar,&pHead->surfacePressure_mbar, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1562 memcpy(headerOSTC3.desaturationTime, &pHead->desaturationTime, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1563
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1564 headerOSTC3.firmwareVersionHigh = pHead->firmwareVersionHigh;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1565 headerOSTC3.firmwareVersionLow = pHead->firmwareVersionLow;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1566
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1567 memcpy(headerOSTC3.batteryVoltage, &pHead->batteryVoltage, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1568
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1569 headerOSTC3.samplingRate = pHead->samplingRate;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1570
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1571 memcpy(headerOSTC3.cnsAtBeginning, &pHead->cnsAtBeginning, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1572
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1573 headerOSTC3.gfAtBeginning = pHead->gfAtBeginning;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1574 headerOSTC3.gfAtEnd = pHead->gfAtEnd;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1575
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1576 memcpy(headerOSTC3.setpoint, pHead->setpoint, 10);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1577
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1578 headerOSTC3.salinity = pHead->salinity;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1579
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1580 memcpy(headerOSTC3.maxCNS, &pHead->maxCNS, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1581 memcpy(headerOSTC3.averageDepth_mbar, &pHead->averageDepth_mbar, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1582 memcpy(headerOSTC3.total_diveTime_seconds,&pHead->total_diveTime_seconds, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1583
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1584 headerOSTC3.gfLow_or_Vpm_conservatism = pHead->gfLow_or_Vpm_conservatism;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1585 headerOSTC3.gfHigh = pHead->gfHigh;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1586 headerOSTC3.decoModel = pHead->decoModel;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1587
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1588 memcpy(headerOSTC3.diveNumber, &pHead->diveNumber, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1589
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1590 headerOSTC3.diveMode = pHead->diveMode;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1591 headerOSTC3.CCRmode = pHead->CCRmode;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1592
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1593 memcpy(headerOSTC3.n2CompartDesatTime_min,pHead->n2CompartDesatTime_min, 16);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1594 memcpy(headerOSTC3.n2Compartments, pHead->n2Compartments, 64);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1595 memcpy(headerOSTC3.heCompartDesatTime_min,pHead->heCompartDesatTime_min, 16);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1596 memcpy(headerOSTC3.heCompartments, pHead->heCompartments, 64);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1597
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1598 headerOSTC3.lastDecostop_m = pHead->lastDecostop_m;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1599
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1600 memcpy(headerOSTC3.hwHudBattery_mV, &pHead->hwHudBattery_mV, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1601
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1602 headerOSTC3.hwHudLastStatus = pHead->hwHudLastStatus;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1603
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1604 memcpy(headerOSTC3.batteryGaugeRegisters,&pHead->batteryGaugeRegisters, 6);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1605
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1606
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1607 memcpy(headerOSTC3.diveHeaderEnd, &pHead->diveHeaderEnd, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1608
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1609 return &headerOSTC3;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1610 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1611
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1612
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1613 /********************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1614 * @brief logbook_build_ostc3header_compact. /
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1615 * @author heinrichs weikamp gmbh
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1616 * @version V0.0.1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1617 * @date 31-Juli-2015
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1618 *********************************************************************************/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1619 SLogbookHeaderOSTC3compact * logbook_build_ostc3header_compact(SLogbookHeader* pHead)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1620 {
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1621 convert_Type data, data2;
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1622 uint32_t dummyLength = 0;
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1623
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1624
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1625 data.u8bit.byteHigh = 0;
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1626 data.u8bit.byteLow = pHead->pBeginProfileData[0];
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1627 data.u8bit.byteMidLow = pHead->pBeginProfileData[1];
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1628 data.u8bit.byteMidHigh = pHead->pBeginProfileData[2];
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1629
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1630 data2.u8bit.byteHigh = 0;
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1631 data2.u8bit.byteLow = pHead->pEndProfileData[0];
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1632 data2.u8bit.byteMidLow = pHead->pEndProfileData[1];
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1633 data2.u8bit.byteMidHigh = pHead->pEndProfileData[2];
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1634
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1635 if( (pHead->pBeginProfileData[0] == 0) /* no sample data available => use dummy */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1636 &&(pHead->pBeginProfileData[1] == 0)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1637 &&(pHead->pBeginProfileData[2] == 0))
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1638 {
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1639 dummyLength = logbook_fillDummySampleBuffer(pHead->diveTimeMinutes, pHead->diveTimeSeconds,pHead->maxDepth
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1640 ,pHead->lastDecostop_m, pHead->minTemp);
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1641
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1642 data2.u32bit = data.u32bit + dummyLength; /* calc new end address (which is equal to dummyLength) */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1643 data.u32bit = data2.u32bit; /* data is used below to represent the length */
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1644 }
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1645 else
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1646 {
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1647 /* check if sample address information are corrupted by address range. */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1648 /* TODO: Workaround. Better solution would be to check end of ring for 0xFF pattern */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1649 if((data.u32bit > data2.u32bit) && (data.u32bit < (SAMPLESTOP - 0x9000)))
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1650 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1651 data2.u32bit = data.u32bit + DEFAULT_SAMPLES;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1652 pHead->pEndProfileData[0] = data2.u8bit.byteLow;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1653 pHead->pEndProfileData[1] = data2.u8bit.byteMidLow;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1654 pHead->pEndProfileData[2] = data2.u8bit.byteMidHigh;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1655 data.u32bit = DEFAULT_SAMPLES;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1656 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1657 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1658 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1659 data.u8bit.byteHigh = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1660 data.u8bit.byteLow = pHead->profileLength[0];
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1661 data.u8bit.byteMidLow = pHead->profileLength[1];
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1662 data.u8bit.byteMidHigh = pHead->profileLength[2];
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1663 }
411
e908b894f107 Bugfix: Limit log length in case of corrupted sample storage:
ideenmodellierer
parents: 325
diff changeset
1664 }
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1665 if(data.u32bit != 0xFFFFFF)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1666 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1667 data.u32bit += 3;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1668
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1669 headerOSTC3compact.profileLength[0] = data.u8bit.byteLow;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1670 headerOSTC3compact.profileLength[1] = data.u8bit.byteMidLow;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1671 headerOSTC3compact.profileLength[2] = data.u8bit.byteMidHigh;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1672
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1673 headerOSTC3compact.dateYear = pHead->dateYear;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1674 headerOSTC3compact.dateMonth = pHead->dateMonth;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1675 headerOSTC3compact.dateDay = pHead->dateDay;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1676 headerOSTC3compact.timeHour = pHead->timeHour;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1677 headerOSTC3compact.timeMinute = pHead->timeMinute;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1678
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1679 memcpy(headerOSTC3compact.maxDepth, &pHead->maxDepth, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1680 memcpy(headerOSTC3compact.diveTimeMinutes, &pHead->diveTimeMinutes, 2);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1681
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1682 headerOSTC3compact.diveTimeSeconds = pHead->diveTimeSeconds;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1683
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1684
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1685 headerOSTC3compact.totalDiveNumberLow = pHead->diveNumber & 0xFF;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1686 headerOSTC3compact.totalDiveNumberHigh = (uint8_t)(pHead->diveNumber/256);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1687 headerOSTC3compact.profileVersion = 0x24; // Logbook-Profile version, 0x24 = date and time is start not end
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1688 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1689 else
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1690 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1691 memset(&headerOSTC3compact, 0xFF, sizeof(SLogbookHeaderOSTC3compact));
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1692 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1693 return &headerOSTC3compact;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1694 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1695
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1696
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1697 /**
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1698 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1699 * @brief logbook_readSampleData. / Reads sample data of whole logbook entry
281
54d14bc2083c Fix typos (There are still many...)
heinrichsweikamp
parents: 270
diff changeset
1700 * @author heinrichs weikamp
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1701 * @version V0.0.1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1702 * @date 22-April-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1703 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1704 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1705 * @param uint8_t StepBackwards: witch lookbook entry?
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1706 * @param uint16_t length : maxlength of output arrays
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1707 * @param int32_t* depth : output array
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1708 * @param int16_t * gasid : output array
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1709 * @param int32_t* temperature : output array
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1710 * @param int32_t* ppo2 : output array
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1711 * @param int32_t* cns : output array
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1712 * @return length of output
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1713 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1714 void logbook_recover_brokenlog(uint8_t headerId)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1715 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1716 int16_t retVal;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1717 int32_t depthVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1718 int16_t gasidVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1719 int16_t setPointVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1720 int16_t bailoutVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1721 int32_t temperatureVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1722 int32_t sensor1Val = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1723 int32_t sensor2Val = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1724 int32_t sensor3Val = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1725 int32_t cnsVal = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1726 SManualGas manualGasVal;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1727
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1728 //uint16_t* ppo2, uint16_t* cns#
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1729 uint32_t bytesRead = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1730
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1731 ext_flash_read_block_start();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1732 ext_flash_read_next_sample_part((uint8_t*)&smallHeader, sizeof(SSmallHeader));
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1733 bytesRead += sizeof(SSmallHeader);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1734
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1735 clear_divisor();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1736
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1737
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1738 int sampleCounter = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1739 int maxdepth = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1740 uint32_t avrdepth = 0;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1741 while (true)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1742 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1743
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1744 ext_flash_set_entry_point();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1745 divisorBackup = divisor;
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1746 retVal = readSample(&depthVal,&gasidVal, &setPointVal, &temperatureVal, &sensor1Val, &sensor2Val, &sensor3Val, &cnsVal, &manualGasVal, &bailoutVal, NULL, NULL);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1747 if(retVal == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1748 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1749 //Error try to read again!!!
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1750 ext_flash_reopen_read_sample_at_entry_point();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1751 divisor = divisorBackup;
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1752 retVal = readSample(&depthVal,&gasidVal, &setPointVal, &temperatureVal, &sensor1Val, &sensor2Val, &sensor3Val, &cnsVal, &manualGasVal, &bailoutVal, NULL, NULL);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1753
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1754 if(retVal == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1755 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1756 //Error try to read again!!!
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1757 ext_flash_reopen_read_sample_at_entry_point();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1758 divisor = divisorBackup;
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1759 retVal = readSample(&depthVal,&gasidVal, &setPointVal, &temperatureVal, &sensor1Val, &sensor2Val, &sensor3Val, &cnsVal, &manualGasVal, &bailoutVal, NULL, NULL);
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1760
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1761 if(retVal == 0)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1762 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1763 ext_flash_reopen_read_sample_at_entry_point();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1764 break;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1765 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1766
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1767 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1768 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1769 if(depthVal > maxdepth)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1770 maxdepth = depthVal;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1771 avrdepth += depthVal;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1772 sampleCounter++;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1773 bytesRead +=retVal;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1774 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1775 avrdepth/= sampleCounter;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1776 ext_flash_close_read_sample();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1777 SLogbookHeader header;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1778
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1779 ext_flash_read_dive_header2((uint8_t*) &header, headerId, false);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1780 header.total_diveTime_seconds = sampleCounter * header.samplingRate;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1781 header.diveTimeMinutes = header.total_diveTime_seconds /60;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1782 header.diveTimeSeconds = header.total_diveTime_seconds - header.diveTimeMinutes * 60;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1783 header.maxDepth = maxdepth;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1784 header.averageDepth_mbar = avrdepth;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1785 SSettings * settings = settingsGetPointer();
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1786 settings->lastDiveLogId = headerId;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1787 ext_flash_close_new_dive_log((uint8_t *)&header);
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1788 }
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1789
455
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1790 void logbook_createDummyProfile(uint16_t maxDepth, uint8_t lastDecostop_m, int16_t minTemp, uint16_t length, uint16_t* depth, int16_t* temperature)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1791 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1792 uint8_t drawDeco = 1;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1793 uint16_t index = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1794 uint16_t indexDescenStop = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1795 uint16_t indexAscendStart = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1796 uint16_t simDecentDepth = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1797 uint16_t simDecentStep = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1798 uint16_t simAcentDepth = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1799 uint16_t simAcentStep = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1800
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1801 simDecentStep = maxDepth / (length / 6); /* first 1/6 for descend */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1802 simAcentStep = maxDepth / (length / 3); /* first 1/3 for ascend */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1803
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1804 while((index < length) && (simDecentDepth < maxDepth)) /* draw decent */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1805 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1806 depth[index] = simDecentDepth;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1807 temperature[index] = minTemp;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1808 index++;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1809 simDecentDepth += simDecentStep;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1810 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1811 indexDescenStop = index;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1812 index = length -1;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1813 while((index > indexDescenStop) && (simAcentDepth < maxDepth)) /* draw ascend including max deco stop */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1814 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1815 depth[index] = simAcentDepth;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1816 temperature[index] = minTemp;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1817 if((drawDeco) && (simAcentDepth < lastDecostop_m)) /* draw deco step */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1818 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1819 drawDeco = length / 10;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1820 while (drawDeco)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1821 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1822 index--;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1823 depth[index] = simAcentDepth;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1824 temperature[index] = minTemp;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1825 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1826 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1827 index--;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1828 simAcentDepth += simAcentStep;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1829 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1830 indexAscendStart = index;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1831 index = indexDescenStop;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1832 while(index <= indexAscendStart) /* draw isobar dive phase */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1833 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1834 depth[index] = maxDepth;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1835 temperature[index] = minTemp;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1836 index++;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1837 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1838 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1839
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1840 void logbook_resetDummy()
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1841 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1842 dummyWriteIdx = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1843 dummyReadIdx = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1844 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1845
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1846 void logbook_writeDummy(void* data, uint16_t length)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1847 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1848 memcpy(&dummyMemoryBuffer[dummyWriteIdx],(uint8_t *)data, length);
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1849 dummyWriteIdx += length;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1850 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1851 void logbook_writeDummySample(uint16_t depth, int16_t temperature)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1852 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1853 uint8_t sample[10];
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1854 int length = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1855
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1856 int i = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1857 for(i = 0; i <10 ;i++) sample[i] = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1858 addU16(sample, depth);
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1859 length += 2;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1860 sample[2] = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1861 length++;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1862
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1863 if(divisor.temperature == 0)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1864 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1865 divisor.temperature = smallHeader.tempDivisor - 1;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1866 addS16(&sample[length], temperature);
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1867 length += 2;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1868 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1869 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1870 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1871 divisor.temperature--;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1872 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1873
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1874 logbook_writeDummy((void *) &smallDummyHeader,sizeof(smallDummyHeader));
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1875 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1876
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1877
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1878 uint16_t logbook_fillDummySampleBuffer(uint16_t diveMinutes, uint8_t diveSeconds, uint16_t maxDepth, uint8_t lastDecostop_m, int16_t minTemp)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1879 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1880 uint16_t depthArray[DUMMY_SAMPLES];
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1881 int16_t temperatureArray[DUMMY_SAMPLES];
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1882
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1883 uint16_t index = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1884 uint16_t dummyBufferSize = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1885 uint16_t dummyProfileLength = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1886 uint32_t overallSecond = diveMinutes * 60 + diveSeconds;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1887
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1888 logbook_resetDummy();
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1889 clear_divisor();
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1890
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1891 smallDummyHeader.profileLength[0] = 0xFF;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1892 smallDummyHeader.profileLength[1] = 0xFF;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1893 smallDummyHeader.profileLength[2] = 0xFF;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1894 smallDummyHeader.samplingRate_seconds = 2;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1895 smallDummyHeader.numDivisors = 7;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1896
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1897 smallDummyHeader.tempType = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1898 smallDummyHeader.tempLength = 2;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1899 smallDummyHeader.tempDivisor = 6;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1900
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1901 smallDummyHeader.deco_ndlType = 1;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1902 smallDummyHeader.deco_ndlLength = 2;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1903 smallDummyHeader.deco_ndlDivisor = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1904
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1905 /* GF in % at actual position */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1906 smallDummyHeader.gfType = 2;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1907 smallDummyHeader.gfLength = 1;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1908 smallDummyHeader.gfDivisor = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1909
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1910 /* 3 Sensors: 8bit ppO2 in 0.01bar, 16bit voltage in 0,1mV */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1911 smallDummyHeader.ppo2Type = 3;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1912 smallDummyHeader.ppo2Length = 9;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1913 smallDummyHeader.ppo2Divisor = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1914
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1915 /* last 15 stops in minutes (last, second_to_last, ... */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1916 /* last stop depth is defined in header */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1917 smallDummyHeader.decoplanType = 4;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1918 smallDummyHeader.decoplanLength = 15;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1919 smallDummyHeader.decoplanDivisor = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1920
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1921 smallDummyHeader.cnsType = 5;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1922 smallDummyHeader.cnsLength = 2;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1923 smallDummyHeader.cnsDivisor = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1924
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1925 smallDummyHeader.tankType = 6;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1926 smallDummyHeader.tankLength = 2;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1927 smallDummyHeader.tankDivisor = 0;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1928
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1929 if((overallSecond / smallDummyHeader.samplingRate_seconds) > DUMMY_SAMPLES) /* reduce sample interval to keep buffer size */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1930 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1931 smallDummyHeader.samplingRate_seconds = overallSecond / DUMMY_SAMPLES;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1932 dummyProfileLength = DUMMY_SAMPLES;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1933 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1934 else
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1935 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1936 dummyProfileLength = overallSecond / smallDummyHeader.samplingRate_seconds;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1937 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1938 logbook_writeDummy((void *) &smallDummyHeader,sizeof(smallDummyHeader));
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1939 logbook_createDummyProfile(maxDepth, lastDecostop_m, minTemp, dummyProfileLength, depthArray, temperatureArray);
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1940
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1941 for (index = 0; index < dummyProfileLength; index++)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1942 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1943 logbook_writeDummySample(depthArray[index], temperatureArray[index]);
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1944 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1945
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1946 dummyBufferSize = dummyWriteIdx;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1947
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1948 return dummyBufferSize; /* return size of dummy buffer */
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1949 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1950
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1951 void logbook_readDummySamples(uint8_t* pTarget, uint16_t length)
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1952 {
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1953 memcpy(pTarget,&dummyMemoryBuffer[dummyReadIdx],length);
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1954 dummyReadIdx += length;
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1955 }
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1956
928a14568689 Reactivated samples for bottle pressure information:
ideenmodellierer
parents: 445
diff changeset
1957
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1958 /************************ (C) COPYRIGHT heinrichs weikamp *****END OF FILE****/