28 lines
706 B
C
28 lines
706 B
C
/*----------------------------------------------------------------------------
|
|
* Copyright (c) TJD Technologies Co., Ltd. 2025. All rights reserved.
|
|
*
|
|
* Description: tencent_test_cmd_process.c
|
|
*
|
|
* Author: luziquan@ss-tjd.com
|
|
*
|
|
* Create: 2025-05-12
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#include "tencent_test_cmd_process.h"
|
|
#include "ate_at_process.h"
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
// #include "tc_iot_video_test.h"
|
|
|
|
#undef UNUSED
|
|
#define UNUSED(a) (void)(a)
|
|
|
|
result_t wechat_test(uint8_t *para, uint32_t para_len)
|
|
{
|
|
UNUSED(para);
|
|
UNUSED(para_len);
|
|
result_t result = {0};
|
|
// result.code = tc_iot_video_test();
|
|
return result;
|
|
}
|