18 lines
237 B
C
18 lines
237 B
C
|
#ifndef __SYSTEM_DWT_H__
|
||
|
#define __SYSTEM_DWT_H__
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <stdint.h>
|
||
|
#include "fr30xx.h"
|
||
|
|
||
|
#define system_get_clock
|
||
|
|
||
|
uint8_t system_dwt_init(void);
|
||
|
uint32_t get_system_dwt_value(void);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|