sinkSender

This commit is contained in:
2021-03-04 15:54:30 +01:00
parent 9eee986123
commit e92bf0817e
4 changed files with 22 additions and 3 deletions

11
src/sinkSender.c Normal file
View File

@ -0,0 +1,11 @@
#include <stdint.h>
#include "sinkSender.h"
#include "logging.h"
void sinkSenderInit() {
}
void sinkSenderPut(uint32_t seconds, uint32_t frequency) {
logmsg(LOG_DEBUG, "s: %lu, f: %lu", seconds, frequency);
}