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.

15 lines
328 B

1 year ago
  1. #pragma once
  2. /**
  3. * @brief
  4. *
  5. * 200HZ,16bit
  6. * ->
  7. * 1s => 200*2 => 400BYTE
  8. * 248k
  9. * ->
  10. * 1s => 248*1024/400 => 634_S => 10.5min
  11. */
  12. #define MAX_STORAGE_TIMEOUT_S (60 * 10)
  13. #define MAX_STORAGE_SIZE (MAX_STORAGE_TIMEOUT_S * 400) // �洢��������Ϊ (256-8)kbyte
  14. #define MAX_FILE_NUM 10