idf.py reconfigure 触发的 idf-component-manager 版本刷新副作用: - espressif/dl_fft, esp_jpeg, freetype 等组件的小版本更新 不影响项目功能,与 Phase 10 无直接关系。 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
21 lines
501 B
C
21 lines
501 B
C
#ifndef HEATSHRINK_H
|
|
#define HEATSHRINK_H
|
|
|
|
#define HEATSHRINK_AUTHOR "Scott Vokes <vokes.s@gmail.com>"
|
|
#define HEATSHRINK_URL "https://github.com/atomicobject/heatshrink"
|
|
|
|
/* Version 0.4.1 */
|
|
#define HEATSHRINK_VERSION_MAJOR 0
|
|
#define HEATSHRINK_VERSION_MINOR 4
|
|
#define HEATSHRINK_VERSION_PATCH 1
|
|
|
|
#define HEATSHRINK_MIN_WINDOW_BITS 4
|
|
#define HEATSHRINK_MAX_WINDOW_BITS 15
|
|
|
|
#define HEATSHRINK_MIN_LOOKAHEAD_BITS 3
|
|
|
|
#define HEATSHRINK_LITERAL_MARKER 0x01
|
|
#define HEATSHRINK_BACKREF_MARKER 0x00
|
|
|
|
#endif
|