Skip to content

Commit 77d05f5

Browse files
Laurence BankLaurence Bank
authored andcommitted
Attempt to fix doxygen errors
1 parent c035859 commit 77d05f5

File tree

2 files changed

+6
-13
lines changed

2 files changed

+6
-13
lines changed

Adafruit_GFX.cpp

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,10 @@ void Adafruit_GFX::writeFillRect(int16_t x, int16_t y, int16_t w, int16_t h,
248248
/*!
249249
@brief set the address window (memory area), overwrite in subclasses if
250250
needed
251+
@param x starting x coordinate
252+
@param y starting y coordinate
253+
@param w width in pixels
254+
@param h height in pixels
251255
*/
252256
/**************************************************************************/
253257
void Adafruit_GFX::setAddrWindow(uint16_t x, uint16_t y, uint16_t w,
@@ -262,24 +266,15 @@ void Adafruit_GFX::setAddrWindow(uint16_t x, uint16_t y, uint16_t w,
262266
/*!
263267
@brief write len pixels of the given color, overwrite in subclasses if
264268
needed
269+
@param color 16-bit 5-6-5 color to write
270+
@param len number of pixels to write
265271
*/
266272
/**************************************************************************/
267273
void Adafruit_GFX::writeColor(uint16_t color, uint32_t len) {
268274
(void)color;
269275
(void)len;
270276
}
271277

272-
/**************************************************************************/
273-
/*!
274-
@brief write a buffer of pixels, overwrite in subclasses if needed
275-
*/
276-
void Adafruit_GFX::writePixels(uint16_t *colors, uint32_t len, bool block,
277-
bool bigEndian) {
278-
(void)colors;
279-
(void)len;
280-
(void)block;
281-
(void)bigEndian;
282-
}
283278
/**************************************************************************/
284279
/*!
285280
@brief End a display-writing routine, overwrite in subclasses if

Adafruit_GFX.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ class Adafruit_GFX : public Print {
3434
virtual void startWrite(void);
3535
virtual void setAddrWindow(uint16_t x, uint16_t y, uint16_t w, uint16_t h);
3636
virtual void writeColor(uint16_t color, uint32_t len);
37-
virtual void writePixels(uint16_t *colors, uint32_t len, bool block,
38-
bool bigEndian);
3937
virtual void writePixel(int16_t x, int16_t y, uint16_t color);
4038
virtual void writeFillRect(int16_t x, int16_t y, int16_t w, int16_t h,
4139
uint16_t color);

0 commit comments

Comments
 (0)