This commit is contained in:
e2002
2024-12-15 17:52:45 +03:00
parent 850528ddd5
commit 051edee3ff
4 changed files with 8 additions and 5 deletions

View File

@@ -234,6 +234,9 @@ Work is in progress...
--- ---
## Version history ## Version history
#### v0.9.369
- fixed the issue with the non-functional HSPI bus
#### v0.9.368 #### v0.9.368
- SD Card - optimization and bug fixes - SD Card - optimization and bug fixes
- Config - improvements and bug fixes - Config - improvements and bug fixes

View File

@@ -12,10 +12,6 @@
Config config; Config config;
#if DSP_HSPI || TS_HSPI || VS_HSPI
SPIClass SPI2(HSPI);
#endif
void u8fix(char *src){ void u8fix(char *src){
char last = src[strlen(src)-1]; char last = src[strlen(src)-1];
if ((uint8_t)last >= 0xC2) src[strlen(src)-1]='\0'; if ((uint8_t)last >= 0xC2) src[strlen(src)-1]='\0';

View File

@@ -1,7 +1,7 @@
#ifndef options_h #ifndef options_h
#define options_h #define options_h
#define YOVERSION "0.9.368" #define YOVERSION "0.9.369"
/******************************************************* /*******************************************************
DO NOT EDIT THIS FILE. DO NOT EDIT THIS FILE.

View File

@@ -10,6 +10,10 @@
#include "core/mqtt.h" #include "core/mqtt.h"
#include "core/optionschecker.h" #include "core/optionschecker.h"
#if DSP_HSPI || TS_HSPI || VS_HSPI
SPIClass SPI2(HSPI);
#endif
extern __attribute__((weak)) void yoradio_on_setup(); extern __attribute__((weak)) void yoradio_on_setup();
void setup() { void setup() {