-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbgt60tr13c.h
40 lines (27 loc) · 994 Bytes
/
bgt60tr13c.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* bgt60tr13c.h
*
* Created on: 31 May 2024
* Author: jorda
*
* Rutronik Elektronische Bauelemente GmbH Disclaimer: The evaluation board
* including the software is for testing purposes only and,
* because it has limited functions and limited resilience, is not suitable
* for permanent use under real conditions. If the evaluation board is
* nevertheless used under real conditions, this is done at one’s responsibility;
* any liability of Rutronik is insofar excluded
*/
#ifndef BGT60TR13C_H_
#define BGT60TR13C_H_
#include <stdint.h>
int bgt60tr13c_init();
uint16_t bgt60tr13c_is_data_available();
int bgt60tr13c_get_data(uint16_t* data);
uint16_t bgt60tr13c_get_samples_per_frame();
uint16_t bgt60tr13c_get_antenna_count();
uint16_t bgt60tr13c_get_chirps_per_frame();
uint16_t bgt60tr13c_get_samples_per_chirp();
uint64_t bgt60tr13c_get_end_freq();
uint64_t bgt60tr13c_get_start_freq();
uint32_t bgt60tr13c_get_sampling_rate();
#endif /* BGT60TR13C_H_ */