amiro-os / devices / DiWheelDrive / userthread.hpp @ 64cba697
History | View | Annotate | Download (5.213 KB)
1 |
#ifndef AMIRO_USERTHREAD_H_
|
---|---|
2 |
#define AMIRO_USERTHREAD_H_
|
3 |
|
4 |
#include <ch.hpp> |
5 |
#include <amiroosconf.h> |
6 |
#include <amiro/Color.h> |
7 |
// #include "global.hpp"
|
8 |
// #include "linefollow.hpp"
|
9 |
|
10 |
|
11 |
|
12 |
// TODO: Clean up and sort defines!
|
13 |
// Speed when driving towards the docking station
|
14 |
#define CHARGING_SPEED 5 |
15 |
#define DETECTION_SPEED 10 |
16 |
#define DIST_THRESH 100 |
17 |
#define RELEASE_COUNT 200 |
18 |
#define SPEED_CONVERSION_FACTOR 1000000 //Convert value to um/s |
19 |
// Thresh to determain how much update steps should pass while alining
|
20 |
// #define MAX_CORRECTION_STEPS 200
|
21 |
#define DOCKING_CORRECTION_TIMEOUT 200 |
22 |
#define REVERSE_DOCKING_TIMEOUT 2*DOCKING_CORRECTION_TIMEOUT |
23 |
#define REVERSE_ADJUSTMENT_TIMEOUT 200 |
24 |
// #define MAX_RING_PROX_VALUE_DEVIATION
|
25 |
|
26 |
// Thresh for wheel proxy sensors, when summed values fall below the state changes
|
27 |
// #define PROXY_WHEEL_THRESH 18000
|
28 |
// Thresh for detecting obsticles
|
29 |
// #define PROXY_RING_THRESH 15000
|
30 |
|
31 |
// #define PUSH_BACK_COUNT 5
|
32 |
#define PUSH_BACK_TIMEOUT 5 |
33 |
// Thresh for how long (update steps) the front sensors are allowed to detect white
|
34 |
// #define WHITE_COUNT_THRESH 150
|
35 |
#define WHITE_DETETION_TIMEOUT 150 |
36 |
// #define RING_PROX_COUNT_THRESH 1000
|
37 |
#define RING_PROX_DETECTION_TIMEOUT 400 |
38 |
// Rotation around 180 degrees in microradian
|
39 |
// #define ROTATION_180 3141592
|
40 |
#define ROTATION_180 3141592 |
41 |
// Rotation around -20 degrees in microradian
|
42 |
#define ROTATION_20 -349065 |
43 |
#define ROTATION_DURATION 10000 |
44 |
|
45 |
#define RING_PROX_FRONT_THRESH 18000 |
46 |
// #define PROX_MAX_VAL 65430
|
47 |
#define PROX_MAX_VAL 0xFFF0 |
48 |
|
49 |
|
50 |
// Threshold for failing to dock
|
51 |
#define DOCKING_ERROR_THRESH 3 |
52 |
#define CAN_TRANSMIT_STATE_THRESH 50 |
53 |
#define PROX_DEVIATION_MEAN_WINDOW 3 |
54 |
#define MAX_DEVIATION_CORRECTIONS 4 |
55 |
#define MAX_DEVIATION_FACTOR 35 |
56 |
#define DEVIATION_CORRECTION_DURATION 900 |
57 |
#define DEVIATION_CORRECTION_SPEED 2000000 |
58 |
#define DEVIATION_CORRECTION_VALUE (DEVIATION_CORRECTION_SPEED / 2) |
59 |
#define DEVIATION_DIST_THRESH 25000 |
60 |
|
61 |
|
62 |
|
63 |
// Map Tracking Parameters
|
64 |
// enable amiro map to continuously build internal map representation
|
65 |
#define AMIRO_MAP_AUTO_TRACKING false |
66 |
|
67 |
|
68 |
|
69 |
namespace amiro {
|
70 |
|
71 |
|
72 |
class UserThread : public chibios_rt::BaseStaticThread<USER_THREAD_STACK_SIZE> |
73 |
{ |
74 |
|
75 |
// Messages which can be received and trigger state changes
|
76 |
public:
|
77 |
|
78 |
struct ut_counter {
|
79 |
int whiteCount = 0; |
80 |
int ringProxCount = 0; |
81 |
// int correctionCount = 0;
|
82 |
int errorCount = 0; |
83 |
int stateCount = 0; |
84 |
int stepCount = 0; |
85 |
uint32_t stateTime = 0;
|
86 |
}; |
87 |
|
88 |
struct proxy_ctrl {
|
89 |
int threshLow = 100; |
90 |
int threshMid = 500; |
91 |
int threshHigh = 1500; |
92 |
// int threshHigh = 1500;
|
93 |
int penalty = 100000; |
94 |
int pFactor = 310000; |
95 |
int staticCont = 0; |
96 |
}; |
97 |
|
98 |
|
99 |
struct bottom_prox_calibration {
|
100 |
bool calibrateBlack = true; |
101 |
uint32_t buf = 0;
|
102 |
uint8_t meanWindow = 150;
|
103 |
}; |
104 |
|
105 |
struct deviation_correction {
|
106 |
bool RCase = true; |
107 |
int8_t pCount = 0;
|
108 |
int32_t proxbuf[PROX_DEVIATION_MEAN_WINDOW] = { 0 };
|
109 |
int32_t currentDeviation = 0;
|
110 |
}; |
111 |
|
112 |
// static const struct ut_counter emptyUtCount;
|
113 |
ut_counter utCount; |
114 |
proxy_ctrl pCtrl; |
115 |
bottom_prox_calibration proxCalib; |
116 |
deviation_correction devCor; |
117 |
|
118 |
|
119 |
explicit UserThread();
|
120 |
|
121 |
virtual ~UserThread();
|
122 |
|
123 |
virtual msg_t main();
|
124 |
|
125 |
private:
|
126 |
void setRpmSpeed(const int (&rpmSpeed)[2]); |
127 |
void setRpmSpeedFuzzy(const int (&rpmSpeed)[2]); |
128 |
void lightOneLed(Color color, int idx); |
129 |
void lightAllLeds(Color color);
|
130 |
/**
|
131 |
* Uses light ring indicate the state of charge.
|
132 |
*/
|
133 |
void showChargingState();
|
134 |
void checkForMotion();
|
135 |
bool checkPinVoltage();
|
136 |
bool checkPinEnabled();
|
137 |
int getProxyRingSum();
|
138 |
|
139 |
/**
|
140 |
* Returns percentage of mean deviation between two given values.
|
141 |
* It is intended to calculate the mean deviation between two proxy sensor
|
142 |
* values. PROX_DEVIATION_MEAN_WINDOW determains the size of the mean window.
|
143 |
* Keep in mind that initial results are wrong.
|
144 |
* */
|
145 |
int32_t meanDeviation(uint16_t a, uint16_t b); |
146 |
|
147 |
/**
|
148 |
* Check sectors around and stop if a thresh in one sector is detected.
|
149 |
*/
|
150 |
void preventCollision(int (&rpmSpeed)[2], uint16_t (&proxVals)[8]); |
151 |
|
152 |
/**
|
153 |
* Same as prevent collision but also lowers the speed when object is detected.
|
154 |
*/
|
155 |
void proxSectorSpeedCorrection(int (&rpmSpeed)[2], uint16_t (&proxVals)[8]); |
156 |
void getProxySectorVals(uint16_t (&proxVals)[8], uint16_t (&sProx)[8]); |
157 |
void getMaxFrontSectorVal(uint16_t (&sProx)[8], int32_t &sPMax); |
158 |
void chargeAsLED();
|
159 |
|
160 |
/**
|
161 |
* Returns true when front sensors reaching high values
|
162 |
* and all others are low. This indicates that the loading station is ahead.
|
163 |
* If other sensores are blocked too, indicates that someone grabs the robot.
|
164 |
*/
|
165 |
bool checkFrontalObject();
|
166 |
|
167 |
/**
|
168 |
* Check if current position changes when the wheel are deactivated.
|
169 |
*
|
170 |
* When AMiRo drives towards the loading station, it stops when a specific marker is reached.
|
171 |
* In order to validate that the AMiRo is correctly positioned in the loading station
|
172 |
* the wheels are turned off. When the position remains the same the docking procedure
|
173 |
* was successful (return 1) otherwise a correction is needed (return 0).
|
174 |
*/
|
175 |
int checkDockingSuccess();
|
176 |
|
177 |
|
178 |
|
179 |
bool continue_on_obstacle = true; |
180 |
uint16_t rProx[8]; // buffer for ring proxy values |
181 |
int rpmSpeed[2] = {0}; |
182 |
int stop[2] = {0}; |
183 |
int turn[2] = {5,-5}; |
184 |
|
185 |
}; |
186 |
|
187 |
} // end of namespace amiro
|
188 |
|
189 |
#endif // AMIRO_USERTHREAD_H_ |