Skip to content

Commit acbf9a6

Browse files
committed
v1.3.3 - fix compiler warnings
1 parent d6f80f1 commit acbf9a6

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SparkFun Micro OLED Breakout",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"keywords": "display oled",
55
"description": "Library for the SparkFun Micro OLED Breakout",
66
"repository":

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SparkFun Micro OLED Breakout
2-
version=1.3.2
2+
version=1.3.3
33
author=SparkFun Electronics <[email protected]>
44
maintainer=SparkFun Electronics <sparkfun.com>
55
sentence=Library for the <a href="https://www.sparkfun.com/products/13003">SparkFun Micro OLED Breakout</a>.

src/SFE_MicroOLED.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ Draw color pixel in the screen buffer's x,y position with NORM or XOR draw mode.
625625
*/
626626
void MicroOLED::pixel(uint8_t x, uint8_t y, uint8_t color, uint8_t mode)
627627
{
628-
if ((x < 0) || (x >= LCDWIDTH) || (y < 0) || (y >= LCDHEIGHT))
628+
if ((x >= LCDWIDTH) || (y >= LCDHEIGHT))
629629
return;
630630

631631
if (mode == XOR)
@@ -1059,7 +1059,9 @@ uint8_t MicroOLED::getFontType(void)
10591059
*/
10601060
uint8_t MicroOLED::setFontType(uint8_t type)
10611061
{
1062-
if ((type >= MAXFONTS) || (fontsPointer[type] == NULL))
1062+
if (type >= MAXFONTS)
1063+
return false;
1064+
if (fontsPointer[type] == NULL)
10631065
return false;
10641066

10651067
fontType = type;
@@ -1313,6 +1315,8 @@ void MicroOLED::drawBitmap(uint8_t *bitArray)
13131315
//Use http://en.radzio.dxp.pl/bitmap_converter/ to generate output
13141316
//Make sure the bitmap is n*8 pixels tall (pad white pixels to lower area as needed)
13151317
//Otherwise the bitmap bitmap_converter will compress some of the bytes together
1318+
//TO DO: fix compiler warning re. iconHeight being unused. Maybe use it to check if
1319+
// the icon will fit on the screen?
13161320
void MicroOLED::drawIcon(uint8_t offsetX, uint8_t offsetY, uint8_t iconWidth, uint8_t iconHeight, uint8_t *bitArray, uint8_t arraySizeInBytes, bool overwrite)
13171321
{
13181322
uint8_t columnNumber = offsetX;

src/hardware.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ boolean MicroOLED::i2cWriteMultiple(uint8_t address, uint8_t *dataBytes, size_t
116116
while (bytesLeftToWrite > 0)
117117
{
118118
size_t bytesToWrite; // Limit bytesToWrite to i2cTransactionSize
119-
if (bytesLeftToWrite > (i2cTransactionSize - 1))
119+
if (bytesLeftToWrite > ((size_t)i2cTransactionSize - 1))
120120
bytesToWrite = i2cTransactionSize - 1;
121121
else
122122
bytesToWrite = bytesLeftToWrite;

0 commit comments

Comments
 (0)