Line | Branch | Decision | Exec | Source |
---|---|---|---|---|
1 | /* | |||
2 | * @file unit_test_framework.cpp | |||
3 | * | |||
4 | * Created on: Mar 4, 2018 | |||
5 | * @author Andrey Belomutskiy, (c) 2012-2020 | |||
6 | */ | |||
7 | ||||
8 | #include "pch.h" | |||
9 | ||||
10 | #include <stdlib.h> | |||
11 | ||||
12 | ✗ | void chDbgAssert(int c, char *msg, void *arg) { | ||
13 | ✗ | if (!c) { | ||
14 | ✗ | printf("assert failed: %s\r\n", msg); | ||
15 | ✗ | exit(-1); | ||
16 | } | |||
17 | ✗ | } | ||
18 | ||||
19 | 74610 | uint32_t getTimeNowLowerNt(void) { | ||
20 | 74610 | return 0; | ||
21 | } | |||
22 |