您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

9 行
271B

  1. // Avoid IDE problems by defining struct in septate .h file.
  2. // Pad record so size is a power of two for best write performance.
  3. #ifndef ExFatLogger_h
  4. #define ExFatLogger_h
  5. const size_t ADC_COUNT = 4;
  6. struct data_t {
  7. uint16_t adc[ADC_COUNT];
  8. };
  9. #endif // ExFatLogger_h