/** * @file signal_executor_sleep.cpp * @brief Asynchronous output signal code * * Here we have the simplest, thread-based implementation of signal executor. * TODO: https://sourceforge.net/p/rusefi/tickets/6/ * * @date Feb 10, 2013 * @author Andrey Belomutskiy, (c) 2012-2018 * * This file is part of rusEfi - see http://rusefi.com * * rusEfi 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. * * rusEfi 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 . */ #include "global.h" #include "scheduler.h" #include "signal_executor.h" #include "main_trigger_callback.h" #if EFI_SIMULATOR || defined(__DOXYGEN__) // this is about debugging #include "efiGpio.h" #endif /* EFI_SIMULATOR */ #if EFI_SIGNAL_EXECUTOR_SLEEP || defined(__DOXYGEN__) void SleepExecutor::scheduleByTimestamp(scheduling_s *scheduling, efitimeus_t timeUs, schfunc_t callback, void *param) { scheduleForLater(scheduling, timeUs - getTimeNowUs(), callback, param); } static void timerCallback(scheduling_s *scheduling) { #if EFI_PRINTF_FUEL_DETAILS || defined(__DOXYGEN__) if (scheduling->callback == (schfunc_t)&seTurnPinLow) { printf("executing cb=seTurnPinLow p=%d sch=%d now=%d\r\n", (int)scheduling->param, (int)scheduling, (int)getTimeNowUs()); } else { // printf("exec cb=%d p=%d\r\n", (int)scheduling->callback, (int)scheduling->param); } #endif /* EFI_SIMULATOR */ scheduling->callback(scheduling->param); } static void doScheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param) { int delaySt = MY_US2ST(delayUs); if (delaySt <= 0) { /** * in case of zero delay, we should invoke the callback */ callback(param); return; } bool alreadyLocked = lockAnyContext(); scheduling->callback = callback; scheduling->param = param; int isArmed = chVTIsArmedI(&scheduling->timer); if (isArmed) { /** * timer reuse is normal for example in case of sudden RPM increase */ chVTResetI(&scheduling->timer); } #if EFI_SIMULATOR || defined(__DOXYGEN__) if (callback == (schfunc_t)&seTurnPinLow) { printf("setTime cb=seTurnPinLow p=%d\r\n", (int)param); } else { // printf("setTime cb=%d p=%d\r\n", (int)callback, (int)param); } #endif /* EFI_SIMULATOR */ chVTSetI(&scheduling->timer, delaySt, (vtfunc_t)timerCallback, scheduling); if (!alreadyLocked) { unlockAnyContext(); } } void SleepExecutor::scheduleForLater(scheduling_s *scheduling, int delayUs, schfunc_t callback, void *param) { doScheduleForLater(scheduling, delayUs, callback, param); } void initSignalExecutorImpl(void) { } #endif /* EFI_SIGNAL_EXECUTOR_SLEEP */