starting with component unit testing (running on device)
Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
11
components/logger/logger.c
Normal file
11
components/logger/logger.c
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "logger.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int add(int a, int b) {
|
||||
return a + b;
|
||||
}
|
||||
|
||||
void log_message(const char* message) {
|
||||
printf("%s\n", message);
|
||||
}
|
Reference in New Issue
Block a user