
1 Where can I find related routines (LL library)? Reference F407 series for total commissioning is different. 2 Call hal idle USART interrupt did not receive 64k bytes, anyone can provide reference? |
STM32U5G9J-DK2 已经实现CustomHID 进行数据收发,一包数据64字节,如何提升到一包1024字节
STM32U575 串口接收+GPDMA 波特率不匹配导致失败
STM32U5 驱动库从1.6.0更新至1.7.0本可以正常运行的代码出现问题
使用LSM6DSV16X和LSM6DSO16IS,有没有内置滤波器的设置调整?
STM32U5在退出LPBAM后,重新配置时钟发现MSIS时钟正常,MSIK时钟和配置不一致。
关于U575RI的GPDMA_LINKED_list模式的求助
请问STM32u585的octospi只能开启一个CLK时钟,AMOLED和PSRAM能否共用呢?
用STM32Cubeprogrammer 烧录 TrustZone 的示范程序不成功
STM32U5 OCTOSPI +fm25w256 Read and write
STM32L476VGT6 100P的可以直接用stm32u575vg 100P的替换到板子上吗?为啥烧录程序时无法连接?
这个数据已经超过65535了。 我们只需要将库函数中关于UART结构体中的关于收发长度的变量
定义改为32位宽,相应的实现函数的变量稍微改动下即可完成。
我的测试时将最后26个元素存放a~z二十六个符号,其它按0~9和换行符的规律循环赋值。
你要调整的话也不难的实现。
I will add a supplement here,t if using DMA for transmission, the maximum transmission length of DMA is 64K and cannot be changed, so it can only be transmitted in multiple times. If using interrupt-based transmission, there is a chance to increase the transmission volume, but generally speaking, batch transmission is also a normal operation.
==>可以肯定STM32U5有LL库,包括针对UART外设的LL库,但不一定有针对你当前应用的LL库工程代码。
不过,我在STM32U5的Cube库里看到一些针对UART外设的LL库例程,你完全可以参考。比方:
。。。\STM32Cube_FW_U5_V1.7.0\Projects\NUCLEO-U575ZI-Q\Examples_LL\USART
It can be confirmed that the STM32U5 has an LL library, including the LL library for the UART peripheral, but it may not have LL library
project code for your current application. However, I have seen some LL library examples for the UART peripheral in the STM32U5 Cube
library, which you can definitely refer to。for example:
。。。\STM32Cube_FW_U5_V1.7.0\Projects\NUCLEO-U575ZI-Q\Examples_LL\USART
2 Call hal idle USART interrupt did not receive 64k bytes, anyone can provide reference?
==》你是说一次性不能接收超过64Kbyte的数据吧。目前库是这样设计的。你要么分批传,要么自己重新组织下代码。
至于参考实现代码,我后面可以找时间看看如何实现。实现后告知你。我看了下,目前所有系列的最大传输大小都是以64K为限来设计的。
Are you saying that you can't receive more than 64Kbytes of data at a time? The current library is designed this way. You either send the data
in batches or reorganize the code yourself.As for the reference implementation code, I can look into how to implement it later. I will inform you
once it is done.According to my inspection and confirmation, the maximum transmission size for all series is currently designed to be limited to 64K.