求助;涂鸦平台买的T5-E1-IPEX模组回来自己画板,烧录程序后不断重启。

Wi-Fi 设备、蜂窝设备、WuKongAI、开发板、TuyaOS 移植等


Post Reply
chenyi
Posts: 7

在T5-E1-IPEX开发板上调试好功能,但是在我们自己画的板烧录进去后不断重启。log在下面附件,什么原因?
SDK是T5——TuyaOS-3.12.14

chenyi
Posts: 7

Re: 求助;涂鸦平台买的T5-E1-IPEX模组回来自己画板,烧录程序后不断重启。

void show_reset_reason(void)
{
// Modified by TUYA Start
BK_LOGW(TAG, "reason - %s\r\n", misc_get_start_type_str(s_start_type));
if(RESET_SOURCE_DEEPPS_GPIO == s_start_type)
{
#if CONFIG_DEEP_PS
BK_LOGW(TAG, "by gpio - %d\r\n", bk_misc_wakeup_get_gpio_num());
#else
#ifdef CONFIG_GPIO_DYNAMIC_WAKEUP_SUPPORT
BK_LOGW(TAG, "by gpio - %d\r\n", bk_gpio_get_wakeup_gpio_id());
#endif
#endif
}
BK_LOGW(TAG, "regs - %x, %x, %x\r\n", s_start_type, s_misc_value_save, s_mem_value_save);
// Modified by TUYA End
}

开发板上电的时候,打印是:
reason - power on
regs - 0, 0, 0
start user app thread.

然后我们自己画的板上电的时候,打印是:
reason - unknown
regs - 7f, 7f, 0
start user app thread.

是什么原因呢?

chenyi
Posts: 7

Re: 求助;涂鸦平台买的T5-E1-IPEX模组回来自己画板,烧录程序后不断重启。

tuya log.txt
(49.52 KiB) Downloaded 43 times

这是重启板子打印的log

User avatar
chenyisong
Posts: 140

Re: 求助;涂鸦平台买的T5-E1-IPEX模组回来自己画板,烧录程序后不断重启。

看下是不是电源问题,可以参考一下我们的设计
https://developer.tuya.com/cn/docs/iot- ... xehig1cabj

chenyi
Posts: 7

Re: 求助;涂鸦平台买的T5-E1-IPEX模组回来自己画板,烧录程序后不断重启。

chenyisong 2025年 Aug 5日 09:57

看下是不是电源问题,可以参考一下我们的设计
https://developer.tuya.com/cn/docs/iot- ... xehig1cabj

从打印的log,能看出什么问题吗。我们板子设计就是参考开发板原理图来的。

Post Reply