foxBMS
1.0.0
The foxBMS Battery Management System API Documentation
|
Implementation of engine task driver. More...
#include "ftask.h"
#include "FreeRTOS.h"
#include "stream_buffer.h"
#include "database.h"
#include "sys_mon.h"
Go to the source code of this file.
Functions | |
static void | FTSK_TaskCreatorEngine (void) |
Database-Task. More... | |
static void | FTSK_TaskCreatorCyclic1ms (void) |
Creation of cyclic 1 ms engine task. More... | |
static void | FTSK_TaskCreatorCyclic10ms (void) |
Creation of cyclic 10 ms engine task. More... | |
static void | FTSK_TaskCreatorCyclic100ms (void) |
Creation of cyclic 100 ms engine task. More... | |
static void | FTSK_TaskCreatorCyclicAlgorithm100ms (void) |
Creation of cyclic 100 ms algorithm task. More... | |
void | FTSK_CreateQueues (void) |
Creates all queues. More... | |
void | FTSK_CreateMutexes (void) |
Creates all mutexes. More... | |
void | FTSK_CreateEvents (void) |
Creates all events of the group. More... | |
void | FTSK_CreateTasks (void) |
Creates all tasks of the group. More... | |
Implementation of engine task driver.
BSD 3-Clause License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
We kindly request you to use one or more of the following phrases to refer to foxBMS in your hardware, software, documentation or advertising materials:
″This product uses parts of foxBMS®″
″This product includes parts of foxBMS®″
″This product is derived from foxBMS®″
TODO
Definition in file ftask.c.
void FTSK_CreateEvents | ( | void | ) |
void FTSK_CreateMutexes | ( | void | ) |
void FTSK_CreateQueues | ( | void | ) |
void FTSK_CreateTasks | ( | void | ) |
|
static |
Creation of cyclic 100 ms engine task.
Task is delayed by a phase as defined in ftsk_tskdef_cyclic_100ms.phase (in milliseconds). After the phase delay, the cyclic execution starts, the entry time is saved in current_time. After one cycle, the Task is set to sleep until entry time + ftsk_tskdef_cyclic_100ms.cycleTime (in milliseconds).
Definition at line 297 of file ftask.c.
|
static |
Creation of cyclic 10 ms engine task.
Task is delayed by a phase as defined in ftsk_tskdef_cyclic_10ms.phase (in milliseconds). After the phase delay, the cyclic execution starts, the entry time is saved in current_time. After one cycle, the Task is set to sleep until entry time + ftsk_tskdef_cyclic_10ms.cycleTime (in milliseconds).
Definition at line 267 of file ftask.c.
|
static |
Creation of cyclic 1 ms engine task.
The Task calls OsStartUp() in the very beginning, this is the first active Task. Then the Task is delayed by a phase as defined in ftsk_tskdef_cyclic_1ms.phase (in milliseconds). After the phase delay, the cyclic execution starts, the entry time is saved in current_time. After one cycle, the Task is set to sleep until entry time + ftsk_tskdef_cyclic_1ms.cycleTime (in milliseconds).
Definition at line 234 of file ftask.c.
|
static |
Creation of cyclic 100 ms algorithm task.
Task is delayed by a phase as defined in ftsk_taskDefinitionCyclicAlgorithm100ms.Phase (in milliseconds). After the phase delay, the cyclic execution starts, the entry time is saved in current_time. After one cycle, the Task is set to sleep until entry time + ftsk_taskDefinitionCyclicAlgorithm100ms.CycleTime (in milliseconds).
Definition at line 328 of file ftask.c.
|
static |
|
static |
Stack of ftsk_taskHandleCyclic100ms.
|
static |
Stack of ftsk_taskHandleCyclic10ms.
|
static |
Stack of ftsk_taskHandleCyclic1ms.
|
static |
Stack of ftsk_taskHandleCyclicAlgorithm100ms.
|
static |
Stack of ftsk_taskHandleEngine.
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
Task Struct for ftsk_taskHandleCyclic100ms.
|
static |
Task Struct for ftsk_taskHandleCyclic10ms.
|
static |
Task Struct for ftsk_taskHandleCyclic1ms.
|
static |
Task Struct for ftsk_taskHandleCyclicAlgorithm100ms.
|
static |
Task Struct for ftsk_taskHandleEngine.