How the callback functions work in stm32 Hal Library?

岁酱吖の 提交于 2021-01-28 07:38:41

问题


As we all know,the Hal Lib provides some callback function to manage hardware interrupt.But i don't know how them work?

Te fact is that I am using HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart) this function so as to receive other devices' data and check those data.So I use the usart interrupt to receive them.

But I don't know when the callback function will be executed,is it depends on the receive buffer's length or the data's buffer?

I guess the hardware interrupt will be triggered while a character has been received,but the callback function will be executed after the receive buffer is full.

PS:I am using the stm32-nucleo-f410 development board to communicate with an AT commend device,and I am a novice about it. (So sorry for my poor English!) Thanks a lot.


回答1:


The callback you are referring to is called when the amount of data specified in the receive functions (the third argument to HAL_UART_Receive_IT). You are correct that the UART interrupt service routine (ISR) is called every time a character is received, but when using the HAL that happens internally to the library and doesn't need to be managed by you. Every time the ISR is called, the received character is moved into the array you provide via the second argument of HAL_UART_Receive_IT, and when the number of characters specified by the call is reached, the callback will be called in that ISR (so make sure not to do anything that will take too much time to complete - ISRs should be short, and the ISRs in the HAL library are already pretty lengthy to handle every possible use case).

Further, if you find that the callback is not being triggered even if you are sending enough data to the peripheral, make sure the interrupt is actually enabled - the HAL_UART_Receive_IT function doesn't actually enable the interrupt, that has to be done during initialization of the peripheral.



来源:https://stackoverflow.com/questions/49479148/how-the-callback-functions-work-in-stm32-hal-library

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!