Lora OTA device for Everynet

Dependencies:   LMiCLibOTADeviceEverynet SX1276Lib X_NUCLEO_IKS01A1 cantcoap lwip mbed-rtos mbed

Fork of LoRaWAN-test-10secs by Alcatel-Lucent IoT Development

Revision:
4:5e274bf85bf0
Parent:
1:60184eda0066
Child:
10:155dc60fce79
--- a/debug.h	Thu Apr 16 20:00:01 2015 +0000
+++ b/debug.h	Fri Nov 20 12:33:37 2015 +0000
@@ -7,10 +7,7 @@
  *
  * Contributors:
  *    IBM Zurich Research Lab - initial API, implementation and documentation
- *    Semtech Apps Team       - Adapted for MBED
  *******************************************************************************/
-#ifndef _debug_hpp_
-#define _debug_hpp_
 
 // intialize debug library
 void debug_init (void);
@@ -31,12 +28,12 @@
 void debug_uint (u4_t v);
 
 // write nul-terminated string to USART
+void debug_str (const char* str);
 void debug_str (const u1_t* str);
 
 // write LMiC event name to USART
 void debug_event (int ev);
 
 // write label and 32-bit value as hex to USART
+void debug_val (const char* label, u4_t val);
 void debug_val (const u1_t* label, u4_t val);
-
-#endif // _debug_hpp_