upgrade mui v7, fix makefile build

This commit is contained in:
proddy
2025-03-26 20:24:08 +01:00
parent ac7e91beff
commit 0dcde46296
22 changed files with 289 additions and 275 deletions

View File

@@ -530,7 +530,11 @@ std::string calculate(const std::string & expr) {
stack.push_back(to_hex(static_cast<int>(rhd)));
break;
case 'd':
#ifndef EMSESP_STANDALONE
stack.push_back(to_string(rhd * esp_random() / UINT32_MAX));
#else
stack.push_back(to_string(rhd * random()));
#endif
break;
}
} break;