nrf5/drivers: Adding space in macro.

This commit is contained in:
Glenn Ruben Bakke 2017-01-20 19:31:10 +01:00
parent 34aeaf97c1
commit c1a609653f
1 changed files with 1 additions and 1 deletions

View File

@ -28,6 +28,6 @@
#define RGB16_H__
#define RGB16(rrrrr32, gggggg64, bbbbb32) \
(((rrrrr32 & 248) | gggggg64 >> 5) << 8) + ((gggggg64 & 28)<< 3 | bbbbb32 >> 3)
(((rrrrr32 & 248) | gggggg64 >> 5) << 8) + ((gggggg64 & 28) << 3 | bbbbb32 >> 3)
#endif // RGB16_H__