Code to run on the charger board (used to charge the car from the mains).

Dependencies:   mbed CUER_CAN

Data_types.h

Committer:
DasSidG
Date:
2017-09-12
Revision:
12:77d493b3320b
Parent:
7:70cf5bff23f9

File content as of revision 12:77d493b3320b:

#ifndef Data_types_H
#define Data_types_H

#include "CAN_Data.h"
#include "CAN_IDs.h"
#include "mbed.h"

struct timeouts_t {
    Timer BMS_timeout;
    Timer charger_timeout;
};

extern timeouts_t timeouts;

#endif