summaryrefslogtreecommitdiffstats
path: root/src/actuators.c
blob: d4c7e1d5fb1e711d8d6e3dbfb1b2b6e4bcd7c34e (plain) (blame)
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
/******************************************************************************
 *	Copyright (C) 2018	Colomar Andrés, Alejandro		      *
 *	Copyright (C) 2018	García Pedroche, Francisco Javier	      *
 *	SPDX-License-Identifier:	GPL-2.0-only			      *
 ******************************************************************************/

/**
 *	@file		actuators.c
 *	@author		Colomar Andrés, Alejandro
 *	@author		García Pedroche, Francisco Javier
 *	@copyright	GPL-2.0-only
 *	@date		2018/dec/26
 *	@brief		Actuators
 *		Set the actuators of the plane to the position received by CAN
 */


/******************************************************************************
 ******* headers **************************************************************
 ******************************************************************************/
/* Standard C ----------------------------------------------------------------*/
	#include <stdbool.h>
	#include <stddef.h>
	#include <stdint.h>
/* Drivers -------------------------------------------------------------------*/
	#include "stm32l4xx_hal.h"
/* libalx --------------------------------------------------------------------*/
	#include "libalx/alx_math.h"
/* STM32L4 modules -----------------------------------------------------------*/
	#include "can.h"
	#include "delay.h"
	#include "errors.h"
	#include "led.h"
	#include "servo.h"
	#include "tim.h"
/* Project -------------------------------------------------------------------*/
	#include "actuators.h"


/******************************************************************************
 ******* macros ***************************************************************
 ******************************************************************************/


/******************************************************************************
 ******* enums ****************************************************************
 ******************************************************************************/


/******************************************************************************
 ******* structs **************************************************************
 ******************************************************************************/


/******************************************************************************
 ******* variables ************************************************************
 ******************************************************************************/
/* Volatile ------------------------------------------------------------------*/
/* Global --------------------------------------------------------------------*/
/* Static --------------------------------------------------------------------*/
static	float	pitch;
static	float	roll;
static	float	yaw;


/******************************************************************************
 ******* static functions (prototypes) ****************************************
 ******************************************************************************/
static	int	modules_init		(void);
#if 0
static	int	proc_init		(void);
#endif
static	int	proc_ref_read		(void *data);
static	int	proc_actuators_set	(void *data);


/******************************************************************************
 ******* global functions *****************************************************
 ******************************************************************************/
	/**
	 * @brief	Initialize actuators process
	 * @return	Error
	 * @note	Sets global variable 'prj_error'
	 */
int	proc_actuators_init	(void)
{
	if (modules_init()) {
		return	ERROR_NOK;
	}

#if 0
	if (proc_init()) {
		return	ERROR_NOK;
	}
#endif

	return	ERROR_OK;
}

	/**
	 * @brief	Run actuators process (based on timer interrupts)
	 * @return	Error
	 * @note	Sets global variable 'prj_error'
	 */
int	proc_actuators_1	(void)
{
	while (true) {
		__WFE();
		if (tim_tim3_interrupt) {
			if (tim_callback_exe()) {
				prj_error_handle();
				return	ERROR_NOK;
			}
			tim_tim3_interrupt	= false;
		}
	}

	return	ERROR_OK;
}

	/**
	 * @brief	Run actuators process (based on delays)
	 * @return	Error
	 * @note	Sets global variable 'prj_error'
	 */
int	proc_actuators_2	(void)
{
	delay_us(1000u);

	while (true) {
		delay_us(20000u);

		if (!proc_ref_read(NULL)) {
			if (proc_actuators_set(NULL)) {
				return	ERROR_NOK;
			}
		}
	}

	return	ERROR_OK;
}


/******************************************************************************
 ******* static functions (definitions) ***************************************
 ******************************************************************************/
static	int	modules_init		(void)
{
#if 0
	if (tim_tim3_init(REFRESH_FREQ)) {
		return	ERROR_NOK;
	}
#endif
	if (delay_us_init()) {
		return	ERROR_NOK;
	}
	if (can_init()) {
		return	ERROR_NOK;
	}
	if (servo_init()) {
		return	ERROR_NOK;
	}

	return	ERROR_OK;
}

#if 0
static	int	proc_init		(void)
{
	if (tim_callback_push(&proc_ref_read, NULL)) {
		return	ERROR_NOK;
	}
	if (tim_callback_push(&proc_actuators_set, NULL)) {
		return	ERROR_NOK;
	}

	return	ERROR_OK;
}
#endif

static	int	proc_ref_read		(void *data)
{
	int8_t	plane_pos [CAN_DATA_LEN];

	(void)data;

	if (can_msg_read((uint8_t *)plane_pos)) {
		return	ERROR_NOK;
	}

	pitch	= plane_pos[0];
	roll	= plane_pos[1];
	yaw	= plane_pos[2];

	return	ERROR_OK;
}

static	int	proc_actuators_set	(void *data)
{
	float	tmp;

	(void)data;

	tmp	= alx_scale_linear_f(pitch, -40, 40, -90, 90);
	if (servo_position_set(SERVO_S1, tmp)) {
		return	ERROR_NOK;
	}

	tmp	= alx_scale_linear_f(roll, -35, 35, -90, -20);
	if (servo_position_set(SERVO_S2, tmp)) {
		return	ERROR_NOK;
	}

	if (yaw > 0) {
		if (servo_position_set(SERVO_S3, 90)) {
			return	ERROR_NOK;
		}

		tmp	= alx_scale_linear_f(yaw, 0, 10, -90, 90);
		if (servo_position_set(SERVO_S4, tmp)) {
			return	ERROR_NOK;
		}
	} else {
		tmp	= alx_scale_linear_f(yaw, -10, 0, -90, 90);
		if (servo_position_set(SERVO_S3, tmp)) {
			return	ERROR_NOK;
		}

		if (servo_position_set(SERVO_S4, -90)) {
			return	ERROR_NOK;
		}
	}

	return	ERROR_OK;
}


/******************************************************************************
 ******* end of file **********************************************************
 ******************************************************************************/