2017-07-03 01:32:46 +02:00
|
|
|
/**
|
|
|
|
* @defgroup pkg_u8g2 U8G2 graphic library for monochome displays
|
|
|
|
* @ingroup pkg
|
|
|
|
* @brief Provides a monochrome graphics library for OLED and LCD displays
|
|
|
|
* @see https://github.com/olikraus/u8g2
|
2021-10-06 15:16:25 +02:00
|
|
|
*
|
|
|
|
* ## Requirements
|
|
|
|
*
|
|
|
|
* Using SDL requires more stack so in case you are using it add
|
|
|
|
*
|
|
|
|
* ```makefile
|
|
|
|
* CFLAGS += '-DTHREAD_STACKSIZE_MAIN= 48*1024'
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* to your makefile.
|
|
|
|
* 48kB is enough for the test other uses may need more or may
|
|
|
|
* need this to be applied to other threads using `THREAD_STACKSIZE_DEFAULT`
|
2022-01-25 17:41:40 +01:00
|
|
|
*
|
|
|
|
* @include pkg/u8g2/README.md
|
2021-10-06 15:16:25 +02:00
|
|
|
*/
|