blob: 2713da86d9e98bedf1d129bd0a3903aeae59a746 [file] [log] [blame]
chrisweircf36cea2019-11-08 16:41:02 -08001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#pragma once
18
19#include <linux/serial.h>
20#include <linux/tty.h>
21#include <net/if.h>
22#include <termios.h>
23#include "CanBus.h"
24
25namespace android {
26namespace hardware {
27namespace automotive {
28namespace can {
29namespace V1_0 {
30namespace implementation {
31
32struct CanBusSlcan : public CanBus {
33 CanBusSlcan(const std::string& uartName, uint32_t bitrate);
34
35 protected:
36 virtual ICanController::Result preUp() override;
37 virtual bool postDown() override;
38
39 private:
40 const std::string mUartName;
41 const uint32_t kBitrate;
42 base::unique_fd mFd;
43};
44
45} // namespace implementation
46} // namespace V1_0
47} // namespace can
48} // namespace automotive
49} // namespace hardware
50} // namespace android