This commit is contained in:
e2002
2022-04-10 09:47:47 +03:00
parent d2e0f6aaab
commit 520b3455d1
3 changed files with 8 additions and 2 deletions

View File

@@ -281,6 +281,9 @@ Work is in progress...
--- ---
## Version history ## Version history
#### v0.6.121
- fixed compiling error with DSP_GC9106 option
#### v0.6.120 #### v0.6.120
- added support for GC9106 160x80 SPI displays - added support for GC9106 160x80 SPI displays
- fixed compiling error with DSP_DUMMY option - fixed compiling error with DSP_DUMMY option

View File

@@ -1,7 +1,7 @@
#ifndef options_h #ifndef options_h
#define options_h #define options_h
#define VERSION "0.6.120" #define VERSION "0.6.121"
/******************************************************* /*******************************************************
DO NOT EDIT THIS FILE. DO NOT EDIT THIS FILE.

View File

@@ -22,6 +22,9 @@
* *
*/ */
#include "../../options.h"
#if DSP_MODEL==DSP_GC9106
#include "Adafruit_GC9106Ex.h" #include "Adafruit_GC9106Ex.h"
#ifndef ARDUINO_STM32_FEATHER #ifndef ARDUINO_STM32_FEATHER
#include "pins_arduino.h" #include "pins_arduino.h"
@@ -309,4 +312,4 @@ void Adafruit_GC9106Ex::setAddrWindow(uint16_t x1, uint16_t y1, uint16_t w,
SPI_WRITE16(y2); SPI_WRITE16(y2);
writeCommand(GC9106_RAMWR); // Write to RAM writeCommand(GC9106_RAMWR); // Write to RAM
} }
#endif