File: annotatedECG.awk

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 (43 lines) | stat: -rw-r--r-- 1,291 bytes parent folder | download | duplicates (4)
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

#!/usr/bin/awk -f
#
#    Converts 11073-10102-AnnexB into 11073-10101-AnnexB.i
#
#    Copyright (C) 2013,2014 Alois Schloegl <alois.schloegl@ist.ac.at>
#    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/>.


BEGIN { FS = "\t"; 
	print "#if 0\n### This file is autogenerated - Do not modify it !!! ###\n#"; 
	flag = 1;
}

{
	if (/^#/) {
		print $0;
	} else if (NF==4) { 
		if (flag) {
			print "#endif\n";
			flag = 0;
		}
		
		# hexadecimal or decimal - both are fine
		printf("\t{ %5i, %9i, \"%s\" }, \n",$2, $3, $4);
		# printf("\t{ 0x%x, 0x%x, \"%s\" }, \n", $2, $3, $4);
	}
}