mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-07-30 02:12:02 +08:00

* Update WebSocket library * Update SSDP library * Update TFT_eSPI library * Update EspLuaEngine library * Update SDFat library * Change to pioarduino * Make ESP3DMessageFIFO and ESP3DMessage more thread safe * Fix sanity checks for BT * Add some C6 support * Refactor ethernet code * Split Ethernet Sta / WiFi sta ESP Commands and settings * Simplify wait and wdtFeed code * Set C3 with 4MB by default in platformio.ini * Apply Disable brown out only on ESP32 to avoid crash e.g:ESP32S3 * Add missing entries in platformio.ini
34 lines
1.4 KiB
C
34 lines
1.4 KiB
C
#ifndef AnalogBinLogger_h
|
|
#define AnalogBinLogger_h
|
|
const size_t BLOCK_SIZE = 64;
|
|
//------------------------------------------------------------------------------
|
|
// First block of file.
|
|
const size_t PIN_NUM_DIM =
|
|
BLOCK_SIZE - 3 * sizeof(uint32_t) - 2 * sizeof(uint8_t);
|
|
struct metadata_t {
|
|
uint32_t adcFrequency; // ADC clock frequency
|
|
uint32_t cpuFrequency; // CPU clock frequency
|
|
uint32_t sampleInterval; // Sample interval in CPU cycles.
|
|
uint8_t recordEightBits; // Size of ADC values, nonzero for 8-bits.
|
|
uint8_t pinCount; // Number of analog pins in a sample.
|
|
uint8_t pinNumber[PIN_NUM_DIM]; // List of pin numbers in a sample.
|
|
};
|
|
//------------------------------------------------------------------------------
|
|
// Data block for 8-bit ADC mode.
|
|
const size_t DATA_DIM8 = (BLOCK_SIZE - 2 * sizeof(uint16_t)) / sizeof(uint8_t);
|
|
struct block8_t {
|
|
uint16_t count; // count of data values
|
|
uint16_t overrun; // count of overruns since last block
|
|
uint8_t data[DATA_DIM8];
|
|
};
|
|
//------------------------------------------------------------------------------
|
|
// Data block for 10-bit ADC mode.
|
|
const size_t DATA_DIM16 =
|
|
(BLOCK_SIZE - 2 * sizeof(uint16_t)) / sizeof(uint16_t);
|
|
struct block16_t {
|
|
unsigned short count; // count of data values
|
|
unsigned short overrun; // count of overruns since last block
|
|
unsigned short data[DATA_DIM16];
|
|
};
|
|
#endif // AnalogBinLogger_h
|