Page 1 of 1

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

Posted: 2025年 Aug 4日 18:17
by chenyi

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


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

Posted: 2025年 Aug 4日 18:46
by chenyi

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.

是什么原因呢?


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

Posted: 2025年 Aug 4日 18:56
by chenyi
tuya log.txt
(49.52 KiB) Downloaded 42 times

这是重启板子打印的log


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

Posted: 2025年 Aug 5日 09:57
by chenyisong

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


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

Posted: 2025年 Aug 5日 10:50
by chenyi
chenyisong 2025年 Aug 5日 09:57

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

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