Skip to content

Commit 520b345

Browse files
committed
v0.6.121
1 parent d2e0f6a commit 520b345

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,9 @@ Work is in progress...
281281

282282
---
283283
## Version history
284+
#### v0.6.121
285+
- fixed compiling error with DSP_GC9106 option
286+
284287
#### v0.6.120
285288
- added support for GC9106 160x80 SPI displays
286289
- fixed compiling error with DSP_DUMMY option

yoRadio/options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef options_h
22
#define options_h
33

4-
#define VERSION "0.6.120"
4+
#define VERSION "0.6.121"
55

66
/*******************************************************
77
DO NOT EDIT THIS FILE.

yoRadio/src/Adafruit_GC9106Ex/Adafruit_GC9106Ex.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
*
2323
*/
2424

25+
#include "../../options.h"
26+
#if DSP_MODEL==DSP_GC9106
27+
2528
#include "Adafruit_GC9106Ex.h"
2629
#ifndef ARDUINO_STM32_FEATHER
2730
#include "pins_arduino.h"
@@ -309,4 +312,4 @@ void Adafruit_GC9106Ex::setAddrWindow(uint16_t x1, uint16_t y1, uint16_t w,
309312
SPI_WRITE16(y2);
310313
writeCommand(GC9106_RAMWR); // Write to RAM
311314
}
312-
315+
#endif

0 commit comments

Comments
 (0)