-
Notifications
You must be signed in to change notification settings - Fork 0
/
motor.cpp
118 lines (107 loc) · 1.92 KB
/
motor.cpp
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
#include <avr/io.h>
#include <util/delay.h>
#include "motor.h"
volatile char m1_power = 0;
volatile char m1_state = 0;
volatile char m2_power = 0;
volatile char m2_state = 0;
void motor_init(){
M1_DDR |= (1 << M1_A) | (1 << M1_B);
M2_DDR |= (1 << M2_A) | (1 << M2_B);
M1_PORT |= (1 << M1_EN);
M2_PORT |= (1 << M2_EN);
M1_PWM_DDR |= (1 << M1_PWM);
M2_PWM_DDR |= (1 << M2_PWM);
M1 = 0;
M2 = 0;
m1_state = 0;
m2_state = 0;
}
char m1_overload(){
if (bit_is_set(M1_PIN, M1_EN)) return 0;
else return 1;
}
void m1_start()
{
if (m1_power < 0){
M1_PORT |= (1 << M1_A);
M1_PORT &= ~(1 << M1_B);
unsigned char tmp = -m1_power*255/100;
M1 = tmp;
}
else{
M1_PORT &= ~(1 << M1_A);
M1_PORT |= (1 << M1_B);
unsigned char tmp = m1_power*255/100;
M1 = tmp;
}
m1_state = 1;
}
void m1_stop(){
M1_PORT |= (1 << M1_A);
M1_PORT |= (1 << M1_B);
m1_state = 0;
//_delay_ms(100);
}
void m1_set(char power){
int tmp = power * m1_power;
if (power < -100) power = -100;
if (power > 100) power = 100;
if (tmp <= 0)
{
m1_power = power;
if (m1_state == 1){
m1_stop();
_delay_ms(20);
m1_start();
}
}
else{
m1_power = power;
if (m1_state == 1) m1_start();
}
}
char m2_overload(){
if (bit_is_set(M2_PIN, M2_EN)) return 0;
else return 1;
}
void m2_start()
{
if (m2_power < 0){
M2_PORT |= (1 << M2_A);
M2_PORT &= ~(1 << M2_B);
unsigned char tmp = -m2_power*255/100;
M2 = tmp;
}
else{
M2_PORT &= ~(1 << M2_A);
M2_PORT |= (1 << M2_B);
unsigned char tmp = m2_power*255/100;
M2 = tmp;
}
m2_state = 1;
}
void m2_stop(){
M2_PORT |= (1 << M2_A);
M2_PORT |= (1 << M2_B);
m2_state = 0;
//_delay_ms(20);
}
void m2_set(char power){
int tmp = power * m2_power;
if (power < -100) power = -100;
if (power > 100) power = 100;
if (tmp <= 0)
{
m2_power = power;
if (m2_state == 1){
m2_stop();
_delay_ms(20);
m2_start();
}
}
else{
m2_power = power;
if (m2_state == 1) m2_start();
}
}