aboutsummaryrefslogtreecommitdiff
path: root/software/main/etc.cpp
diff options
context:
space:
mode:
authorMDC Service <michael.schmid@mdc-service.de>2022-05-25 13:07:19 +0200
committerGitHub <noreply@github.com>2022-05-25 13:07:19 +0200
commitddd05b2c7e4b5c9f95f913b5ca24be9edc5bd7bb (patch)
tree47bd8efdb41386734333bdc6f199901784f1915f /software/main/etc.cpp
parent124d22828708d4d3d843addeeb62d049c1c05fc2 (diff)
replace files with copyright header and Doxygen comments
Diffstat (limited to 'software/main/etc.cpp')
-rw-r--r--software/main/etc.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/software/main/etc.cpp b/software/main/etc.cpp
deleted file mode 100644
index a240398..0000000
--- a/software/main/etc.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * etc.cpp
- *
- * Created on: 26.02.2022
- * Author: steffen
- */
-#include "etc.h"
-
-void DumpBuf(void *buf, int len) {
- int i, c;
- char *lb = (char*) buf;
- for (i = 0; i < len; i++) {
- c = (char) *lb++;
- printf("%02X ", c);
- }
- printf("\n");
-}