TLx493D 3D Hall Sensor Generic Library
1.2.1234
Generic library for the TLx493D 3D Hall sensor family
src
xmc1100
system
system.h
1
/*
2
* system.h
3
*
4
* Created on: Sep 4, 2018
5
* Author: nicolaem
6
*/
7
8
#ifndef SRC_SYSTEM_SYSTEM_H_
9
#define SRC_SYSTEM_SYSTEM_H_
10
11
#include <stdint.h>
12
#include <stddef.h>
13
14
15
/* Delay execution for time_us microseconds */
16
void
wait(uint32_t time_us);
17
18
/* Copy n bytes from src to dest */
19
void
SYS_memcpy(uint8_t *dest,
const
uint8_t *src,
size_t
n);
20
21
#endif
/* SRC_SYSTEM_SYSTEM_H_ */
Generated by
1.8.14