-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.c
165 lines (120 loc) · 2.55 KB
/
main.c
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
//Entry point of program; contains the main loop and controls robot operation
#include <io.h>
#include "softDelay.h"
#include "led.h"
#include "MapMaze.h"
#include "Setup.h"
#include "Config.h"
#include "MazeManipulation.h"
#include "adc.h"
#include "MazeSolving.h"
#include "Motor2.h"
#include "DeadEndBlocking.h"
#include "Alignment.h"
#include "initPorts.h"
#include "nRF24L01.h"
#include "TimerA.h"
#include "RfPacket.h"
#include "CellReservation.h"
/*-=-=-=-=-=-=-=- GLOBAL VARS -=-=-=-=-=-=-=-=-=-=-=-*/
unsigned int Maze [MAZEY][MAZEX];
unsigned int Mouse=0; //contains heading and xy position of mouse
volatile unsigned char RF=0;
volatile unsigned char RxPacket[32];
unsigned char TxPacket[32];
volatile unsigned char CTS = 0;
volatile unsigned char TimerExpired=0;
//unsigned int count = 0;
int main (void)
{
unsigned char MoveDir=0;
SetupCpu();
SetupCode();
rfPwrUp();
rfRxMode();
LED1ON;
WaitForSwitch();
LED1OFF;
//TimerAStart();
/*
while(1)
{
if (CTS)
{
LED5TOGGLE;
}
if (!CTS) LED5OFF;
if( TimerExpired || IfSwitch() )
{
CTS=0;
TimerExpired=0;
AssembleStartTimerPacket();
rfStandbyMode();
rfSendPacket2Module(&TxPacket[0],32);
rfTxMode();
softDelay(65535);
rfStandbyMode();
rfRxMode();
LED1TOGGLE;
}
}
*/
// MAZE MAPPING CODE
AddWall(SOUTH, GetMouseX(), GetMouseY() );
ReserveCurrentCell();
AnalyseCellLR();
AnalyseCellFB();
ReserveCellsAroundHere();
IncrementCellVisits();
SetThisCellMappedByThisMouse();
TxCellInfo();
while (1)
{
MoveDir = 0;
while (!MoveDir) //If unable to get an exit, redo until can get exit
{
MoveDir=GetExitDir();
LED7ON;
}
LED7OFF;
ReserveCellsAround(MoveDir);
Rotate( MoveDir );
DriveToEndOfCurrentCellCorrecting();
MoveToNewCellLogical(MoveDir); // no walls in new cell, so will not correct until LR analysed
DriveToStartOfNextCellNOTCorrecting();
AnalyseCellLR(); // analysed, so if walls exist, mouse will correct itself
DriveToMiddleOfNewCellCorrecting();
AnalyseCellFB();
IncrementCellCount();
IncrementCellVisits();
TxCellInfo();
ReleaseOldCells(MoveDir);
ReleaseWalledCells();
DeadEndBlocking();
if ( IsMazeMapped() ) break;
}
SetLedsLower(0x55);
// count total visits in maze
unsigned char x = 0;
unsigned char y = 0;
unsigned char count = 0;
while (y < MAZEY)
{
while (x < MAZEX)
{
count += GetVisits(x,y);
x++;
}
y++;
x=0;
}
// SetLedsUpper (count);
while (1)
{
WaitForSwitch();
// SetLedsUpper(GetLargeErrors());
WaitForSwitch();
// SetLedsUpper(GetSmallErrors());
}
return 0;
}