radar-bgt60 1.1.1
C++ library for the BGT60LTR11AIP - XENSIV™ 60 Ghz Radar from Infineon
 
Loading...
Searching...
No Matches
bgt60-platf-ino.hpp
Go to the documentation of this file.
1
19#ifndef BGT60_PLATF_INO_HPP_
20#define BGT60_PLATF_INO_HPP_
21
22#include <Arduino.h>
23
29#ifdef ARDUINO_SAMD_MKR1000
31#define TD 16
32#define PD 17
33
34#elif defined(ARDUINO_SAMD_MKRWIFI1010)
36#define TD 16
37#define PD 17
38
39#elif defined(ARDUINO_AVR_UNO)
41#define TD 2
42#define PD 3
43
44#elif defined(XMC1100_Boot_Kit)
46#define TD 2
47#define PD 3
48
49#elif defined(XMC4700_Relax_Kit)
51#define TD 2
52#define PD 3
53
54#else
55#warning "You did not define a supported platform! \
56Please make sure you're using a platform that is officially \
57supported by the library. Have a look in the Wiki for more information."
58
59#endif
60
61#endif