Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
transceiver.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2022 Vestas Wind Systems A/S
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef ZEPHYR_INCLUDE_DRIVERS_CAN_TRANSCEIVER_H_
8#define ZEPHYR_INCLUDE_DRIVERS_CAN_TRANSCEIVER_H_
9
10#include <zephyr/device.h>
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
33typedef int (*can_transceiver_enable_t)(const struct device *dev);
34
39typedef int (*can_transceiver_disable_t)(const struct device *dev);
40
41__subsystem struct can_transceiver_driver_api {
42 can_transceiver_enable_t enable;
43 can_transceiver_disable_t disable;
44};
45
62static inline int can_transceiver_enable(const struct device *dev)
63{
64 const struct can_transceiver_driver_api *api =
65 (const struct can_transceiver_driver_api *)dev->api;
66
67 return api->enable(dev);
68}
69
84static inline int can_transceiver_disable(const struct device *dev)
85{
86 const struct can_transceiver_driver_api *api =
87 (const struct can_transceiver_driver_api *)dev->api;
88
89 return api->disable(dev);
90}
91
96#ifdef __cplusplus
97}
98#endif
99
100#endif /* ZEPHYR_INCLUDE_DRIVERS_CAN_TRANSCEIVER_H_ */
static int can_transceiver_enable(const struct device *dev)
Enable CAN transceiver.
Definition: transceiver.h:62
static int can_transceiver_disable(const struct device *dev)
Disable CAN transceiver.
Definition: transceiver.h:84
Runtime device structure (in ROM) per driver instance.
Definition: device.h:381
const void * api
Address of the API structure exposed by the device instance.
Definition: device.h:387