Update port.c

This commit is contained in:
guoweilkd 2019-06-18 09:59:40 +08:00 committed by GitHub
parent 2fb1a88751
commit aac4b8a38b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -24,15 +24,15 @@
/* ----------------------- Modbus includes ----------------------------------*/
#include "port.h"
/* ----------------------- Variables ----------------------------------------*/
static rt_base_t level;
/* ----------------------- Start implementation -----------------------------*/
void EnterCriticalSection(void)
{
level = rt_hw_interrupt_disable();
rt_enter_critical();
}
void ExitCriticalSection(void)
{
rt_hw_interrupt_enable(level);
rt_exit_critical();
}