bldc/timeout.c

83 lines
2.0 KiB
C
Raw Normal View History

2014-09-21 08:41:11 -07:00
/*
Copyright 2012-2014 Benjamin Vedder benjamin@vedder.se
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* timeout.c
*
* Created on: 20 sep 2014
* Author: benjamin
*/
#include "timeout.h"
#include "ch.h"
#include "mcpwm.h"
// Private variables
static volatile systime_t timeout_msec;
static volatile systime_t last_update_time;
static volatile float timeout_brake_current;
static volatile bool has_timeout;
// Threads
static WORKING_AREA(timeout_thread_wa, 512);
static msg_t timeout_thread(void *arg);
void timeout_init(void) {
timeout_msec = 1000;
last_update_time = 0;
timeout_brake_current = 0.0;
has_timeout = false;
chThdCreateStatic(timeout_thread_wa, sizeof(timeout_thread_wa), NORMALPRIO, timeout_thread, NULL);
}
void timeout_configure(systime_t timeout, float brake_current) {
timeout_msec = timeout;
timeout_brake_current = brake_current;
}
void timeout_reset(void) {
last_update_time = chTimeNow();
}
bool timeout_has_timeout(void) {
return has_timeout;
}
systime_t timeout_get_timeout_msec(void) {
return timeout_msec;
}
2014-09-21 08:41:11 -07:00
static msg_t timeout_thread(void *arg) {
(void)arg;
chRegSetThreadName("Timeout");
for(;;) {
if (timeout_msec != 0 && chTimeElapsedSince(last_update_time) > MS2ST(timeout_msec)) {
mcpwm_set_brake_current(timeout_brake_current);
has_timeout = true;
} else {
has_timeout = false;
}
chThdSleepMilliseconds(10);
}
return 0;
}