mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Divinglog import: add cns value
Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
70198ef11b
commit
5e439cef63
1 changed files with 4 additions and 1 deletions
|
@ -2882,7 +2882,7 @@ extern int divinglog_profile(void *handle, int columns, char **data, char **colu
|
|||
{
|
||||
int sinterval = 0;
|
||||
unsigned long i, len, lenprofile2 = 0;
|
||||
char *ptr, temp[4], pres[5], hbeat[4], stop[4], stime[4], ndl[4], ppo2_1[4], ppo2_2[4], ppo2_3[4];
|
||||
char *ptr, temp[4], pres[5], hbeat[4], stop[4], stime[4], ndl[4], ppo2_1[4], ppo2_2[4], ppo2_3[4], cns[5];
|
||||
short oldcyl = -1;
|
||||
|
||||
/* We do not have samples */
|
||||
|
@ -2990,6 +2990,7 @@ extern int divinglog_profile(void *handle, int columns, char **data, char **colu
|
|||
memcpy(ppo2_1, &data[5][i * 19 + 0], 3);
|
||||
memcpy(ppo2_2, &data[5][i * 19 + 3], 3);
|
||||
memcpy(ppo2_3, &data[5][i * 19 + 6], 3);
|
||||
memcpy(cns, &data[5][i * 19 + 13], 4);
|
||||
|
||||
if (atoi(ppo2_1) > 0)
|
||||
cur_sample->o2sensor[0].mbar = atoi(ppo2_1) * 100;
|
||||
|
@ -2997,6 +2998,8 @@ extern int divinglog_profile(void *handle, int columns, char **data, char **colu
|
|||
cur_sample->o2sensor[1].mbar = atoi(ppo2_2) * 100;
|
||||
if (atoi(ppo2_3) > 0)
|
||||
cur_sample->o2sensor[2].mbar = atoi(ppo2_3) * 100;
|
||||
if (atoi(cns) > 0)
|
||||
cur_sample->cns = rint(atoi(cns) / 10);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue