STM32F7 Ethernet interface for nucleo STM32F767
Critical sections
[Porting (system abstraction layer)]
Used to protect short regions of code against concurrent access. More...
Used to protect short regions of code against concurrent access.
- Your system is a bare-metal system (probably with an RTOS) and interrupts are under your control: Implement this as LockInterrupts() / UnlockInterrupts()
- Your system uses an RTOS with deferred interrupt handling from a worker thread: Implement as a global mutex or lock/unlock scheduler
- Your system uses a high-level OS with e.g. POSIX signals: Implement as a global mutex
Generated on Tue Jul 12 2022 14:49:33 by
1.7.2