mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
f02facbe28
Describe peripheral informations in the twai_peirph.c, including: Interrupt number, GPIO matrix signal ID, etc
34 lines
960 B
C
34 lines
960 B
C
/*
|
|
* SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "soc/soc_caps.h"
|
|
#include "soc/periph_defs.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
struct {
|
|
const periph_module_t module; // peripheral module
|
|
const int irq_id; // interrupt source ID
|
|
const int tx_sig; // TX signal ID in GPIO matrix
|
|
const int rx_sig; // RX signal ID in GPIO matrix
|
|
const int clk_out_sig; // CLK_OUT signal ID in GPIO matrix
|
|
const int bus_off_sig; // BUS_OFF status signal ID in GPIO matrix
|
|
const int stand_by_sig; // STAND_BY signal ID in GPIO matrix
|
|
} controllers[SOC_TWAI_CONTROLLER_NUM];
|
|
} twai_controller_signal_conn_t;
|
|
|
|
extern const twai_controller_signal_conn_t twai_controller_periph_signals;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|