void ser_phy_close(void)
{
    uint16_t uart_id = 0;

    m_ser_phy_event_handler = NULL;
    (void)app_uart_close(uart_id);
}
Exemple #2
0
uint32_t hci_slip_close()
{
    m_current_state   = SLIP_OFF;
    uint32_t err_code = app_uart_close();

    return err_code;
}
Exemple #3
0
void ser_phy_hci_slip_close(void)
{
    m_ser_phy_hci_slip_event_handler = NULL;
    (void)app_uart_close();
}