ESP8266 part of the f105-motor-demo project (see f105-motor-demo_stm32)
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 
Ondřej Hruška 4a3c814e57 removed old shitz, added html src 9年前
..
.gitignore Added files 9年前
.travis.yml Added files 9年前
LICENSE Added files 9年前
Makefile Added files 9年前
README.md Added files 9年前
dec_sm.dot Added files 9年前
enc_sm.dot Added files 9年前
greatest.h Added files 9年前
heatshrink.c Added files 9年前
heatshrink_common.h Added files 9年前
heatshrink_config.h Added files 9年前
heatshrink_decoder.c Added files 9年前
heatshrink_decoder.h Added files 9年前
heatshrink_encoder.c Added files 9年前
heatshrink_encoder.h Added files 9年前
test_heatshrink_dynamic.c Added files 9年前
test_heatshrink_dynamic_theft.c Added files 9年前
test_heatshrink_static.c Added files 9年前

README.md

heatshrink

A data compression/decompression library for embedded/real-time systems.

Key Features:

  • Low memory usage (as low as 50 bytes)
    It is useful for some cases with less than 50 bytes, and useful for many general cases with < 300 bytes.
  • Incremental, bounded CPU use
    You can chew on input data in arbitrarily tiny bites. This is a useful property in hard real-time environments.
  • Can use either static or dynamic memory allocation
    The library doesn't impose any constraints on memory management.
  • ISC license
    You can use it freely, even for commercial purposes.

Getting Started:

There is a standalone command-line program, heatshrink, but the encoder and decoder can also be used as libraries, independent of each other. To do so, copy heatshrink_common.h, heatshrink_config.h, and either heatshrink_encoder.c or heatshrink_decoder.c (and their respective header) into your project.

Dynamic allocation is used by default, but in an embedded context, you probably want to statically allocate the encoder/decoder. Set HEATSHRINK_DYNAMIC_ALLOC to 0 in heatshrink_config.h.

More Information and Benchmarks:

heatshrink is based on LZSS, since it's particularly suitable for compression in small amounts of memory. It can use an optional, small index to make compression significantly faster, but otherwise can run in under 100 bytes of memory. The index currently adds 2^(window size+1) bytes to memory usage for compression, and temporarily allocates 512 bytes on the stack during index construction.

For more information, see the blog post for an overview, and the heatshrink_encoder.h / heatshrink_decoder.h header files for API documentation.

Build Status

Build Status