zephyr/samples/display/cfb
Kumar Gala a1b77fd589 zephyr: replace zephyr integer types with C99 types
git grep -l 'u\(8\|16\|32\|64\)_t' | \
		xargs sed -i "s/u\(8\|16\|32\|64\)_t/uint\1_t/g"
	git grep -l 's\(8\|16\|32\|64\)_t' | \
		xargs sed -i "s/s\(8\|16\|32\|64\)_t/int\1_t/g"

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2020-06-08 08:23:57 -05:00
..
boards boards: reel_board: add support for reel board v2 2019-09-18 22:30:15 -04:00
src zephyr: replace zephyr integer types with C99 types 2020-06-08 08:23:57 -05:00
CMakeLists.txt samples: make find_package(Zephyr...) REQUIRED 2020-05-29 10:47:25 +02:00
prj.conf samples: Added native posix board to cfb sample 2018-12-10 20:37:29 -05:00
README.rst global: Remove leading/trailing blank lines in files 2019-12-11 19:17:27 +01:00
sample.yaml sample: cfb: fix test sample.display.cfb.ssd1306 2019-09-17 06:49:37 -05:00

.. _character_frame_buffer_sample:

Character frame buffer
######################

Overview
********

This sample displays character strings using the Character Frame Buffer
(CFB) subsystem framework.

Requirements
************

This sample requires a supported board and CFB-supporting
display, such as the :ref:`reel_board`.

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

Build this sample application with the following commands:

.. zephyr-app-commands::
   :zephyr-app: samples/display/cfb
   :board: reel_board
   :goals: build
   :compact:

See :ref:`reel_board` on how to flash the build.