/*! * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * \copyright \n * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, \n * IN PART OR IN WHOLE, \n * WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. \n * * \file canbus.h * \date 2019/09/30 * \author Behrouz NematiPour * */ #pragma once #include /*! * \brief The CanBus class * This class contains the interface to CanBus\n * And utilizes Qt QCanBus to interact with the CanBus\n * On the OS size there is a driver installed to convert SPI to CAN\n * Since the GUI Board by itself doesn't contain the CAN Bus. * \image html CanInterface.png */ class CanBus : public QObject { Q_OBJECT public: explicit CanBus(QObject *parent = nullptr); signals: public slots: };