绑定 report,请问这个是什么意思
Search found 21 matches
- 2025年 Aug 7日 10:26
- Forum: TuyaOS-Zigbee设备开发
- Topic: 【Zigbee】 Zigbee协议接入涂鸦网关介绍
- Replies: 7
- Views: 23252
- 2025年 Aug 5日 20:06
- Forum: TuyaOS-Zigbee设备开发
- Topic: 请问zigbee os开发,如何主动同步网络时间
- Replies: 4
- Views: 1619
Re: 请问zigbee os开发,如何主动同步网络时间
获取到时间后,如何写入系统呢
- 2025年 Aug 4日 09:55
- Forum: TuyaOS-Zigbee设备开发
- Topic: 请问zigbee os开发,如何主动同步网络时间
- Replies: 4
- Views: 1619
请问zigbee os开发,如何主动同步网络时间
有时候,会出现如图中的本地时间同步错误的问题。请问该怎么主动再次获取网络时间
- 2025年 Jul 11日 17:09
- Forum: TuyaOS-Zigbee设备开发
- Topic: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
- Replies: 27
- Views: 3684
Re: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
分包比不分包慢了很多,有什么办法加快嘛
- 2025年 Jul 11日 16:25
- Forum: TuyaOS-Zigbee设备开发
- Topic: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
- Replies: 27
- Views: 3684
- 2025年 Jul 11日 14:48
- Forum: TuyaOS-Zigbee设备开发
- Topic: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
- Replies: 27
- Views: 3684
Re: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
这个是我使用的例程,sdk是TLSR8258_TuyaOS-3.11.1
- 2025年 Jul 11日 11:01
- Forum: TuyaOS-Zigbee设备开发
- Topic: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
- Replies: 27
- Views: 3684
Re: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
您好,我这样子修改了还是失败 :( 顺便,能力集应该不用改吧? Firmware_Information: description: "this is a demo project" device_role: "router" # router/sleep_end_dev image_type: 0xD3A3 #0x1602 manufacture_id: 0x1141 # 0x1002 model_id: "TS0006" manufacture_name: "_TZE214_xxxxxxx" # capacit...
- 2025年 Jul 10日 18:20
- Forum: TuyaOS-Zigbee设备开发
- Topic: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
- Replies: 27
- Views: 3684
Re: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
VOID_T air_mcu_DP_report_cmd_send(UINT8_T *data, UINT8_T data_len, TAL_SEND_RESULT_CB result) { TAL_ZG_SEND_DATA_T send_data; if ((NULL == data) || (data_len > MAX_ZIGBEE_PAYLOAD_SIZE)) { if (data_len > MAX_ZIGBEE_PAYLOAD_SIZE) { UINT16_T sn = tts_get_sn(); TAL_PR_HEXDUMP_NOTICE("multiple_packe...
- 2025年 Jul 10日 18:19
- Forum: TuyaOS-Zigbee设备开发
- Topic: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
- Replies: 27
- Views: 3684
Re: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
这里是调用: tal_zigbee_start_send_multiple_packet_handle(0x0000, CLUSTER_PRIVATE_TUYA_CLUSTER_ID, 1, 0, data_len, data, data_len, &tts_file); data_len=68 data是下面的数据 multiple_packet 68: 00 2b d1 00 00 3e 00 0a 01 00 03 60 03 9c 00 01 00 01 03 00 03 60 03 9c 00 02 00 02 05 00 03 60 03 9c 00 02 00 01 07...
- 2025年 Jul 10日 18:03
- Forum: TuyaOS-Zigbee设备开发
- Topic: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
- Replies: 27
- Views: 3684
Re: 请问上报的dp数据长度超过64byte的时候该怎么上传? 分包?如何分?
已经不卡死了,但是还是没成功上报 bool_t file_send_transfer_end_callback(UINT16_T addr, UINT32_T file_id, bool_t result, UINT8_T *buf, UINT16_T len) { TAL_PR_NOTICE("file_id %x send result:%x buf ptr:%x\r\n", file_id, result, buf); if (buf) { tal_free(buf); buf = NULL; } //__inner_file_send_buf = NULL; ret...