Compare commits

..

No commits in common. "d6f1e2f6b8f67ee58adfd0ae1d18d7dbd9de4def" and "5e387c24f5bb7b8eac02d5403f54ecd2080dca9c" have entirely different histories.

6 changed files with 58 additions and 119 deletions

3
.gitignore vendored
View File

@ -74,6 +74,3 @@ yarn-error.log
!.yarn/releases !.yarn/releases
!.yarn/sdks !.yarn/sdks
!.yarn/versions !.yarn/versions
# Local SDK workspace
sdk/

View File

@ -42,3 +42,7 @@ hermesEnabled=true
# This allows your app to draw behind system bars for an immersive UI. # This allows your app to draw behind system bars for an immersive UI.
# Note: Only works with ReactActivity and should not be used with custom Activity. # Note: Only works with ReactActivity and should not be used with custom Activity.
edgeToEdgeEnabled=false edgeToEdgeEnabled=false
org.gradle.java.home=E:\\jdk\\jdk-17.0.12

View File

@ -5,12 +5,10 @@ import { RootStackParamList } from "../App";
import RNFS from "react-native-fs"; import RNFS from "react-native-fs";
import { import {
startDfu, startDfu,
getDfuTargetId,
addDfuEventListener, addDfuEventListener,
DfuProgressEvent, DfuProgressEvent,
DfuStateEvent, DfuStateEvent,
} from "@systemic-games/react-native-nordic-nrf5-dfu"; } from "@systemic-games/react-native-nordic-nrf5-dfu";
import { useTranslation } from "react-i18next";
import MyStatusbar from "./component/MyStatusbar"; import MyStatusbar from "./component/MyStatusbar";
import MyHeader from "./component/MyHeader"; import MyHeader from "./component/MyHeader";
@ -65,45 +63,42 @@ const trace = (step: string, payload?: unknown) => {
export default function DfuScreen({ route, navigation }: Props) { export default function DfuScreen({ route, navigation }: Props) {
const { const {
deviceId, deviceId,
systemId,
address,
name, name,
firmware: deviceFirmware, firmware: deviceFirmware,
} = route.params; } = route.params;
const { t } = useTranslation();
const [progress, setProgress] = useState(0); const [progress, setProgress] = useState(0);
const [state, setState] = useState(t("dfu.preparing")); const [state, setState] = useState("准备中...");
const [error, setError] = useState<string>(); const [error, setError] = useState<string>();
const [latestVersion, setLatestVersion] = useState(t("dfu.reading")); const [latestVersion, setLatestVersion] = useState("读取中...");
const [isDfuRunning, setIsDfuRunning] = useState(false); const [isDfuRunning, setIsDfuRunning] = useState(false);
const startedRef = useRef(false); const startedRef = useRef(false);
const mapDfuStateToLabel = (s: string): string => { const mapDfuStateToChinese = (s: string): string => {
switch (s) { switch (s) {
case "connecting": case "connecting":
return t("dfu.stateConnecting"); return "连接中…";
case "starting": case "starting":
return t("dfu.stateStarting"); return "初始化中…";
case "enablingDfuMode": case "enablingDfuMode":
return t("dfu.stateEnablingDfuMode"); return "启用 DFU 模式…";
case "uploading": case "uploading":
return t("dfu.stateUploading"); return "上传固件中…";
case "validating": case "validating":
return t("dfu.stateValidating"); return "校验固件…";
case "disconnecting": case "disconnecting":
return t("dfu.stateDisconnecting"); return "断开连接…";
case "completed": case "completed":
return t("dfu.stateCompleted"); return "升级完成";
case "aborted": case "aborted":
return t("dfu.stateAborted"); return "已取消";
case "failed": case "failed":
case "dfu_failed": case "dfu_failed":
return t("dfu.stateFailed"); return "升级失败";
case "initializing": case "initializing":
return t("dfu.stateInitializing"); return "启动中…";
case "errored": case "errored":
return t("dfu.stateErrored"); return "升级出错!";
default: default:
return s; return s;
} }
@ -113,11 +108,11 @@ export default function DfuScreen({ route, navigation }: Props) {
const unsubscribe = navigation.addListener("beforeRemove", (e) => { const unsubscribe = navigation.addListener("beforeRemove", (e) => {
if (!isDfuRunning) return; if (!isDfuRunning) return;
e.preventDefault(); e.preventDefault();
Alert.alert(t("dfu.pleaseWait"), t("dfu.doNotReturn")); Alert.alert("请稍候", "正在升级,请勿返回或关闭应用!");
}); });
return unsubscribe; return unsubscribe;
}, [navigation, isDfuRunning, t]); }, [navigation, isDfuRunning]);
useEffect(() => { useEffect(() => {
trace("screen mounted", { trace("screen mounted", {
@ -157,30 +152,18 @@ export default function DfuScreen({ route, navigation }: Props) {
setError(undefined); setError(undefined);
const rawDeviceId = String(deviceId ?? "").trim(); const rawDeviceId = String(deviceId ?? "").trim();
const rawSystemId = String(systemId ?? rawDeviceId).trim(); const safeDeviceId = rawDeviceId;
const rawAddress =
typeof address === "number"
? address
: address !== undefined && address !== null
? Number(address)
: undefined;
const safeDeviceId = getDfuTargetId({
systemId: rawSystemId,
address: Number.isFinite(rawAddress) ? rawAddress : undefined,
});
const firmwareText = String(deviceFirmware ?? "").trim(); const firmwareText = String(deviceFirmware ?? "").trim();
trace("resolved input", { trace("resolved input", {
rawDeviceId, rawDeviceId,
rawSystemId,
rawAddress,
safeDeviceId, safeDeviceId,
firmwareText, firmwareText,
}); });
if (!safeDeviceId) { if (!safeDeviceId) {
throw new Error(t("dfu.invalidTargetDeviceId")); throw new Error("无法生成 DFU 目标设备 ID");
} }
const currentFw = parseFirmwareVersion(firmwareText); const currentFw = parseFirmwareVersion(firmwareText);
@ -195,9 +178,7 @@ export default function DfuScreen({ route, navigation }: Props) {
trace("manifest fetch response", { status: manifestResp.status }); trace("manifest fetch response", { status: manifestResp.status });
if (!manifestResp.ok) { if (!manifestResp.ok) {
throw new Error( throw new Error(`manifest 下载失败HTTP ${manifestResp.status}`);
t("dfu.manifestDownloadFailed", { status: manifestResp.status })
);
} }
const manifestText = await manifestResp.text(); const manifestText = await manifestResp.text();
@ -211,11 +192,7 @@ export default function DfuScreen({ route, navigation }: Props) {
try { try {
manifest = JSON.parse(manifestText) as { devices: DeviceInfo[] }; manifest = JSON.parse(manifestText) as { devices: DeviceInfo[] };
} catch (e) { } catch (e) {
throw new Error( throw new Error("manifest 不是合法 JSON: " + manifestText.slice(0, 200));
t("dfu.manifestInvalidJson", {
preview: manifestText.slice(0, 200),
})
);
} }
const deviceInfo = manifest.devices.find( const deviceInfo = manifest.devices.find(
@ -227,9 +204,9 @@ export default function DfuScreen({ route, navigation }: Props) {
if (!deviceInfo) { if (!deviceInfo) {
setIsDfuRunning(false); setIsDfuRunning(false);
Alert.alert( Alert.alert(
t("dfu.cannotUpgrade"), "无法升级",
t("dfu.hardwareNotFound", { hardware: currentFw.hardware }), `未找到 hardware=${currentFw.hardware} 的固件`,
[{ text: t("dfu.confirm"), onPress: () => navigation.goBack() }] [{ text: "确认", onPress: () => navigation.goBack() }]
); );
return; return;
} }
@ -241,17 +218,14 @@ export default function DfuScreen({ route, navigation }: Props) {
if (latestFw.hardware !== currentFw.hardware) { if (latestFw.hardware !== currentFw.hardware) {
throw new Error( throw new Error(
t("dfu.hardwareMismatch", { `服务器固件硬件号不匹配:当前 ${currentFw.hardware},服务器 ${latestFw.hardware}`
current: currentFw.hardware,
latest: latestFw.hardware,
})
); );
} }
if (latestFw.iteration <= currentFw.iteration) { if (latestFw.iteration <= currentFw.iteration) {
setIsDfuRunning(false); setIsDfuRunning(false);
Alert.alert(t("dfu.noNeedUpgrade"), t("dfu.alreadyLatest"), [ Alert.alert("无需升级", "已是最新固件,无需升级", [
{ text: t("dfu.confirm"), onPress: () => navigation.goBack() }, { text: "确认", onPress: () => navigation.goBack() },
]); ]);
return; return;
} }
@ -284,18 +258,14 @@ export default function DfuScreen({ route, navigation }: Props) {
trace("firmware download result", downloadResult); trace("firmware download result", downloadResult);
if (downloadResult.statusCode !== 200) { if (downloadResult.statusCode !== 200) {
throw new Error( throw new Error(`固件包下载失败HTTP ${downloadResult.statusCode}`);
t("dfu.firmwareDownloadFailed", {
status: downloadResult.statusCode,
})
);
} }
const fileExists = await RNFS.exists(localPath); const fileExists = await RNFS.exists(localPath);
trace("firmware exists check", { fileExists }); trace("firmware exists check", { fileExists });
if (!fileExists) { if (!fileExists) {
throw new Error(t("dfu.firmwareFileMissing", { path: localPath })); throw new Error(`固件包下载后文件不存在: ${localPath}`);
} }
const fileStat = await RNFS.stat(localPath); const fileStat = await RNFS.stat(localPath);
@ -303,9 +273,7 @@ export default function DfuScreen({ route, navigation }: Props) {
trace("firmware stat", fileStat); trace("firmware stat", fileStat);
if (!Number.isFinite(fileSize) || fileSize <= 0) { if (!Number.isFinite(fileSize) || fileSize <= 0) {
throw new Error( throw new Error(`固件包文件无效,大小为 ${fileStat.size}`);
t("dfu.firmwareFileInvalid", { size: String(fileStat.size) })
);
} }
const dfuFilePath = "file://" + localPath; const dfuFilePath = "file://" + localPath;
@ -342,9 +310,9 @@ export default function DfuScreen({ route, navigation }: Props) {
trace("startDfu resolved successfully"); trace("startDfu resolved successfully");
setIsDfuRunning(false); setIsDfuRunning(false);
Alert.alert(t("dfu.upgradeSuccess"), t("dfu.upgradeSuccessMessage"), [ Alert.alert("升级成功", "升级成功,请重连设备", [
{ {
text: t("dfu.confirm"), text: "确认",
onPress: () => { onPress: () => {
navigation.reset({ navigation.reset({
index: 0, index: 0,
@ -361,21 +329,21 @@ export default function DfuScreen({ route, navigation }: Props) {
error: err, error: err,
}); });
setIsDfuRunning(false); setIsDfuRunning(false);
setError(err?.message || t("dfu.dfuFailed")); setError(err?.message || "DFU失败");
Alert.alert(t("dfu.upgradeFailed"), err?.message || t("dfu.dfuFailed"), [ Alert.alert("升级失败", err?.message || "DFU失败", [
{ text: t("dfu.confirm"), onPress: () => navigation.goBack() }, { text: "确认", onPress: () => navigation.goBack() },
]); ]);
} }
}; };
runDfu(); runDfu();
}, [deviceId, name, deviceFirmware, navigation, t]); }, [deviceId, name, deviceFirmware, navigation]);
return ( return (
<View style={styles.container}> <View style={styles.container}>
<MyStatusbar backgroundColor="#FFFFFF" dark /> <MyStatusbar backgroundColor="#FFFFFF" dark />
<MyHeader <MyHeader
title={t("dfu.title")} title="固件升级"
textColor="#333" textColor="#333"
backgroundColor="#FFFFFF" backgroundColor="#FFFFFF"
navigation={navigation} navigation={navigation}
@ -383,26 +351,20 @@ export default function DfuScreen({ route, navigation }: Props) {
<View style={styles.content}> <View style={styles.content}>
<View style={styles.row}> <View style={styles.row}>
<Text style={styles.titleText}> <Text style={styles.titleText}>: {name || "--"}</Text>
{t("dfu.bluetoothName")}: {name || "--"} </View>
</Text>
<View style={styles.row}>
<Text style={styles.normalText}>: {latestVersion}</Text>
</View>
<View style={styles.row}>
<Text style={styles.normalText}>: {deviceFirmware || "--"}</Text>
</View> </View>
<View style={styles.row}> <View style={styles.row}>
<Text style={styles.normalText}> <Text style={styles.normalText}>
{t("dfu.latestVersion")}: {latestVersion} : {mapDfuStateToChinese(state)}
</Text>
</View>
<View style={styles.row}>
<Text style={styles.normalText}>
{t("dfu.currentVersion")}: {deviceFirmware || "--"}
</Text>
</View>
<View style={styles.row}>
<Text style={styles.normalText}>
{t("dfu.upgradeStatus")}: {mapDfuStateToLabel(state)}
</Text> </Text>
</View> </View>

View File

@ -217,34 +217,24 @@ export default function InfoScreen({ route, navigation }: Props) {
}; };
const readBatteryCharacteristic = async () => { const readBatteryCharacteristic = async () => {
let lastValidBattery: number | null = null; for (let attempt = 0; attempt < 3; attempt += 1) {
for (let attempt = 0; attempt < 4; attempt += 1) {
try { try {
const bytes = await readCharacteristicWithRetry("180f", "2a19", 1); const bytes = await readCharacteristicWithRetry("180f", "2a19", 1);
const batteryValue = bytes[0]; const batteryValue = bytes[0];
if ( if (Number.isInteger(batteryValue) && batteryValue >= 0 && batteryValue <= 100) {
Number.isInteger(batteryValue) && return `${batteryValue}%`;
batteryValue >= 0 &&
batteryValue <= 100
) {
if (lastValidBattery !== null && lastValidBattery === batteryValue) {
return `${batteryValue}%`;
}
lastValidBattery = batteryValue;
} }
} catch { } catch {
// Continue retrying with a short gap below. // Continue retrying with a short gap below.
} }
if (attempt < 3) { if (attempt < 2) {
await sleep(220); await sleep(180);
} }
} }
return lastValidBattery !== null ? `${lastValidBattery}%` : "未知"; return "未知";
}; };
const subscribePowerDataIfNeeded = async () => { const subscribePowerDataIfNeeded = async () => {

View File

@ -189,16 +189,9 @@
"doNotReturn": "Updating in progress, do not go back or close the app!", "doNotReturn": "Updating in progress, do not go back or close the app!",
"cannotUpgrade": "Cannot Update", "cannotUpgrade": "Cannot Update",
"hardwareNotFound": "Firmware not found for hardware version {{hardware}}", "hardwareNotFound": "Firmware not found for hardware version {hardware}",
"noNeedUpgrade": "No Update Needed", "noNeedUpgrade": "No Update Needed",
"alreadyLatest": "Already the latest firmware, no update needed", "alreadyLatest": "Already the latest firmware, no update needed",
"invalidTargetDeviceId": "Unable to generate DFU target device ID",
"manifestDownloadFailed": "Manifest download failed, HTTP {{status}}",
"manifestInvalidJson": "Manifest is not valid JSON: {{preview}}",
"hardwareMismatch": "Firmware hardware mismatch: current {{current}}, server {{latest}}",
"firmwareDownloadFailed": "Firmware package download failed, HTTP {{status}}",
"firmwareFileMissing": "Firmware package file not found after download: {{path}}",
"firmwareFileInvalid": "Firmware package file is invalid, size {{size}}",
"upgradeSuccess": "Update Successful", "upgradeSuccess": "Update Successful",
"upgradeSuccessMessage": "Update successful, please reconnect the device", "upgradeSuccessMessage": "Update successful, please reconnect the device",

View File

@ -189,16 +189,9 @@
"doNotReturn": "正在升级,请勿返回或关闭应用!", "doNotReturn": "正在升级,请勿返回或关闭应用!",
"cannotUpgrade": "无法升级", "cannotUpgrade": "无法升级",
"hardwareNotFound": "未找到硬件版本 {{hardware}} 的固件", "hardwareNotFound": "未找到硬件版本 {hardware} 的固件",
"noNeedUpgrade": "无需升级", "noNeedUpgrade": "无需升级",
"alreadyLatest": "已是最新固件,无需升级", "alreadyLatest": "已是最新固件,无需升级",
"invalidTargetDeviceId": "无法生成 DFU 目标设备 ID",
"manifestDownloadFailed": "manifest 下载失败HTTP {{status}}",
"manifestInvalidJson": "manifest 不是合法 JSON: {{preview}}",
"hardwareMismatch": "服务器固件硬件号不匹配:当前 {{current}},服务器 {{latest}}",
"firmwareDownloadFailed": "固件包下载失败HTTP {{status}}",
"firmwareFileMissing": "固件包下载后文件不存在: {{path}}",
"firmwareFileInvalid": "固件包文件无效,大小为 {{size}}",
"upgradeSuccess": "升级成功", "upgradeSuccess": "升级成功",
"upgradeSuccessMessage": "升级成功,请重连设备", "upgradeSuccessMessage": "升级成功,请重连设备",