diff --git a/.github/workflows/arm64_apk.env b/.github/workflows/arm64_apk.env index c7e138c..e961ace 100644 --- a/.github/workflows/arm64_apk.env +++ b/.github/workflows/arm64_apk.env @@ -1,4 +1,4 @@ -SDK_NAME=openwrt-sdk-mvebu-cortexa53_gcc-14.2.0_musl.Linux-x86_64 +SDK_NAME=openwrt-sdk-mvebu-cortexa53_gcc-14.3.0_musl.Linux-x86_64 SDK_EXT=tar.zst SDK_URL=https://downloads.openwrt.org/snapshots/targets/mvebu/cortexa53/ SDK_ARCH=aarch64_cortex-a53 diff --git a/.github/workflows/x64_apk.env b/.github/workflows/x64_apk.env index b301402..391834a 100644 --- a/.github/workflows/x64_apk.env +++ b/.github/workflows/x64_apk.env @@ -1,4 +1,4 @@ -SDK_NAME=openwrt-sdk-x86-64_gcc-14.2.0_musl.Linux-x86_64 +SDK_NAME=openwrt-sdk-x86-64_gcc-14.3.0_musl.Linux-x86_64 SDK_URL=https://downloads.openwrt.org/snapshots/targets/x86/64/ SDK_ARCH=x86_64 SDK_EXT=tar.zst diff --git a/application/quectel_CM_5G_M/src/main.c b/application/quectel_CM_5G_M/src/main.c index 1513f84..c2a4a5f 100644 --- a/application/quectel_CM_5G_M/src/main.c +++ b/application/quectel_CM_5G_M/src/main.c @@ -329,6 +329,7 @@ static int qmi_main(PROFILE_T *profile) // Only execute FCC authentication if the modem model requires it if (profile->needs_fcc_auth) { dbg_time("Executing FCC authentication for modem model: %s", profile->BaseBandVersion); + // Check if the fcc auth was successful char fcc_auth_success = 0; if (request_ops->requestFoxconnSetFccAuthentication) { @@ -349,6 +350,7 @@ static int qmi_main(PROFILE_T *profile) if (!qmierr) { dbg_time("Foxconn FCC Authentication V2 successful"); } + } } } else {