-
Notifications
You must be signed in to change notification settings - Fork 289
/
Copy pathTimestampUsageTest.ino
101 lines (90 loc) · 4.14 KB
/
TimestampUsageTest.ino
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/**
* Copyright (c) 2015 by Thomas Trojer <[email protected]>
* Copyright (c) 2016 by Ludwig Grill (www.rotzbua.de); extended example
* Decawave DW1000 library for arduino.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @file TimestampUsageTest.ino
* This is a simple unit test for the DW1000Time class. This test
* has no actual use to the operation of the DW1000.
*/
#include <SPI.h>
#include "DW1000Time.h"
void setup() {
Serial.begin(9600);
Serial.println(F("### DW1000Time-arduino-test ###"));
}
void loop() {
// variables for the test
DW1000Time time1, time2, time3, time4;
byte stamp[DW1000Time::LENGTH_TIMESTAMP];
// unit test
Serial.println(F("simple test for + - "));
Serial.print(F("Time1 is (0)[us] ... ")); Serial.println(time1.getAsMicroSeconds(), 4);
time1 += DW1000Time(10, DW1000Time::MICROSECONDS);
Serial.print(F("Time1 is (10)[us] ... ")); Serial.println(time1.getAsMicroSeconds(), 4);
time1 -= DW1000Time(500, DW1000Time::NANOSECONDS);
Serial.print(F("Time1 is (9.5)[us] ... ")); Serial.println(time1.getAsMicroSeconds(), 4);
Serial.println();
Serial.println(F("test compare"));
time2 = time1;
time2 += DW1000Time(10.0f);
Serial.print(F("Time2 == Time1 (NO)... ")); Serial.println(time1 == time2 ? "YES" : "NO");
time1 += DW1000Time(10000, DW1000Time::NANOSECONDS);
Serial.print(F("Time2 == Time1 (YES)... ")); Serial.println(time1 == time2 ? "YES" : "NO");
Serial.println();
Serial.println(F("test different output"));
memset(stamp, 0, DW1000Time::LENGTH_TIMESTAMP);
stamp[1] = 0x02; // = 512
time2 = DW1000Time(stamp);
Serial.print(F("Time2 is (512) ... ")); Serial.println(time2);
Serial.print(F("Time2 is (0.0080)[us] ... ")); Serial.println(time2.getAsMicroSeconds(), 4);
Serial.print(F("Time2 range is (2.4022)[m] ... ")); Serial.println(time2.getAsMeters(), 4);
time3 = DW1000Time(10, DW1000Time::SECONDS);
time3.getTimestamp(stamp);
time3.setTimestamp(stamp);
Serial.print(F("Time3 is (10)[s] ... ")); Serial.println(time3.getAsMicroSeconds() * 1.0e-6, 4);
Serial.println();
Serial.println(F("test negativ value"));
memset(stamp, 0, DW1000Time::LENGTH_TIMESTAMP);
time2.setTimestamp(-512);
Serial.print(F("Time2 is (-512) ... ")); Serial.println(time2);
Serial.print(F("Time2 is (-0.0080)[us] ... ")); Serial.println(time2.getAsMicroSeconds(), 4);
Serial.print(F("Time2 range is (-2.4022)[m] ... ")); Serial.println(time2.getAsMeters(), 4);
Serial.println();
Serial.println(F("test calculation"));
time1.setTimestamp(1536);
time2.setTimestamp(512);
time3.setTimestamp(4);
time4 = (time1 + time2) / time3;
Serial.print(F("Time4 is (512) ... ")); Serial.println(time4);
time4 = (time1 - time2) / time3;
Serial.print(F("Time4 is (256) ... ")); Serial.println(time4);
time4 = (time1 * time3 * time2 - time2 * time3 * time2) / (time2 * time2);
Serial.print(F("Time4 is (8) ... ")); Serial.println(time4);
Serial.println();
Serial.println(F("test valid/maxima"));
time1.setTimestamp(DW1000Time::TIME_MAX);
time2.setTimestamp(DW1000Time::TIME_MAX);
time3.setTimestamp(2);
time4 = (time1 + time2);
Serial.print(F("Time4 is valid? (NO) ... ")); Serial.println(time4.isValidTimestamp() ? "YES" : "NO");
Serial.print(F("Time4 is TIME_MAX (NO) ... ")); Serial.println(time4 == DW1000Time::TIME_MAX ? "YES" : "NO");
time4 /= time3;
Serial.print(F("Time4 is valid? (YES) ... ")); Serial.println(time4.isValidTimestamp() ? "YES" : "NO");
Serial.print(F("Time4 is TIME_MAX (YES) ... ")); Serial.println(time4 == DW1000Time::TIME_MAX ? "YES" : "NO");
Serial.println();
// keep calm
delay(10000);
}