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.
16 lines
328 B
16 lines
328 B
#pragma once
|
|
|
|
/**
|
|
* @brief
|
|
*
|
|
* 200HZ,16bit
|
|
* ->
|
|
* 1s => 200*2 => 400BYTE
|
|
* 248k
|
|
* ->
|
|
* 1s => 248*1024/400 => 634_S => 10.5min
|
|
*/
|
|
|
|
#define MAX_STORAGE_TIMEOUT_S (60 * 10)
|
|
#define MAX_STORAGE_SIZE (MAX_STORAGE_TIMEOUT_S * 400) // 存储最大限制为 (256-8)kbyte
|
|
#define MAX_FILE_NUM 10
|