Fix in live view, larger boxes in CSS, SPI-Speed define

Fixed missing HM800 in liveView

Larger boxes in CSS

Introduced SPI speed define for reduced speed (1MHz) for increased stability
This commit is contained in:
docBmuc 2022-05-02 19:06:10 +02:00
parent 2abd388726
commit 59b6addccf
4 changed files with 9 additions and 5 deletions

View file

@ -388,7 +388,8 @@ void app::showLiveData(void) {
uint8_t modNum, pos;
switch(iv->type) {
default: modNum = 1; break;
case INV_TYPE_HM600: modNum = 2; break;
case INV_TYPE_HM600:
case INV_TYPE_HM800: modNum = 2; break;
case INV_TYPE_HM1200: modNum = 4; break;
}