-
Notifications
You must be signed in to change notification settings - Fork 271
/
Copy pathlatency.h
79 lines (56 loc) · 1.79 KB
/
latency.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* Copyright (C) 2017-2019 by Jacob Alexander
*
* This file is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This file is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this file. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
// ----- Includes -----
// Compiler Includes
#include <Lib/MainLib.h>
// System Includes
#include <Lib/time.h>
// ----- Defines -----
// ----- Enumerations -----
typedef enum LatencyQuery {
LatencyQuery_Min = 0,
LatencyQuery_Max = 1,
LatencyQuery_Average = 2,
LatencyQuery_Last = 3,
LatencyQuery_Count = 4,
} LatencyQuery;
typedef enum LatencyOption {
LatencyOption_Ticks,
LatencyOption_ns,
LatencyOption_us,
LatencyOption_ms,
} LatencyOption;
// ----- Structs -----
typedef struct LatencyMeasurement {
const char* name;
Time start_time;
LatencyOption option;
uint32_t min_latency;
uint32_t max_latency;
uint32_t average_latency;
uint32_t last_latency;
uint32_t count;
} LatencyMeasurement;
// ----- Variables -----
// ----- Functions -----
void Latency_init();
void Latency_start_time( uint8_t resource );
void Latency_end_time( uint8_t resource );
const char* Latency_query_name( uint8_t resource );
uint8_t Latency_add_resource( const char* name, LatencyOption option );
uint8_t Latency_resources();
uint32_t Latency_query( LatencyQuery type, uint8_t resource );