heatshrink_common.h 501 B

1234567891011121314151617181920
  1. #ifndef HEATSHRINK_H
  2. #define HEATSHRINK_H
  3. #define HEATSHRINK_AUTHOR "Scott Vokes <vokes.s@gmail.com>"
  4. #define HEATSHRINK_URL "https://github.com/atomicobject/heatshrink"
  5. /* Version 0.4.1 */
  6. #define HEATSHRINK_VERSION_MAJOR 0
  7. #define HEATSHRINK_VERSION_MINOR 4
  8. #define HEATSHRINK_VERSION_PATCH 1
  9. #define HEATSHRINK_MIN_WINDOW_BITS 4
  10. #define HEATSHRINK_MAX_WINDOW_BITS 15
  11. #define HEATSHRINK_MIN_LOOKAHEAD_BITS 3
  12. #define HEATSHRINK_LITERAL_MARKER 0x01
  13. #define HEATSHRINK_BACKREF_MARKER 0x00
  14. #endif