mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 23:48:11 +01:00
pulse_counter_ulp: Add ulp_main.h to satisfy clang-tidy
This is generated by IDF at compile time, but clang-tidy doesn't know about it so fails at its inclusion.
This commit is contained in:
parent
70ac9daf4c
commit
36e1573927
1 changed files with 26 additions and 0 deletions
26
esphome/components/pulse_counter_ulp/ulp_main.h
Normal file
26
esphome/components/pulse_counter_ulp/ulp_main.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
// This file has been copied into place to satisfy clang-tidy, but it should be
|
||||
// created at compile-time by IDF. Please synchronise this file if changes are
|
||||
// made to pulse__cnt.S
|
||||
// NOLINTBEGIN
|
||||
|
||||
// Variable definitions for ESP32ULP
|
||||
// This file is generated automatically by esp32ulp_mapgen.py utility
|
||||
|
||||
#pragma once
|
||||
|
||||
extern uint32_t ulp_changed;
|
||||
extern uint32_t ulp_debounce_counter;
|
||||
extern uint32_t ulp_debounce_max_count;
|
||||
extern uint32_t ulp_edge_count_total;
|
||||
extern uint32_t ulp_edge_detected;
|
||||
extern uint32_t ulp_entry;
|
||||
extern uint32_t ulp_falling;
|
||||
extern uint32_t ulp_falling_edge_count;
|
||||
extern uint32_t ulp_io_number;
|
||||
extern uint32_t ulp_mean_exec_time;
|
||||
extern uint32_t ulp_next_edge;
|
||||
extern uint32_t ulp_rising;
|
||||
extern uint32_t ulp_rising_edge_count;
|
||||
extern uint32_t ulp_run_count;
|
||||
|
||||
// NOLINTEND
|
Loading…
Reference in a new issue