1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-19 21:18:14 +00:00

fixup! fixup! feat(core): change display type for model R

This commit is contained in:
tychovrahe 2022-11-01 12:07:28 +01:00
parent 187d69a80e
commit f5e95b9b7b

View File

@ -230,9 +230,7 @@ void display_init(void) {
display_refresh();
}
void display_reinit(void){
display_init();
}
void display_reinit(void) { display_init(); }
static inline uint8_t reverse_byte(uint8_t b) {
b = (b & 0xF0) >> 4 | (b & 0x0F) << 4;