18 lines
195 B
C
18 lines
195 B
C
|
#ifndef DRV_DWT_H_
|
||
|
#define DRV_DWT_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "kit_macro.h"
|
||
|
|
||
|
void drv_dwt_start(void);
|
||
|
uint32_t drv_dwt_end(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|