完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
我已经创建的项目下面使用PSoC creator(psoccreatorsetup_4.2_b574)和它的工作很好,但是现在我已经更新到PSoC creator(psoccreatorsetup_4.2_es100_b641)和简单的项目和程序的PSoC 6 BLE(cy8ckit-062-ble)
用“.HEX”文件。现在它不工作,甚至UART也没有工作,我检查了使用这两种方法的替代 没有替换文件时弹出窗口更新配置文件。硬件对于这两种情况保持不变。 StasMeTyKEY-RTCTFialal5.CydSN.ZIP 13.6兆字节 以上来自于百度翻译 以下为原文 I had created project attached below using PSoC creator(PSoCCreatorSetup_4.2_b574) and it is working fine, but now I have updated to PSoC creator(PSoCCreatorSetup_4.2_es100_b641) and simply built the project and programmed PSoC 6 BLE (CY8CKIT-062-BLE) with the ".hex" file. Now its not working, even UART is also not working , I checked using both methods by replacing and without replacing files when window for updated configuration files popped. Hardware remains same for both the cases. |
|
相关推荐
4个回答
|
|
“我测试了你的项目。UART打印功能很好。
没有印刷只是因为执行代码是停止在init_rtc()。更具体地说,停机是由下面的代码片段引起的: 如果(rtc_datetime.year >;cy_rtc_max_year)/ *如果用户输入4位数年信息,设置2位数年* / { RTCHDATEMEM.年份= RTCI DATETMETH.年%100U; } rtc_datetime.year就变成了0,超出范围的界定cy_rtc_is_year_long_valid(年)。 评论上面这段代码,代码可以顺利执行正常打印功能。 请检查您的代码逻辑。 从 福万 以上来自于百度翻译 以下为原文 "I tested your project. It's fine about UART printing function. There is no printing just because code execution is halted in init_RTC(). More specifically, the halt is caused by below code snippet: if(RTC_DateTime.year > CY_RTC_MAX_YEAR) /* If user input 4 digits Year information, set 2 digits Year */ { RTC_DateTime.year = RTC_DateTime.year % 100u; } RTC_DateTime.year then becomes 0, and beyond range defined in CY_RTC_IS_YEAR_LONG_VALID(year). Comment the above code snippet, code can executed smoothly with normal printing function. Please check your code logic. " From FWAN |
|
|
|
muuwfwr 发表于 2018-8-19 03:56 谢谢你,FWAN! 你是正确的有同样的错误在我的代码中你已经列出的,我感谢你找到确切的错误和在评论上述代码,代码开始使用PSoC Creator 4.2_es100_b641工作。但相同的代码没有任何修饰的工作完美而使用PSoC Creator建立4.2_b574。它应该停止根据cy_rtc_is_year_long_valid(年)但不。 以上来自于百度翻译 以下为原文 Thank you FWAN! you are correct there is same mistake in my code as you had listed above, I appreciate you found the exact bug and after commenting above mentioned code snippet ,code started working using PSoC creator 4.2_es100_b641. But same code without any modification is working perfectly fine while using PSoC creator 4.2_b574 for build. It should halt according to CY_RTC_IS_YEAR_LONG_VALID(year) but its not. |
|
|
|
diaoshayu 发表于 2018-8-19 04:03 阳光充足, 什么原因不太清楚。我不能在v574测试只有v641安装在我的平台。 你可以一步一步来,专门就行: cy_assert_l3(cy_rtc_is_year_long_valid(年)); 以上来自于百度翻译 以下为原文 Sunny, Not really sure about the reason. I am not able to test it on v574 since only v641 is installed on my platform. You can debug it step by step, specifically on the line: CY_ASSERT_L3(CY_RTC_IS_YEAR_LONG_VALID(year)); |
|
|
|
我调试发现问题是cy_rtc_is_year_long_valid(年)如下: 1。在PSoC Creator v574 cy_rtc_is_year_long_valid(年)被定义为 #定义cy_rtc_is_year_long_valid(年)(((年)& gt;= cy_rtc_two_thousand_years)| | ((年)& lt;= cy_rtc_twenty_one_hundred_years)) 2。在PSoC Creator v641 cy_rtc_is_year_long_valid(年)被定义为 #定义cy_rtc_is_year_long_valid(年)(((年)& gt;= cy_rtc_two_thousand_years)&;&; ((年)& lt;= cy_rtc_twenty_one_hundred_years)) 这是错误的PSoC Creator v574库文件,因此我的代码是很好的工作。 再次感谢你,弗恩。 以上来自于百度翻译 以下为原文 I debugged and found that problem is with CY_RTC_IS_YEAR_LONG_VALID(year) as follows: 1. In PSoC creator V574 CY_RTC_IS_YEAR_LONG_VALID(year) is defined as #define CY_RTC_IS_YEAR_LONG_VALID(year) (((year) >= CY_RTC_TWO_THOUSAND_YEARS) || ((year) <= CY_RTC_TWENTY_ONE_HUNDRED_YEARS)) 2. In PSoC creator V641 CY_RTC_IS_YEAR_LONG_VALID(year) is defined as #define CY_RTC_IS_YEAR_LONG_VALID(year) (((year) >= CY_RTC_TWO_THOUSAND_YEARS) && ((year) <= CY_RTC_TWENTY_ONE_HUNDRED_YEARS)) This was mistake in PSoC creator V574 library file hence my code was working fine in it. Thank you fwan, once again. |
|
|
|
只有小组成员才能发言,加入小组>>
751个成员聚集在这个小组
加入小组2064 浏览 1 评论
1824 浏览 1 评论
3632 浏览 1 评论
请问可以直接使用来自FX2LP固件的端点向主机FIFO写入数据吗?
1760 浏览 6 评论
1508 浏览 1 评论
CY8C4025LQI在程序中调用函数,通过示波器观察SCL引脚波形,无法将pin0.4(SCL)下拉是什么原因导致?
502浏览 2评论
CYUSB3065焊接到USB3.0 TYPE-B口的焊接触点就无法使用是什么原因导致的?
354浏览 2评论
CX3连接Camera修改分辨率之后,播放器无法播出camera的画面怎么解决?
409浏览 2评论
354浏览 2评论
使用stm32+cyw43438 wifi驱动whd,WHD驱动固件加载失败的原因?
851浏览 2评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-19 17:34 , Processed in 0.976627 second(s), Total 85, Slave 68 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号