Skip to content

Commit

Permalink
correct vendor waveform frame time
Browse files Browse the repository at this point in the history
  • Loading branch information
vroland committed Mar 24, 2021
1 parent c1740ad commit 240f1f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/epd_driver/include/epd_internals.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#endif

/// Frame draw time for monochrome mode in 1/10 us.
#define MONOCHROME_FRAME_TIME 100
#define MONOCHROME_FRAME_TIME 120

#if defined(CONFIG_EPD_DISPLAY_TYPE_ED097OC4) || \
defined(CONFIG_EPD_DISPLAY_TYPE_ED097TC2) || \
Expand Down
2 changes: 1 addition & 1 deletion src/epd_driver/render.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ inline int max(int x, int y) { return x > y ? x : y; }

const int clear_cycle_time = 12;

const int DEFAULT_FRAME_TIME = 25;
const int DEFAULT_FRAME_TIME = 120;

#define RTOS_ERROR_CHECK(x) \
do { \
Expand Down

0 comments on commit 240f1f7

Please sign in to comment.