What does EXIT and Entry do s.UART
|
On a number of lines the word Entry is used ( for example in HAL_UARTRate ) what does it do ?. |
|
Entry and EXIT are calls to the Macros in the DDE build environment |
|
In this case, Entry is defined here and EXIT is defined here. Entry pushes lr, plus any optionally specified registers, and optionally makes room for local variables. EXIT returns from the procedure started by the last Entry. |
|
Thanks now I know what it is doing |