Ken Van Hoeylandt 96eccbdc8d
Add tests and update licenses (#458)
Replace LGPL from past commit with Apache License 2.0 for the newly created projects:
- in Platforms/*
- TactilityKernel

Add license headers to source code in:
- in Platforms/*
- TactilityKernel
- TactilityFreeRtos

Updated LICENSE.md
2026-01-24 21:33:44 +01:00

19 lines
333 B
C++

// SPDX-License-Identifier: Apache-2.0
#ifndef ESP_PLATFORM
#include <Tactility/Log.h>
#include <stdio.h>
#include <stdarg.h>
void log_generic(const char* tag, const char* format, ...) {
va_list args;
va_start(args, format);
printf("%s ", tag);
vprintf(format, args);
printf("\n");
va_end(args);
}
#endif