diff -r 45647136ec95 -r 3cc32f97410c components/vnc_server/vnc-server.h --- a/components/vnc_server/vnc-server.h Mon Oct 29 12:16:37 2018 +0100 +++ b/components/vnc_server/vnc-server.h Mon Oct 29 19:37:14 2018 +0100 @@ -93,7 +93,7 @@ * @param x1 Start horizontal position. * @param x2 End of the horizontal position. * @param y The vertical position of the line. - * @param colour The RGB color of the line. + * @param color The RGB color of the line. */ void VncDrawHorzLine(uint16_t x1, uint16_t x2, uint16_t y, vnc_color_t color); @@ -122,7 +122,9 @@ void VncSoundBell(void); -/* Macro to convert from RGB to colour values */ +/** + * @brief Macro to convert from RGB to colour values + */ #define VNC_RGB2COL(r,g,b) (vnc_color_t)(((((uint8_t)r)&0xE0) >> 0) | ((((uint8_t)g)&0xE0) >> 3) | ((((uint8_t)b)&0xC0) >> 6))