fix(vd960DBN): add missing closing brace for case PUBLISH block in iot_process_recv

case PUBLISH: { ... } was missing its closing }, causing ARMCC to think
iot_send_heartbeat and iot_connect_broker were declared inside a function body.
This commit is contained in:
wangfq
2026-07-03 18:28:40 +08:00
parent 122c36bb9d
commit 39bda6067f
@@ -348,6 +348,7 @@ static void iot_process_recv(void) {
} }
} }
break; break;
}
case PINGRESP: case PINGRESP:
PRINT("IOT: ← PINGRESP\n"); PRINT("IOT: ← PINGRESP\n");