Search found 7 matches
- 2022年 Dec 14日 14:17
- Forum: TuyaOS-Zigbee设备开发
- Topic: 【已解决】EFR32MG21A020平台的TuyaOS 3.6.1版本zigbee子设备的场景开关demo SDK
- Replies: 6
- Views: 1490
Re: EFR32MG21A020平台的TuyaOS 3.6.1版本zigbee子设备的场景开关demo SDK
#define DEVICE_MAX_CHANNELS 4 //Maximum number of supported channels #define CHANNEL_NUMS 4 //The current number of channels, the maximum cannot exceed DEVICE_MAX_CHANNELS #define CHANNEL0_MODE_FLASH_ID 0 #define CHANNEL1_MODE_FLASH_ID 1 #define CHANNEL2_MODE_FLASH_ID 2 #define CHANNEL3_MODE_FLASH_I...
- 2022年 Dec 7日 16:56
- Forum: TuyaOS-Zigbee设备开发
- Topic: 【已解决】自定义的dp点,怎么组建上报内容?
- Replies: 10
- Views: 3297
Re: 自定义的dp点,怎么组建上报内容?
发送函数照这个样式写。 VOID_T tuya_private_attr_report(TAL_SEND_QOS_E Qos, USHORT_T delay_ms, UINT8_T *data,UINT8_T len) { TAL_ZG_SEND_DATA_T send_data; tal_system_memset(&send_data, 0, sizeof(TAL_ZG_SEND_DATA_T)); send_data.qos = Qos; send_data.delay_time = delay_ms; send_data.zcl_id = ZCL_ID_WOINDOW_DATA...
- 2022年 Nov 22日 17:11
- Forum: TuyaOS-Zigbee设备开发
- Topic: 【已解决】wind ide zigbee SDK 编译环境问题
- Replies: 4
- Views: 1604
Re: 【zigbee求助】wind ide zigbee SDK 编译环境问题
客户重新更换了win10系统,重装了环境。
- 2022年 Nov 22日 10:31
- Forum: TuyaOS-Zigbee设备开发
- Topic: 【已解决】TLSR8258 zigbee SDK打开log后全擦1016K flash系统起不来
- Replies: 2
- Views: 1211
Re: TLSR8258 zigbee SDK打开log后全擦1016K flash系统起不来
如果是在power on中使用了串口打印,因为power on中还没有使能中断,所以串口会卡住。可以用gpio口模拟打印。 #define APP_DEBUG 1 bool_t app_print_get_cfg(uint8_t *print_type, uint8_t *disable_irq, GPIO_PORT_PIN_T *gpio) { gpio->port = PORT_C; gpio->pin = PIN_4; *print_type = 0; //1:uart, 0:gpio *disable_irq = 1; #ifdef APP_DEBUG return 1; #else ...
- 2022年 Nov 21日 10:46
- Forum: TuyaOS-Zigbee设备开发
- Topic: 【已解决】wind ide zigbee SDK 编译环境问题
- Replies: 4
- Views: 1604
Re: 【zigbee求助】wind ide zigbee SDK 编译环境问题
C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.4\common\bin
- 2022年 Nov 21日 09:58
- Forum: TuyaOS-Zigbee设备开发
- Topic: 【已解决】wind ide zigbee SDK 编译环境问题
- Replies: 4
- Views: 1604
【已解决】wind ide zigbee SDK 编译环境问题
sdk:EFR32MG21A020 3.5.2
客户电脑是win7系统
python 和iar 都安装好,编译报错。
- 2022年 Oct 18日 20:18
- Forum: TuyaOS-蓝牙设备开发
- Topic: 【已解决】ble设备回连问题
- Replies: 1
- Views: 1317
【已解决】ble设备回连问题
请教下我们ble配网成功后,断开连接回连这个过程是什么样的?我们做耳机产品断开连接经常回连不上。