1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/drivers/epd_bw_spi_disp_dev: fix accidental use of FPU

This commit is contained in:
Marian Buschsieweke 2023-05-31 18:12:30 +02:00
parent 67c011f5a4
commit 340b2b6d71
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94

View File

@ -53,7 +53,7 @@ int main(void)
.x1 = 0,
.x2 = riot_200_width - 1,
.y1 = 0,
.y2 = riot_200_width - 1.
.y2 = riot_200_width - 1,
};
dev->driver = &epd_bw_spi_disp_dev_driver;
@ -70,7 +70,7 @@ int main(void)
.x1 = x,
.x2 = x + riot_32_width - 1,
.y1 = y,
.y2 = y + riot_32_height - 1.
.y2 = y + riot_32_height - 1,
};
disp_dev_map(dev, &small_area, (void *)riot_logo_32);