Merge pull request #96 from lvgl/feature/build-all-drivers

Build all display drivers
This commit is contained in:
Tomas Rezucha 2021-08-10 07:37:11 +02:00 committed by GitHub
commit 280bebf52e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 90 additions and 92 deletions

View file

@ -180,7 +180,9 @@ void il3820_set_px_cb(lv_disp_drv_t * disp_drv, uint8_t* buf,
BIT_CLEAR(buf[byte_index], 7 - bit_index);
}
#else
#error "Unsupported orientation used"
(void)byte_index;
(void)bit_index;
assert(false); // Unsupported orientation configured. Crash if we get here, but allow compilation for CI
#endif
}