add log in gpio handler

add nullpint check in tfliteCass
This commit is contained in:
Zwer2k
2021-07-11 16:19:45 +02:00
parent a7ced407f8
commit 3e360ad0fb
6 changed files with 8 additions and 6 deletions

View File

@@ -98,7 +98,8 @@ void CTfLiteClass::GetOutPut()
void CTfLiteClass::Invoke()
{
interpreter->Invoke();
if (interpreter != nullptr)
interpreter->Invoke();
}