Files
esp-idf/examples/peripherals/twai/twai_utils/main/cmd_twai.h
Yuan Yu f1da574ae5 feat(twai): add TWAI utility commands and configuration
- 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.
2025-08-13 16:31:35 +08:00

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