mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
23 lines
738 B
Plaintext
23 lines
738 B
Plaintext
/**
|
|
* @defgroup pkg_mcufont MCUFont
|
|
* @ingroup pkg
|
|
* @brief MCUFont is a font compression, decompression and rendering library
|
|
* for use with microcontroller systems.
|
|
*
|
|
* # Introduction
|
|
*
|
|
* MCUFont is a stand-alone font compression, decompression and rendering
|
|
* library for use with microcontroller systems. On microcontrollers only
|
|
* decompression and rendering is supported, the compression part is written in
|
|
* C++ and is not supposed to be run on constrained devices.
|
|
*
|
|
* MCUFont supports high quality rendering of supplied fonts with kerning and
|
|
* anti-aliasing support. It does not support font scaling.
|
|
*
|
|
* # License
|
|
*
|
|
* Licensed under MIT.
|
|
*
|
|
* @see https://github.com/mcufont/mcufont
|
|
*/
|