亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么添加新的CAN卡

發布時間:2021-12-18 16:06:10 來源:億速云 閱讀:229 作者:小新 欄目:云計算

這篇文章主要介紹怎么添加新的CAN卡,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

簡介

控制器區域網絡(CAN)是在許多微控制器和設備中密集使用的網絡,用于在沒有主計算機幫助的情況下在設備之間傳輸數據。

Apollo中使用的默認CAN卡是 ESD CAN-PCIe卡。您可以使用以下步驟添加新的CAN卡:

添加新的CAN卡

添加新的CAN卡需要完成以下幾個步驟:

  1. 實現新CAN卡的CanClient類。

  2. CanClientFactory中注冊新的CAN卡。

  3. 更新配置文件。

以下步驟展示了如何添加新的CAN卡 - 示例添加CAN卡到您的工程。

步驟1

實現新CAN卡的CanClient類,下面的代碼展示了如何實現 CANClient 類:

#include <string>
#include <vector>

#include "hermes_can/include/bcan.h"
#include "modules/canbus/can_client/can_client.h"
#include "modules/canbus/common/canbus_consts.h"
#include "modules/common/proto/error_code.pb.h"

/**
 * @namespace apollo::canbus::can
 * @brief apollo::canbus::can
 */
namespace apollo {
namespace canbus {
namespace can {

/**
 * @class ExampleCanClient
 * @brief The class which defines a Example CAN client which inherits CanClient.
 */
class ExampleCanClient : public CanClient {
 public:
  /**
   * @brief Initialize the Example CAN client by specified CAN card parameters.
   * @param parameter CAN card parameters to initialize the CAN client.
   * @return If the initialization is successful.
   */
  bool Init(const CANCardParameter& parameter) override;

  /**
   * @brief Destructor
   */
  virtual ~ExampleCanClient() = default;

  /**
   * @brief Start the Example CAN client.
   * @return The status of the start action which is defined by
   *         apollo::common::ErrorCode.
   */
  apollo::common::ErrorCode Start() override;

  /**
   * @brief Stop the Example CAN client.
   */
  void Stop() override;

  /**
   * @brief Send messages
   * @param frames The messages to send.
   * @param frame_num The amount of messages to send.
   * @return The status of the sending action which is defined by
   *         apollo::common::ErrorCode.
   */
  apollo::common::ErrorCode Send(const std::vector<CanFrame>& frames,
                                 int32_t* const frame_num) override;

  /**
   * @brief Receive messages
   * @param frames The messages to receive.
   * @param frame_num The amount of messages to receive.
   * @return The status of the receiving action which is defined by
   *         apollo::common::ErrorCode.
   */
  apollo::common::ErrorCode Receive(std::vector<CanFrame>* const frames,
                                    int32_t* const frame_num) override;

  /**
   * @brief Get the error string.
   * @param status The status to get the error string.
   */
  std::string GetErrorString(const int32_t status) override;

 private:
  ...
  ...
};

}  // namespace can
}  // namespace canbus
}  // namespace apollo

步驟2

在CanClientFactory中注冊新CAN卡, 在 CanClientFactory中添加如下代碼:

void CanClientFactory::RegisterCanClients() {  
  Register(CANCardParameter::ESD_CAN, 
           []() -> CanClient* { return new can::EsdCanClient(); });  
  
  // register the new CAN card here.  
  Register(CANCardParameter::EXAMPLE_CAN,  
           []() -> CanClient* { return new can::ExampleCanClient(); });  
}

步驟3

接下來,需要更新配置文件 在/modules/canbus/proto/can_card_parameter.proto添加 EXAMPLE_CAN;

message CANCardParameter {
  enum CANCardBrand {
    FAKE_CAN = 0;
    ESD_CAN = 1;
    EXAMPLE_CAN = 2; // add new CAN card here.
  }
  ... ... 
}

Update /modules/canbus/conf/canbus_conf.pb.txt

can_card_parameter {
  brand:EXAMPLE_CAN
  type: PCI_CARD // suppose the new can card is PCI_CARD
  channel_id: CHANNEL_ID_ZERO // suppose the new can card has CHANNEL_ID_ZERO
}
... ...

以上是“怎么添加新的CAN卡”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

can
AI

玉屏| 定西市| 黔江区| 太仆寺旗| 林甸县| 获嘉县| 施甸县| 灌云县| 山东省| 广宁县| 丽水市| 白水县| 来凤县| 准格尔旗| 澄江县| 海城市| 拉萨市| 齐河县| 红桥区| 舟山市| 崇州市| 萨嘎县| 盘山县| 富裕县| 泉州市| 丰顺县| 札达县| 临泽县| 府谷县| 江达县| 琼海市| 砚山县| 商丘市| 县级市| 天柱县| 新密市| 开鲁县| 太白县| 靖江市| 固原市| 苍山县|