Skip to content
Snippets Groups Projects
Commit e26cca76 authored by jwilson's avatar jwilson Committed by Julian Oes
Browse files

StubSensor template class implemented to allow registration with the DevMgr.

parent aec31c59
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,7 @@ set(config_module_list
${EAGLE_DRIVERS_SRC}/uart_esc
${EAGLE_DRIVERS_SRC}/rc_receiver
${EAGLE_DRIVERS_SRC}/csr_gps
${EAGLE_DRIVERS_SRC}/utils
#
# System commands
......
......@@ -47,6 +47,8 @@ __EXPORT extern uint64_t hrt_absolute_time(void);
// declaration to make the compiler happy. This symbol is part of the adsp static image.
void HAP_debug(const char *msg, int level, const char *filename, int line);
#ifndef qurt_log_defined
#define qurt_log_defined
static __inline void qurt_log(int level, const char *file, int line,
const char *format, ...)
{
......@@ -57,5 +59,6 @@ static __inline void qurt_log(int level, const char *file, int line,
va_end(args);
HAP_debug(buf, level, file, line);
}
#endif
__END_DECLS
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment