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
|
#include <stdlib.h>
#include <math.h>
#define DIGI_CFG_DIGI_OUT(p) { kVexDigital_##p, kVexSensorDigitalOutput, kVexConfigOutput, 0 }
#define DIGI_CFG_DIGI_IN(p) { kVexDigital_##p, kVexSensorDigitalInput, kVexConfigInput, 0 }
#define MOTOR_CFG_MOT(p, t, r) p, kVexMotor##t, kVexMotor##r
#define MOTOR_CFG_NOIME kVexSensorNone, 0
#define MOTOR_CFG_IME(c) kVexSensorIME, kImeChannel_##c
#include "ch.h" // needs for all ChibiOS programs
#include "hal.h" // hardware abstraction layer header
#include "vex.h" // vex library header
// motor ports
#define mDriveFrontLeft kVexMotor_6
#define mDriveFrontRight kVexMotor_9
#define mDriveBackLeft kVexMotor_7
#define mDriveBackRight kVexMotor_8
#define mLiftLowRight kVexMotor_5
#define mLiftHighRight kVexMotor_4
#define mLiftLowLeft kVexMotor_3
#define mLiftHighLeft kVexMotor_2
#define mPickupThingy kVexMotor_10
#define mClawThingy kVexMotor_1
// Digi IO configuration
static vexDigiCfg dConfig[] = {
};
static vexMotorCfg mConfig[] = {
{ MOTOR_CFG_MOT(mClawThingy, 393T, Normal), MOTOR_CFG_NOIME },
{ MOTOR_CFG_MOT(mDriveFrontLeft, 393T, Normal), MOTOR_CFG_NOIME },
{ MOTOR_CFG_MOT(mDriveFrontRight, 393T, Reversed), MOTOR_CFG_NOIME },
{ MOTOR_CFG_MOT(mDriveBackLeft, 393T, Reversed), MOTOR_CFG_NOIME },
{ MOTOR_CFG_MOT(mDriveBackRight, 393T, Normal), MOTOR_CFG_NOIME },
{ MOTOR_CFG_MOT(mLiftLowRight, 393T, Normal), MOTOR_CFG_NOIME },
{ MOTOR_CFG_MOT(mLiftHighRight, 393T, Normal), MOTOR_CFG_NOIME },
{ MOTOR_CFG_MOT(mLiftLowLeft, 393T, Normal), MOTOR_CFG_NOIME },
{ MOTOR_CFG_MOT(mLiftHighLeft, 393T, Normal), MOTOR_CFG_NOIME },
{ MOTOR_CFG_MOT(mPickupThingy, 393T, Normal), MOTOR_CFG_NOIME }
};
void vexUserSetup(void)
{
vexDigitalConfigure(dConfig, DIG_CONFIG_SIZE(dConfig));
vexMotorConfigure(mConfig, MOT_CONFIG_SIZE(mConfig));
}
void vexUserInit(void)
{}
msg_t vexAutonomous(void* arg)
{
(void)arg;
vexTaskRegister("auton");
vexMotorSet(mClawThingy, -127);
vexMotorSet(mPickupThingy, -64);
vexSleep(300);
vexMotorSet(mClawThingy, 0);
vexMotorSet(mPickupThingy, 0);
vexMotorSet(mDriveFrontLeft, 127);
vexMotorSet(mDriveFrontRight, 127);
vexMotorSet(mDriveBackLeft, 127);
vexMotorSet(mDriveBackRight, 127);
vexSleep(3000);
vexMotorSet(mDriveFrontLeft, -30);
vexMotorSet(mDriveFrontRight, -30);
vexMotorSet(mDriveBackLeft, -30);
vexMotorSet(mDriveBackRight, -30);
vexSleep(1000);
vexMotorSet(mDriveFrontLeft, 0);
vexMotorSet(mDriveFrontRight, 0);
vexMotorSet(mDriveBackLeft, 0);
vexMotorSet(mDriveBackRight, 0);
while(1)
vexSleep(25);
return (msg_t)0;
}
typedef struct {
int x, y;
} __attribute__ ((packed)) joy_t;
int doubleButton(int btnp, int btnn, int speed);
msg_t vexOperator(void* arg)
{
static joy_t joyLeft, joyRight;
(void)arg;
vexTaskRegister("operator");
while(!chThdShouldTerminate()) {
// control update
joyLeft = (joy_t) {vexControllerGet(Ch4), vexControllerGet(Ch3)};
joyRight = (joy_t) {vexControllerGet(Ch1), vexControllerGet(Ch2)};
// drive motors
vexMotorSet(mDriveFrontLeft, joyLeft.y + joyLeft.x);
vexMotorSet(mDriveFrontRight, joyLeft.y - joyLeft.x);
vexMotorSet(mDriveBackLeft, joyLeft.y + joyLeft.x);
vexMotorSet(mDriveBackRight, joyLeft.y - joyLeft.x);
// lift motors
vexMotorSet(mLiftLowRight, joyRight.y);
vexMotorSet(mLiftHighRight, joyRight.y);
vexMotorSet(mLiftLowLeft, joyRight.y);
vexMotorSet(mLiftHighLeft, joyRight.y);
// lift thingy
vexMotorSet(mPickupThingy, doubleButton(Btn5U, Btn5D, 64));
// claw thingy
vexMotorSet(mClawThingy, doubleButton(Btn6U, Btn6D, 127));
vexSleep(25);
}
return (msg_t)0;
}
int doubleButton(int btnp, int btnn, int speed)
{
return (vexControllerGet(btnp) ? speed : (vexControllerGet(btnn) ? -speed : 0));
}
|