mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-08-02 06:20:39 +08:00
9 lines
271 B
C
9 lines
271 B
C
// Avoid IDE problems by defining struct in septate .h file.
|
|
// Pad record so size is a power of two for best write performance.
|
|
#ifndef ExFatLogger_h
|
|
#define ExFatLogger_h
|
|
const size_t ADC_COUNT = 4;
|
|
struct data_t {
|
|
uint16_t adc[ADC_COUNT];
|
|
};
|
|
#endif // ExFatLogger_h
|