You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
380 B
19 lines
380 B
/**
|
|
* @file qrs_time_domain_zh.h
|
|
* @author zhaohe (zhaohe@domain.com)
|
|
* @brief
|
|
* @version 0.1
|
|
* @date 2024-02-10
|
|
*
|
|
* @copyright Copyright (c) 2024
|
|
*
|
|
*/
|
|
#pragma once
|
|
#include <stdint.h>
|
|
#define TABLE_SIZE 1000
|
|
|
|
void QRS_resetBuf();
|
|
void QRS_processData(uint16_t data);
|
|
uint16_t QRS_getHeartRate();
|
|
uint16_t QRS_getMaxValueLastVal();
|
|
uint16_t QRS_getAvgValueVal();
|