This commit is contained in:
e2002
2022-06-28 19:45:53 +03:00
parent 0d25b5fcd1
commit fb3e32c554
4 changed files with 6 additions and 1 deletions

View File

@@ -294,6 +294,9 @@ Work is in progress...
--- ---
## Version history ## Version history
#### v0.6.345
- fix compilation error in rssibitrate plugin with ILI9225 display
#### v0.6.344 #### v0.6.344
- fixed SPI-display bugs when used with VS1053B module - fixed SPI-display bugs when used with VS1053B module
- added example plugin for analog volume control ([exsamples/plugins/analogvolume.ino](exsamples/plugins/analogvolume.ino)) - added example plugin for analog volume control ([exsamples/plugins/analogvolume.ino](exsamples/plugins/analogvolume.ino))

View File

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

View File

@@ -70,6 +70,8 @@ class DspCore: public TFT_22_ILI9225 {
int16_t *y1, uint16_t *w, uint16_t *h); int16_t *y1, uint16_t *w, uint16_t *h);
void fillRect(int16_t x, int16_t y, int16_t w, int16_t h, void fillRect(int16_t x, int16_t y, int16_t w, int16_t h,
uint16_t color); uint16_t color);
int16_t width(void) { return (int16_t)maxX(); }
int16_t height(void) { return (int16_t)maxY(); }
private: private:
uint16_t swidth, sheight; uint16_t swidth, sheight;
uint16_t bgcolor, fgcolor; uint16_t bgcolor, fgcolor;

Binary file not shown.