Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
source/thread_br_conn_handler.h
- Committer:
- mbed_official
- Date:
- 2018-08-15
- Revision:
- 73:f4774a6609dc
- Parent:
- 0:85f4174a8e29
- Child:
- 82:3d9e3b7b3dcf
File content as of revision 73:f4774a6609dc:
/*
* Copyright (c) 2016 ARM Limited. All rights reserved.
*/
#ifndef thread_br_conn_handler_H_
#define thread_br_conn_handler_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "ns_types.h"
void thread_br_conn_handler_init(void);
void thread_br_conn_handler_thread_connection_update(bool status);
void thread_br_conn_handler_ethernet_connection_update(bool status);
// Tells that ethernet connection is ready and the prefix can be read and set.
void thread_br_conn_handler_eth_ready(void);
// Setters
void thread_br_conn_handler_thread_interface_id_set(int8_t interfaceId);
void thread_br_conn_handler_eth_interface_id_set(int8_t interfaceId);
// Getters thread_br_conn_handler
bool thread_br_conn_handler_eth_connection_status_get(void);
bool thread_br_conn_handler_thread_connection_status_get(void);
int8_t thread_br_conn_handler_thread_interface_id_get(void);
int8_t thread_br_conn_handler_eth_interface_id_get(void);
#ifdef __cplusplus
}
#endif
#endif /* thread_br_conn_handler_H_ */