Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: IL3829 e-Paper/e-Ink display driver #11078

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion drivers/il3829/il3829.c
Expand Up @@ -23,7 +23,7 @@
#include "il3829_params.h"
#include "il3829_internal.h"

#define ENABLE_DEBUG (1)
#define ENABLE_DEBUG (0)
#include "debug.h"

int il3829_init(il3829_t *dev, const spi_display_params_t *params,
Expand Down
2 changes: 1 addition & 1 deletion drivers/il3829/include/il3829_internal.h
Expand Up @@ -71,7 +71,7 @@ extern "C" {
/** @} */

/**
* @brief IL3829 Waiting estimates in microseconds
* @name IL3829 Waiting estimates in microseconds
* @{
*/
#define IL3829_WAIT_UPDATE_FULL (1200 * US_PER_MS)
Expand Down
4 changes: 3 additions & 1 deletion drivers/include/spi_display.h
Expand Up @@ -7,7 +7,9 @@
*/

/**
* @ingroup drivers_periph_spi_display
* @defgroup drivers_spi_display Driver elements for SPI driven displays
* @ingroup drivers_actuators
* @brief Common device driver elements for SPI driven displays
*
* @{
* @file
Expand Down
2 changes: 1 addition & 1 deletion drivers/spi_display/spi_display.c
Expand Up @@ -7,7 +7,7 @@
*/

/**
* @ingroup drivers_periph_spi_display
* @ingroup drivers_spi_display
*
* @{
* @file
Expand Down