mirror of
https://github.com/odriverobotics/ODrive.git
synced 2026-08-18 01:18:52 +08:00
remove stray file
This commit is contained in:
@@ -1,29 +0,0 @@
|
||||
#ifndef __FIBRE_CHANNEL_DISCOVERER
|
||||
#define __FIBRE_CHANNEL_DISCOVERER
|
||||
|
||||
#include "async_stream.hpp"
|
||||
#include <fibre/libfibre.h>
|
||||
|
||||
namespace fibre {
|
||||
|
||||
struct ChannelDiscoveryResult {
|
||||
FibreStatus status;
|
||||
AsyncStreamSource* rx_channel;
|
||||
AsyncStreamSink* tx_channel;
|
||||
size_t mtu;
|
||||
};
|
||||
|
||||
struct ChannelDiscoveryContext {};
|
||||
|
||||
class ChannelDiscoverer {
|
||||
public:
|
||||
virtual void start_channel_discovery(
|
||||
const char* specs, size_t specs_len,
|
||||
ChannelDiscoveryContext** handle,
|
||||
Completer<ChannelDiscoveryResult>& on_found_channels) = 0;
|
||||
virtual int stop_channel_discovery(ChannelDiscoveryContext* handle) = 0;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __FIBRE_CHANNEL_DISCOVERER
|
||||
Reference in New Issue
Block a user