1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #ifndef ES_SECURITY_TIMING_H__
- #define ES_SECURITY_TIMING_H__
- #include <stdint.h>
- #include "app_error.h"
- typedef uint8_t es_stopwatch_id_t;
- uint32_t es_stopwatch_check(es_stopwatch_id_t id);
- ret_code_t es_stopwatch_create(es_stopwatch_id_t * p_sw_id, uint32_t ticks_wrap);
- void es_stopwatch_init(void);
- #endif
|