Merge pull request #235 from iprak/w600-pin-fixes

Fixed pins for W600 and W800
This commit is contained in:
openshwprojects
2022-10-04 13:45:35 +02:00
committed by GitHub
5 changed files with 115 additions and 51 deletions

View File

@ -103,8 +103,6 @@ const char htmlFooterInfo[] =
#define USER_SW_VER "W600_Test"
#elif defined(PLATFORM_W800)
#define USER_SW_VER "W800_Test"
#elif defined(PLATFORM_BL602)
#define USER_SW_VER "BL602_Test"
#else
#define USER_SW_VER "unknown"
#endif

View File

@ -101,7 +101,12 @@ const char *obktype = "BL602";
const char * apppage2 = "';"
" var obktype = 'BL602';"
" var device = 'http://";
#elif PLATFORM_W600 || PLATFORM_W800
#elif PLATFORM_W600
const char *obktype = "W600";
const char * apppage2 = "';"
" var obktype = 'W600';"
" var device = 'http://";
#elif PLATFORM_W800
const char *obktype = "W800";
const char * apppage2 = "';"
" var obktype = 'W800';"