feat(debug_probe): added debug probe hal driver

This commit is contained in:
morris
2024-07-11 13:38:58 +08:00
parent d3d920eacb
commit c30d89953c
14 changed files with 789 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
/*
* SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief The 32bit debug probe output can be split into two 16bit parts
*/
typedef enum {
DEBUG_PROBE_SPLIT_LOWER16, ///< The lower 16 signals of the debug probe output
DEBUG_PROBE_SPLIT_UPPER16, ///< The upper 16 signals of the debug probe output
} debug_probe_split_u16_t;
#ifdef __cplusplus
}
#endif