1 /*
2  * SPDX-FileCopyrightText: 2017-2022 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #pragma once
8 
9 /* *INDENT-OFF* */
10 #ifdef __cplusplus
11     extern "C" {
12 #endif
13 /* *INDENT-ON* */
14 
15 /**
16  * @brief Set up the SysTick interrupt
17  */
18 void vPortSetupTimer( void );
19 
20 /* *INDENT-OFF* */
21 #ifdef __cplusplus
22     }
23 #endif
24 /* *INDENT-ON* */
25