-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlines.h
More file actions
executable file
·65 lines (42 loc) · 1.22 KB
/
lines.h
File metadata and controls
executable file
·65 lines (42 loc) · 1.22 KB
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
#ifndef LINES_H_
#define LINES_H_
#include "hal.h"
#include "ch.h"
#include "chprintf.h"
#include "leds.h"
#include "motor.h"
#include "jetson.h"
#define NUMBER_OF_SENSORS 16
#define NO_LINE_DETECTED 1
#define LINE_DETECTED 2
#define LOAD_LINES_SPEEDS 3
#define LINE_CALIBRATION -1
#define LINE_REACTION_TIME 1200
#define LINE_CALIBRATION_SPEED 20
#define LINE_CALIBRATION_TIME 2000
#define INERTIA 0.95
#define PI 3.14159
#define SQRT3 1.7321
#define LINE_QUEUE 3
#define CALIBRATION 5
#define LOAD_JETSON_CALIBRATION 3
#define CALIBRATION_VALUES 23
#define JETSON_SAVE_CALIBRATION 5
#define JETSON_LOAD_CALIBRATION 6
#define LINE_SAVE_CALIBRATION 7
#define LINE_LOAD_CALIBRATION 8
extern uint8_t line_calibration_values_in[NUMBER_OF_SENSORS];
extern uint8_t line_calibration_values_out[NUMBER_OF_SENSORS];
int32_t abs_int(int32_t x);
int32_t max(int32_t x, int32_t y);
void calculation_of_motor_speeds(void);
void determine_avoiding_direction(void) ;
void calibrate_lines(void);
uint8_t line_calibration(void);
void send_line_calibration(void);
msg_t check_line(void);
msg_t calibration_memory(msg_t command);
msg_t check_line_mailbox(void);
void send_to_line_mailbox(msg_t sending_command);
void line_init(void);
#endif