91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么添加新的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

若尔盖县| 中方县| 胶南市| 通海县| 慈利县| 满城县| 峨眉山市| 汉沽区| 博兴县| 吉木萨尔县| 翁牛特旗| 东源县| 扶风县| 威海市| 自贡市| 黄龙县| 陕西省| 黄陵县| 水富县| 报价| 景泰县| 德兴市| 呼玛县| 杭锦旗| 琼中| 武威市| 龙山县| 大丰市| 离岛区| 清丰县| 柏乡县| 商南县| 盘山县| 苍溪县| 朔州市| 深圳市| 连南| 昌图县| 新干县| 尼木县| 多伦县|