What does EXIT and Entry do s.UART
Timo Hartong (2813) 204 posts |
On a number of lines the word Entry is used ( for example in HAL_UARTRate ) what does it do ?. |
Steve Pampling (1551) 8172 posts |
Entry and EXIT are calls to the Macros in the DDE build environment |
Julie Stamp (8365) 474 posts |
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. |
Timo Hartong (2813) 204 posts |
Thanks now I know what it is doing |