zephyr/samples/compression/lz4
Benjamin Cabé fc4967e71f samples: lz4: reduce malloc arena size
PR #63332 introduced a change to the LZ4 sample that set the malloc
arena to an unnecessarily large size.
After testing on native_posix, qemu_m3, and esp32s3_devkitm_appcpu, it
would appear 24K is a much more reasonable (and sufficient) size.

Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
2023-11-14 09:04:11 +01:00
..
src samples, tests, boards: Switch main return type from void to int 2023-04-14 07:49:41 +09:00
CMakeLists.txt
README.rst
prj.conf samples: lz4: reduce malloc arena size 2023-11-14 09:04:11 +01:00
sample.yaml samples: Switch from NEWLIB_LIBC to REQUIRES_FULL_LIBC 2023-10-25 08:32:06 +02:00

README.rst

.. _lz4:

LZ4
###

Overview
********

A simple sample that can be used with any :ref:`supported board <boards>` and
compress & decompress the user data to the console.

Building and Running
********************

The sample can be built and executed on nrf52840dk_nrf52840 as follows:

.. zephyr-app-commands::
   :zephyr-app: samples/compression/lz4
   :board: nrf52840dk_nrf52840
   :goals: build flash
   :compact:

To build for another board, change "nrf52840dk_nrf52840" above to that board's name.