完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
嗨,伙计们,
我试图用UVCVideoClass例子来获得在FX3上的UART调试工作。 不幸的是,我只能在控制台上得到垃圾: 在我的串行控制台中,不是预期的“应用程序启动rn”,而是在我的串行控制台中得到“~(y)y=57”(i=115200—8n-1),我只提到这一点,因为当波特率没有被设置时,我已经看到了类似的错误。 这发生在每一个CYU3pDebug打印上。 我的UART配置: UARTCONtiON.BUDERATE = CyuU3PUAtgBaUrrAtdia115200;UARTCONTION.BUARTHORYONE STORITHOBIT;UARTCONTION.QUICE=CyuU3PUUARTHONIONQUITY;UARTCONTION.TXFULL = CyTrand;UARTCONTRO.RXFUNID= CYFLUE;UARTCONFIL.FROCCTRL = CyFLUE;UARTCONTION.ISDMA = CyTalm;可能有人请指点我。T方向?格雷兹,克里斯 以上来自于百度翻译 以下为原文 Hi guys, I am trying to get UART debugging working on the FX3 with the UVCVideoClass example. Unfortunately I only get garbage in my console: Instead of the expected "App Startedrn" I get "~_��y��} �Y = 57��" in my serial console (Which is set to 115200-8-N-1 - I only mention this because I have seen similar errors when the baudrate is not set up propperly). This happens with every CyU3PDebugPrint. My uart config: uartConfig.baudRate = CY_U3P_UART_BAUDRATE_115200; uartConfig.stopBit = CY_U3P_UART_ONE_STOP_BIT; uartConfig.parity = CY_U3P_UART_NO_PARITY; uartConfig.txEnable = CyTrue; uartConfig.rxEnable = CyFalse; uartConfig.flowCtrl = CyFalse; uartConfig.isDma = CyTrue; May someone please point me in the right direction? Greetz, Chris |
|
相关推荐
9个回答
|
|
你好,
您使用的是UARTR和DMA。也许你可以发布init的DMA到。 例如 无效 DebugInit(空) { CYU3PUARTCONTICONTUT UARTCONFIG; CYU3PRESTROSTATUS SWT APIRTYSTATION CYU-U3PY成功; /*初始化UART以打印调试消息*/ ApIdReStase= Cuu3PuARTITIN(); 如果(ApRestStand)!= CYU-U3PY成功 { EasPrPrRoad(ApRestStand); } /*设置UART配置*/ UARTCONTUR.BUDERATE = CYU-U3PUUARTH BAUDRATET11500; UARTCONTION STOBIT = CYU-U3PUUARTHONEONI STORYBIT; UARTCONTION =奇偶= CYU-U3PUUARTHONNOY奇偶校验; UARTCONT.TXNET= CyTrand; UARTCONTRO.RXPENTITY = CyFLUE; UARTCONTIONFROCCTRL = CyFLUE; UARTCONDS.ISDMA=CyTrand; *设置UART配置*/ ApItReStase= CUU3PUARTSETCONFIG(&;UARTCONFIG,NULL); 如果(ApRestStand)!= CYU-U3PY成功 { EasPrPrRoad(ApRestStand); } *设置UART传输*/ ApItReStase= CUU3PUARTTXStBaseBuffFER(0xFFFFFFFF); 如果(ApRestStand)!= CYU-U3PY成功 { EasPrPrRoad(ApRestStand); } /*初始化调试应用程序*/ ApItReStase= Cyu3pDeBuffIT(CyuU3PL LpppSokkul-UARTARK CONS,8); 如果(ApRestStand)!= CYU-U3PY成功 { EasPrPrRoad(ApRestStand); } } 以上来自于百度翻译 以下为原文 Hi, you are using uartr with dma. May be you can post the init for DMA to. e. g. void DebugInit (void) { CyU3PUartConfig_t uartConfig; CyU3PReturnStatus_t apiRetStatus = CY_U3P_SUCCESS; /* Initialize the UART for printing debug messages */ apiRetStatus = CyU3PUartInit(); if (apiRetStatus != CY_U3P_SUCCESS) { esAppErrorHandler(apiRetStatus); } /* Set UART Configuration */ uartConfig.baudRate = CY_U3P_UART_BAUDRATE_115200; uartConfig.stopBit = CY_U3P_UART_ONE_STOP_BIT; uartConfig.parity = CY_U3P_UART_NO_PARITY; uartConfig.txEnable = CyTrue; uartConfig.rxEnable = CyFalse; uartConfig.flowCtrl = CyFalse; uartConfig.isDma = CyTrue; /* Set the UART configuration */ apiRetStatus = CyU3PUartSetConfig (&uartConfig, NULL); if (apiRetStatus != CY_U3P_SUCCESS) { esAppErrorHandler(apiRetStatus); } /* Set the UART transfer */ apiRetStatus = CyU3PUartTxSetBlockXfer (0xFFFFFFFF); if (apiRetStatus != CY_U3P_SUCCESS) { esAppErrorHandler(apiRetStatus); } /* Initialize the debug application */ apiRetStatus = CyU3PDebugInit (CY_U3P_LPP_SOCKET_UART_CONS, 8); if (apiRetStatus != CY_U3P_SUCCESS) { esAppErrorHandler(apiRetStatus); } } |
|
|
|
并且可以检查是否使用正确的UART端口。你使用的是哪种芯片(FX3)?你使用开发板吗?
当做, 隆皮 以上来自于百度翻译 以下为原文 and may be check if you are using correct UART port. Which chip are you using (FX3)? Are you using development board? regards, lumpi |
|
|
|
嗨,LuPI6,
谢谢你的快速回复。 我的DebugInit和你的长得很像。我也尝试过波特率降低-没有任何运气。 不幸的是,它不是CyPress DEV板(并且我在板上没有文档,至少还没有)。它有一个CYUSB3014 BZX芯片。 我使用一个FTDI USB串行电缆只有GND和TX附加。 格雷茨 克里斯 以上来自于百度翻译 以下为原文 Hi Lumpi6, Thank you for your quick reply. My DebugInit looks exactly like yours. I also tried with lower baud rates - without any luck. Unfortunately it is not the cypress dev board (and I have no documentation on the board, at least not yet). It has a CyUSB3014-BZX chip. I use a FTDI USB serial cable with only GND and TX attached. Greetz, Chris |
|
|
|
你好,
你用示波器测量信号检查波特率以及电压等级? 是FTDI UART的水平支撑或需要FTDI对称水平像RS-232? 检查这些,可能会有一个配置FTDI与你的环境工作。 当做, 隆皮 以上来自于百度翻译 以下为原文 Hi, did you measure the signal with the oscilloscope and checked the baudrate as well as the voltage level? Is the FTDI supporting the UART levels or needs the FTDI symmetric levels like RS-232? check these and may be there is a configuration in FTDI to work with your environment. regards, lumpi |
|
|
|
嗨,克里斯,
在串行控制台应用程序中指定波特率和其他端口参数通常重写设备管理器中为设备指定的默认端口设置。 然而,OS有时会在设备管理器中为设备提到默认的端口设置值。在设备管理器中识别您的设备,右击并选择属性。将端口设置更改为适当的波特率。现在尝试使用相同的端口配置启动串行控制台应用程序。 希望这有帮助。 当做 穆达比尔卡比尔 以上来自于百度翻译 以下为原文 Hi Chris, Specifying the baud rate and other port parameters in the serial console application usually overrides the default port settings specified for the device in Device Manager. However sometimes, OS takes the default port setting values mentioned for the device in the device manager. Identify your device in the device manger, right click and choose properties. Change the port settings to appropriate baud rate. now try launching the serial console application with the same port configuration. Hope this helps. Regards Mudabir Kabir |
|
|
|
我也有这个问题,看:HTTP://www. CyPress?APP =论坛和ID ID=167和;RID=93181
不幸的是,我还没有修复。 以上来自于百度翻译 以下为原文 I get this problem too, see: http://www.cypress.com/?app=forum&id=167&rID=93181 Unfortunately I have no fix yet. |
|
|
|
|
|
|
|
在用示波器检查之后,我发现它是RS232,而不是TTL,正如我所预期的那样。
再次感谢LUMPI6向我指出正确的方向,感谢大家对我的问题感兴趣。 格雷茨 克里斯 以上来自于百度翻译 以下为原文 After checking with the oscilloscope I saw that it was RS232 and not TTL as I was expecting. So thanks again to Lumpi6 for pointing me in the right direction and thanks to all taking interest in my problem Greetz, Chris |
|
|
|
当我使用Cyu3pDebug打印功能来打印字节时,我也遇到了类似的问题。我使用0x%02x格式。把它改为0x%X帮助了我。我没有注意到Cyu3pDebug GrpType不能精确使用。
以上来自于百度翻译 以下为原文 I had similar problems when i was using CyU3PDebugPrint function to print bytes. I was using 0x%02X for format. Changing it to 0x%X helped me. I didn't notice that CyU3PDebugPrint function couldn't be used with precision. |
|
|
|
只有小组成员才能发言,加入小组>>
752个成员聚集在这个小组
加入小组2071 浏览 1 评论
1827 浏览 1 评论
3642 浏览 1 评论
请问可以直接使用来自FX2LP固件的端点向主机FIFO写入数据吗?
1762 浏览 6 评论
1513 浏览 1 评论
CY8C4025LQI在程序中调用函数,通过示波器观察SCL引脚波形,无法将pin0.4(SCL)下拉是什么原因导致?
511浏览 2评论
CYUSB3065焊接到USB3.0 TYPE-B口的焊接触点就无法使用是什么原因导致的?
362浏览 2评论
CX3连接Camera修改分辨率之后,播放器无法播出camera的画面怎么解决?
410浏览 2评论
357浏览 2评论
使用stm32+cyw43438 wifi驱动whd,WHD驱动固件加载失败的原因?
861浏览 2评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-26 18:31 , Processed in 1.076946 second(s), Total 93, Slave 76 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号