Fix magtag, openbook for EPaperDisplay constructor

This commit is contained in:
Dan Kulinski 2022-01-24 12:34:01 -07:00
parent ca8299e51b
commit 60801066b2
2 changed files with 4 additions and 2 deletions

View File

@ -98,7 +98,8 @@ void board_init(void) {
false, // busy_state
5, // seconds_per_frame
false, // chip_select (don't always toggle chip select)
false); // grayscale
false, // grayscale
false); // two_byte_sequence_length
}
bool board_requests_safe_mode(void) {

View File

@ -164,7 +164,8 @@ void board_init(void) {
false, // busy_state
5.0, // seconds_per_frame
false, // always_toggle_chip_select
true); // grayscale
true, // grayscale
false); // two_byte_sequence_length
}
bool board_requests_safe_mode(void) {