APS Lab
/
STM32F4_SmartMesh_QSL
SmartMesh QSL for STM32F4 version
Fork of COG-AD4050_QSL by
sm_clib/dn_uart.h
- Committer:
- APS_Lab
- Date:
- 2018-05-02
- Revision:
- 0:8ca1e814a851
File content as of revision 0:8ca1e814a851:
/* 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