-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathvehiclecontrol.h
63 lines (59 loc) · 2.12 KB
/
vehiclecontrol.h
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
/*
* This file is part of the stm32-sine project.
*
* Copyright (C) 2021 Johannes Huebner <dev@johanneshuebner.com>
*
* 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/>.
*/
#ifndef VCU_H
#define VCU_H
#include "canhardware.h"
#include "errormessage.h"
class VehicleControl
{
public:
/** Set CAN interface for VCU
* \param val Pointer to CAN interface
*/
static void SetCan(CanHardware* val);
static void PostErrorIfRunning(ERROR_MESSAGE_NUM err);
static void CruiseControl();
static void SelectDirection();
static void GetDigInputs();
static void CalcAndOutputTemp();
static float ProcessUdc();
static float ProcessThrottle();
static void SetContactorsOffState();
private:
static CanHardware* can; //!< Member variable "can"
static bool lastCruiseSwitchState;
static bool canIoActive;
static bool spiEnabled;
static float temphsFiltered;
static float tempmFiltered;
static int udcFiltered;
static uint16_t bmwAdcNextChan;
static uint16_t bmwAdcValues[4];
static FunctionPointerCallback callback;
static uint32_t lastCanRxTime;
static uint8_t canErrors;
static uint8_t seqCounter;
static void GetTemps(float& tmphs, float &tmpm);
static float GetUserThrottleCommand();
static bool GetCruiseCreepCommand(float& finalSpnt, float throtSpnt);
static void BmwAdcAcquire();
static void CanClear();
static bool CanReceive(uint32_t id, uint32_t data[2], uint8_t);
};
#endif // VCU_H