21 lines
400 B
C
21 lines
400 B
C
// SPDX-License-Identifier: Apache-2.0
|
|
/**
|
|
* @file "epd_board_m5papers3.h"
|
|
* @brief Board definition for M5Stack PaperS3, kept out-of-tree because upstream epdiy
|
|
* (https://github.com/vroland/epdiy) does not support this board.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <epd_board.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern const EpdBoardDefinition epd_board_m5papers3;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|