Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

9 lines
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