This commit is contained in:
e2002
2022-03-22 15:03:42 +03:00
parent ee2350e28f
commit 86cb367312
22 changed files with 323 additions and 224 deletions

View File

@@ -7,11 +7,11 @@
#include "../../config.h"
#include "../../network.h"
DisplayDummy::DisplayDummy() {
DspCore::DspCore() {
}
char* DisplayDummy::utf8Rus(const char* str, bool uppercase) {
char* DspCore::utf8Rus(const char* str, bool uppercase) {
int index = 0;
static char strn[BUFLEN];
bool E = false;
@@ -85,91 +85,91 @@ char* DisplayDummy::utf8Rus(const char* str, bool uppercase) {
return strn;
}
void DisplayDummy::apScreen() {
void DspCore::apScreen() {
}
void DisplayDummy::initD(uint16_t &screenwidth, uint16_t &screenheight) {
void DspCore::initD(uint16_t &screenwidth, uint16_t &screenheight) {
}
void DisplayDummy::drawLogo() {
void DspCore::drawLogo() {
}
void DisplayDummy::drawPlaylist(uint16_t currentItem, char* currentItemText) {
void DspCore::drawPlaylist(uint16_t currentItem, char* currentItemText) {
}
void DisplayDummy::clearDsp() {
void DspCore::clearDsp() {
}
void DisplayDummy::drawScrollFrame(uint16_t texttop, uint16_t textheight, uint16_t bg) {
void DspCore::drawScrollFrame(uint16_t texttop, uint16_t textheight, uint16_t bg) {
}
void DisplayDummy::getScrolBbounds(const char* text, const char* separator, byte textsize, uint16_t &tWidth, uint16_t &tHeight, uint16_t &sWidth) {
void DspCore::getScrolBbounds(const char* text, const char* separator, byte textsize, uint16_t &tWidth, uint16_t &tHeight, uint16_t &sWidth) {
}
void DisplayDummy::clearScroll(uint16_t texttop, uint16_t textheight, uint16_t bg) {
void DspCore::clearScroll(uint16_t texttop, uint16_t textheight, uint16_t bg) {
}
void DisplayDummy::centerText(const char* text, byte y, uint16_t fg, uint16_t bg) {
void DspCore::centerText(const char* text, byte y, uint16_t fg, uint16_t bg) {
}
void DisplayDummy::rightText(const char* text, byte y, uint16_t fg, uint16_t bg) {
void DspCore::rightText(const char* text, byte y, uint16_t fg, uint16_t bg) {
}
void DisplayDummy::displayHeapForDebug() {
void DspCore::displayHeapForDebug() {
}
void DisplayDummy::printClock(const char* timestr) {
void DspCore::printClock(const char* timestr) {
}
void DisplayDummy::drawVolumeBar(bool withNumber) {
void DspCore::drawVolumeBar(bool withNumber) {
}
void DisplayDummy::drawNextStationNum(uint16_t num) {
void DspCore::drawNextStationNum(uint16_t num) {
}
void DisplayDummy::frameTitle(const char* str) {
void DspCore::frameTitle(const char* str) {
}
void DisplayDummy::rssi(const char* str) {
void DspCore::rssi(const char* str) {
;
}
void DisplayDummy::ip(const char* str) {
void DspCore::ip(const char* str) {
}
void DisplayDummy::set_TextSize(uint8_t s) {
void DspCore::set_TextSize(uint8_t s) {
}
void DisplayDummy::set_TextColor(uint16_t fg, uint16_t bg) {
void DspCore::set_TextColor(uint16_t fg, uint16_t bg) {
}
void DisplayDummy::set_Cursor(int16_t x, int16_t y) {
void DspCore::set_Cursor(int16_t x, int16_t y) {
}
void DisplayDummy::printText(const char* txt) {
void DspCore::printText(const char* txt) {
}
void DisplayDummy::loop() {
void DspCore::loop() {
}