Helmut Tschemernjak / SX1276GenericLib

Dependents:   DISCO-L072CZ-LRWAN1_LoRa_PingPong DISCO-L072CZ-LRWAN1_LoRa_PingPong DISCO-L072CZ-LRWAN1_LoRa_PingPong DISCO-L072CZ-LRWAN1_LoRa_USB_Rx ... more

Fork of SX1276Lib by Semtech

Files at this revision

API Documentation at this revision

Comitter:
Helmut Tschemernjak
Date:
Sun Jul 23 18:04:39 2017 +0200
Parent:
73:23cc8ba412e0
Child:
75:7330dd86cdea
Commit message:
added dprintf and dump helpers for Arduino

Changed in this revision

Arduino-mbed-APIs/arduino-util.cpp Show annotated file Show diff for this revision Revisions of this file
Arduino-mbed-APIs/arduino-util.h Show annotated file Show diff for this revision Revisions of this file
Binary file Arduino-mbed-APIs/arduino-util.cpp has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Arduino-mbed-APIs/arduino-util.h	Sun Jul 23 18:04:39 2017 +0200
@@ -0,0 +1,17 @@
+#ifdef ARDUINO
+#ifndef __ARDUINO_UTIL_H__
+#define __ARDUINO_UTIL_H__
+
+/*
+ * The file is Licensed under the Apache License, Version 2.0
+ * (c) 2017 Helmut Tschemernjak
+ * 30826 Garbsen (Hannover) Germany
+ */
+
+extern void dprintf(const char *format, ...);
+
+extern void dump(const char *title, const void *data, int len);
+
+#endif // __ARDUINO_UTIL_H__
+
+#endif