radar-bgt60 1.1.1
C++ library for the BGT60LTR11AIP - XENSIV™ 60 Ghz Radar from Infineon
 
Loading...
Searching...
No Matches
bgt60-pal-logger.hpp
Go to the documentation of this file.
1
10#ifndef BGT60_PAL_LOGGER_HPP_
11#define BGT60_PAL_LOGGER_HPP_
12
13#include "bgt60-conf.hpp"
14
15#if (BGT60_LOGGER_ENABLED == 1)
16
17#include <stdint.h>
18#include "bgt60-types.hpp"
19
20namespace bgt60
21{
22
28class LoggerPAL
29{
30 public:
31
38 virtual Error_t init() = 0;
39
46 virtual Error_t deinit() = 0;
47
56 virtual Error_t write(const uint8_t * logData, uint32_t length) = 0;
57};
58
61}
62
63#endif
64#endif
Radar BGT60 Library Configuration.
Radar BGT60 Types.
Error_t
Definition bgt60-types.hpp:26
Definition bgt60-types.hpp:14