微拍移除重置电源的代码

lowmem
Matthew 2 months ago
parent 7ea3b47abb
commit 101d2b945a

@ -509,7 +509,15 @@ CPhoneDevice::CPhoneDevice(JavaVM* vm, jobject service, const std::string& appPa
localDelayTime = GetMicroTimeStamp();
// Reset all powers
GpioControl::setInt(CMD_SET_INIT_STATUS, 1);
char propValue[PROP_VALUE_MAX] = { 0 };
int res = __system_property_get("ro.product.model", propValue);
if (res > 0)
{
if (!startsWith(propValue, "xinying_WP_"))
{
GpioControl::setInt(CMD_SET_INIT_STATUS, 1);
}
}
RegisterHandlerForSignal(SIGUSR2);

Loading…
Cancel
Save