Files
RomWBW/Source/HBIOS/ch376-native/source-doc/base-drv/critical-section.h
2025-06-21 13:11:38 +10:00

14 lines
253 B
C

#ifndef __CRITICAL_BLOCKS_H__
#define __CRITICAL_BLOCKS_H__
#include <stdint.h>
extern uint8_t in_critical_usb_section;
void critical_begin();
void critical_end();
#define is_in_critical_section() (in_critical_usb_section != 0)
#endif