Better comments.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15807 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2022-09-30 10:03:42 +00:00
parent a84ef98363
commit 1121f970b1
1 changed files with 5 additions and 1 deletions

View File

@ -380,11 +380,15 @@ void sb_fastc_vrq_return(struct port_extctx *ectxp) {
/* Re-enabling VRQs globally.*/
sbp->vrq_isr = 0U;
/* Creating a return context.*/
/* Creating a new return context.*/
vrq_pushctx(ectxp, sbp, active_mask);
}
else {
/* Re-enabling VRQs globally.*/
sbp->vrq_isr = 0U;
/* Keeping the current return context.*/
__set_PSP((uint32_t)ectxp);
}
}