Merge pull request #7988 from lorjala/unittests_fix

Unittesting: Update mutex stub
pull/8016/head
Martin Kojtal 2018-09-06 11:18:45 +02:00 committed by GitHub
commit 7a8e8493b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -27,7 +27,12 @@ rtos::Mutex::~Mutex()
return;
}
osStatus rtos::Mutex::lock(unsigned int)
osStatus rtos::Mutex::lock(void)
{
return osOK;
}
osStatus rtos::Mutex::lock(uint32_t millisec)
{
return osOK;
}