File: mdc_ecg_codes.c

package info (click to toggle)
biosig4c%2B%2B 1.9.3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,220 kB
  • sloc: ansic: 41,218; cpp: 8,946; sh: 4,365; makefile: 1,758; python: 87; awk: 73; php: 40; perl: 36; java: 14; ruby: 7
file content (91 lines) | stat: -rw-r--r-- 2,403 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*

    Copyright (C) 2014 Alois Schloegl <alois.schloegl@gmail.com>
    This file is part of the "BioSig for C/C++" repository
    (biosig4c++) at http://biosig.sf.net/

    BioSig is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License
    as published by the Free Software Foundation; either version 3
    of the License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

*/

#include <math.h>
#include <stdlib.h>
#include <string.h>
#include "mdc_ecg_codes.h"

/* physical units are defined in
 IEEE/ISO 11073-10102-Annex B
*/

const struct mdc_code_table
	{
		const uint16_t	code10;
		const uint32_t	cf_code10;
		const char*	refid;
	} MDC_CODE_TABLE[] = {
#include "11073-10102-AnnexB.i"
	{0xffff, 0xffffffff, "MDC_ECG_ERROR_CODE" }
} ;



/*
	Conversion between MDC Refid and CODE10 encoding 
	Currently, a simple lookup table is used, 
  	Eventually, this can be made more efficient
*/

uint16_t encode_mdc_ecg_code10(const char *IDstr) {
	if ( !memcmp(IDstr,"MDC_ECG_", 8) ) 
		return 0xffff;

	uint32_t k;
	for (k=0;  MDC_CODE_TABLE[k].cf_code10 < 0xffffffff; k++) {
		if (! strcmp(IDstr+8, MDC_CODE_TABLE[k].refid+8) ) 
			return MDC_CODE_TABLE[k].code10;
	}
	return 0xffff; 
}

uint32_t encode_mdc_ecg_cfcode10(const char *IDstr) {
	if ( !memcmp(IDstr,"MDC_ECG_", 8) ) 
		return 0xffffffff;

	size_t k;
	for (k=0;  MDC_CODE_TABLE[k].cf_code10 < 0xffffffff; k++) {
		if ( !strcmp(IDstr+8, MDC_CODE_TABLE[k].refid+8) )
			return MDC_CODE_TABLE[k].cf_code10;
	}
	return 0xffffffff; 
}

const char* decode_mdc_ecg_code10(uint16_t code10) {
	uint32_t k;
	for (k=0;  MDC_CODE_TABLE[k].cf_code10 < 0xffffffff; k++) {
		if ( code10 == MDC_CODE_TABLE[k].code10 )
			return MDC_CODE_TABLE[k].refid;
	}
	return NULL; 
}

const char* decode_mdc_ecg_cfcode10(uint32_t cf_code10) {
	uint32_t k;
	for (k=0;  MDC_CODE_TABLE[k].cf_code10 < 0xffffffff; k++) {
		if ( cf_code10 == MDC_CODE_TABLE[k].cf_code10 )
			return MDC_CODE_TABLE[k].refid;
	}
	return NULL; 
}