forked from bradnielsen2981/brickpi2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testlog.txt
48 lines (40 loc) · 1.68 KB
/
testlog.txt
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
Test Log:
Time:
Issue:
Notes:
Fix:
Result:
11/04/2022 11:39:33 AM:
Issue: turns not exact degrees
Fix: adjust margin of error
Result: Turns are exact
11/04/2022 11:41:45 AM:
Issue: ZeroDevisionError raised when calculating x value
Notes: logs suggest that the error occurs when iterating over an empty array
Fix: ignore ampty arrays
Result: works for most cases but, fails when xpoints is empty and ypoints is zero
11/04/2022 11:54:12 AM:
Issue: result of previous
Notes: this likely occurs as the funtion doesn't account for no change in x
Fix: bypass calculation if robot x and point x are the same by retuning that value
Result: succsessfully completes function
11/04/2022 12:20:12 PM:
Issue: minimal walls are discovered at the end of the scan
Notes: This is perhaps an issue with the environment
Fix: test in a location with exact flat walls
Result: behaviour continued
11/04/2022 12:32:56 PM:
Issue: walls failed to be discovered
Notes: By inspecting the logs it was found that the grid was being generated incorrectly
Fix: grid generates points on regular grid. adjust other code to comply with changes
Result: Behaviour contiued
11/04/2022 1:19:45 PM:
Issue: walls failed to be discovered
Notes: logs showed that walls were being duplicated on generation (i.e., there were 2 walls at point (0.5,0))
Fix: tweak map generator to store walls and to store them when a duplicate comes up rather than generate new walls
Result: Behaviour contiued
13/04/2022 11:30:00 AM:
Issue: walls failed to be discovered
Notes: N/A
Fix: try in official maze
Result: walls successfully detected