STM32H750VB_EPD/Core/Inc/user_epd_impl.h
imi415 96b02c8774
Some checks failed
continuous-integration/drone/push Build is failing
Added LittleVGL.
2021-01-13 00:13:56 +08:00

13 lines
348 B
C

#ifndef __USER_EPD_IMPL_H
#define __USER_EPD_IMPL_H
#include "main.h"
#include "depg0213_epd.h"
depg0213_ret_t _epd_reset_cb(void *handle);
depg0213_ret_t _epd_poll_busy(void *handle);
depg0213_ret_t _epd_write_cmd_cb(void *handle, uint8_t *cmd, uint8_t len);
depg0213_ret_t _epd_write_data_cb(void *handle, uint8_t *data, uint16_t len);
#endif