Library SX1272, initially created by C.Pham, University of Pau, France for Arduino. Suitable for MBED / NUCLEO / STM32

Dependents:   LOW_COAST_LORA_NODE

Revision:
2:a5a72d30cb18
Parent:
0:d974bcee4f69
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ArduinoLike.cpp	Tue Feb 06 09:58:17 2018 +0000
@@ -0,0 +1,13 @@
+// added by C.Dupaty
+// for Arduino compatibility
+#include "mbed.h"
+
+unsigned long micros(void)
+{
+     return us_ticker_read();
+}
+
+unsigned long millis(void)
+{
+    return micros()/1000;
+} 
\ No newline at end of file