SmartMesh QSL for STM32F4 version

Fork of COG-AD4050_QSL by APS Lab

Revision:
0:8ca1e814a851
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sm_clib/dn_uart.h	Wed May 02 09:26:10 2018 +0000
@@ -0,0 +1,35 @@
+/*
+Copyright (c) 2014, Dust Networks. All rights reserved.
+
+\license See attached DN_LICENSE.txt.
+*/
+
+#ifndef DN_UART_H
+#define DN_UART_H
+
+#include "dn_common.h"
+
+//=========================== defined =========================================
+
+//=========================== typedef =========================================
+
+typedef void (*dn_uart_rxByte_cbt)(uint8_t byte);
+
+//=========================== variables =======================================
+
+//=========================== prototypes ======================================
+
+#ifdef __cplusplus
+ extern "C" {
+#endif
+
+void dn_uart_init(dn_uart_rxByte_cbt rxByte_cb);
+void dn_uart_txByte(uint8_t byte);
+void dn_uart_txFlush();
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+