Vehicle Control Unit 0.01
This is the c library for controlling the car.
Loading...
Searching...
No Matches
RTDMonitor.h
Go to the documentation of this file.
1#ifndef __RENNSSELAERMOTORSPORT_RTD_MONITOR_H
2#define __RENNSSELAERMOTORSPORT_RTD_MONITOR_H
3
4#include "../MonitorSystem.h"
5#include "../Controller/RTD.h"
6
7typedef struct {
11
20void initRTDMonitor(RTDMonitor* rtdm, RTD* rtd, int hz);
21
29
36int checkRTDMonitor(void* rtdm);
37
38#endif // __RENNSSELAERMOTORSPORT_RTD_MONITOR_H
int checkRTDMonitor(void *rtdm)
Checks the RTD Monitor.
Definition: RTDMonitor.c:18
void initRTDMonitor(RTDMonitor *rtdm, RTD *rtd, int hz)
Initializes the RTD Monitor with initial settings.
Definition: RTDMonitor.c:4
int startRTDMonitor(RTDMonitor *rtdm)
Starts the RTD Monitor.
Definition: RTDMonitor.c:9
RTD * rtd
Definition: RTDMonitor.h:9
MonitorSystem base
Definition: RTDMonitor.h:8
Definition: RTD.h:11