1 /** @file
2     Pulse analyzer functions.
3 
4     Copyright (C) 2015 Tommy Vestermark
5 
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10 */
11 
12 #ifndef INCLUDE_PULSE_ANALYZER_H_
13 #define INCLUDE_PULSE_ANALYZER_H_
14 
15 #include "pulse_detect.h"
16 
17 /// Analyze and print result.
18 void pulse_analyzer(pulse_data_t *data, int package_type);
19 
20 #endif /* INCLUDE_PULSE_ANALYZER_H_ */
21