mirror of
https://github.com/espressif/esp-idf.git
synced 2025-10-04 02:50:58 +02:00
- Introduced TWAI utility commands for sending, dumping, and managing TWAI frames. - Added configuration options for TWAI GPIO pins and support for TWAI-FD. - Created necessary CMake and Kconfig files for building the TWAI utilities. This enhancement provides a comprehensive interface for TWAI operations.
26 lines
527 B
C
26 lines
527 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* =============================================================================
|
|
* MACRO DEFINITIONS
|
|
* =============================================================================*/
|
|
|
|
/**
|
|
* @brief Register TWAI commands with the console
|
|
*/
|
|
void register_twai_commands(void);
|
|
void unregister_twai_commands(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|