-
Notifications
You must be signed in to change notification settings - Fork 0
/
motor.c
executable file
·255 lines (222 loc) · 5.57 KB
/
motor.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/*
* motor.c
*
* Created on: 2021年10月10日
* Author: sundm
*/
#include <unistd.h>
#include <stddef.h>
/* Driver Header files */
#include <ti/drivers/GPIO.h>
/* Driver configuration */
#include "ti_drivers_config.h"
#include "motor.h"
/* Driver Header files */
#include <ti/drivers/PWM.h>
#include <ti/drivers/GPIO.h>
/* Driver configuration */
#include "ti_drivers_config.h"
#include "motor.h"
#include "includes.h"
/*00 停止 01正转 10 反转*/
#define AIN_1(x) GPIO_write(AIN1, x);
#define AIN_2(x) GPIO_write(AIN2, x);
#define BIN_1(x) GPIO_write(BIN1, x);
#define BIN_2(x) GPIO_write(BIN2, x);
#define CIN_1(x) GPIO_write(CIN1, x);
#define CIN_2(x) GPIO_write(CIN2, x);
#define DIN_1(x) GPIO_write(DIN1, x);
#define DIN_2(x) GPIO_write(DIN2, x);
int left_duty = 0;
int right_duty = 0;
#define MOTOR_DEAD_VAL 0 //the max of duty 10000
void motor_dir(uint8_t motor_num, uint8_t dir) // motor_num : 0、1、2、3 dir: 0正转 1反转 2停止
{
switch(motor_num)
{
case 0:
if((dir == 0) || (dir == 1))
{
if(MOTOR0_DIR == 0){
AIN_1(dir);AIN_2(!dir);}
else{
AIN_2(dir);AIN_1(!dir);}
}
else
{
AIN_1(0);AIN_2(0);
}
break;
case 1:
if((dir == 0) || (dir == 1))
{
if(MOTOR1_DIR == 0){
BIN_1(dir);BIN_2(!dir);}
else{
BIN_2(dir);BIN_1(!dir);}
}
else
{
BIN_1(0);BIN_2(0);
}
break;
case 2:
if((dir == 0) || (dir == 1))
{
if(MOTOR2_DIR == 0){
CIN_1(dir);CIN_2(!dir);}
else{
CIN_2(dir);CIN_1(!dir);}
}
else
{
CIN_1(0);CIN_2(0);
}
break;
case 3:
if((dir == 0) || (dir == 1))
{
if(MOTOR3_DIR == 0){
DIN_1(dir);DIN_2(!dir);}
else{
DIN_2(dir);DIN_1(!dir);}
}
else
{
DIN_1(0);DIN_2(0);
}
break;
default:
break;
}
}
PWM_Handle pwm0 = NULL;
PWM_Handle pwm1 = NULL;
PWM_Handle pwm2 = NULL;
PWM_Handle pwm3 = NULL;
void motor_init(void)
{
/* Period and duty in microseconds */
uint16_t pwmPeriod = 3000;
uint16_t duty = 0;
uint16_t dutyInc = 100;
/* Sleep time in microseconds */
uint32_t time = 50000;
PWM_Params params;
/* Call driver init functions. */
PWM_init();
PWM_Params_init(¶ms);
params.dutyUnits = PWM_DUTY_US;
params.dutyValue = 0;
params.periodUnits = PWM_PERIOD_US;
params.periodValue = pwmPeriod;
pwm0 = PWM_open(CONFIG_PWM_2, ¶ms);
if (pwm0 == NULL) {
/* CONFIG_PWM_0 did not open */
while (1);
}
PWM_start(pwm0);
// PWM_setDuty(pwm0, 800);
pwm1 = PWM_open(CONFIG_PWM_3, ¶ms);
if (pwm1 == NULL) {
/* CONFIG_PWM_0 did not open */
while (1);
}
PWM_start(pwm1);
pwm2 = PWM_open(CONFIG_PWM_4, ¶ms);
if (pwm2 == NULL) {
/* CONFIG_PWM_0 did not open */
while (1);
}
PWM_start(pwm2);
pwm3= PWM_open(CONFIG_PWM_5, ¶ms);
if (pwm3 == NULL) {
/* CONFIG_PWM_0 did not open */
while (1);
}
PWM_start(pwm3);
//初始化方向控制引脚
motor_dir(0,0);
motor_dir(1,0);
motor_dir(2,0);
motor_dir(3,0);
}
void motor_left_right_duty(int left_duty, int right_duty)
{
if(0 <= left_duty) //电机左边2个 正转
{
PWM_setDuty(pwm0, left_duty);
motor_dir(0,0);
PWM_setDuty(pwm3, left_duty);
motor_dir(3,0);
}
else //电机左边2个 反转
{
PWM_setDuty(pwm0, -left_duty);
motor_dir(0,1);
PWM_setDuty(pwm3, -left_duty);
motor_dir(3,1);
}
if(0 <= right_duty) //电机右边2个 正转
{
PWM_setDuty(pwm1, right_duty);
motor_dir(1,0);
PWM_setDuty(pwm2, right_duty);
motor_dir(2,0);
}
else //电机右边2个 反转
{
PWM_setDuty(pwm1, -right_duty);
motor_dir(1,1);
PWM_setDuty(pwm2, -right_duty);
motor_dir(2,1);
}
}
void motor_duty(int motor_num, int duty)
{
if(duty > 0)
duty += MOTOR_DEAD_VAL;
else
duty -= MOTOR_DEAD_VAL;
if(duty > PWM_MAX)
duty = PWM_MAX;
else if(duty < -PWM_MAX)
duty = -PWM_MAX;
switch(motor_num)
{
case 0:
if(duty>=0){
PWM_setDuty(pwm0, duty);
motor_dir(0,0);}
else{
PWM_setDuty(pwm0, -duty);
motor_dir(0,1);}
break;
case 1:
if(duty>=0){
PWM_setDuty(pwm1, duty);
motor_dir(1,0);}
else{
PWM_setDuty(pwm1, -duty);
motor_dir(1,1);}
break;
case 2:
if(duty>=0){
PWM_setDuty(pwm2, duty);
motor_dir(2,0);}
else{
PWM_setDuty(pwm2, -duty);
motor_dir(2,1);}
break;
case 3:
if(duty>=0){
PWM_setDuty(pwm3, duty);
motor_dir(3,0);}
else{
PWM_setDuty(pwm3, -duty);
motor_dir(3,1);}
break;
default:
break;
}
}