constants.h 620 B

123456789101112131415161718
  1. // // ******************************************************************
  2. // // /\ /| @File Constants.h
  3. // // \ V/ @Brief
  4. // // | "") @Author lijinwen, ghz005@uni-trend.com.cn
  5. // // / | @Creation 2024-05-20
  6. // // / \\ @Modified 2024-06-24
  7. // // *(__\_\
  8. // // ******************************************************************
  9. #pragma once
  10. namespace Protocol
  11. {
  12. //用于设置比较的容忍度
  13. constexpr double FLOAT_EQUAL_EPSILON = 1e-6;
  14. //解码超时时间
  15. constexpr int32_t DECODE_OUT_TIME_BY_SEC = 2;
  16. };