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

1 year ago
  1. /**
  2. * @file qrs_time_domain_zh.h
  3. * @author zhaohe (zhaohe@domain.com)
  4. * @brief
  5. * @version 0.1
  6. * @date 2024-02-10
  7. *
  8. * @copyright Copyright (c) 2024
  9. *
  10. */
  11. #pragma once
  12. #include <stdint.h>
  13. #define TABLE_SIZE 1000
  14. void QRS_resetBuf();
  15. void QRS_processData(uint16_t data);
  16. uint16_t QRS_getHeartRate();
  17. uint16_t QRS_getMaxValueLastVal();
  18. uint16_t QRS_getAvgValueVal();