OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 import "data_stream.mojom" | |
6 | |
5 module device.serial { | 7 module device.serial { |
6 | 8 |
7 struct DeviceInfo { | 9 struct DeviceInfo { |
8 string? path; | 10 string? path; |
9 uint16 vendor_id; | 11 uint16 vendor_id; |
10 bool has_vendor_id = false; | 12 bool has_vendor_id = false; |
11 uint16 product_id; | 13 uint16 product_id; |
12 bool has_product_id = false; | 14 bool has_product_id = false; |
13 string? display_name; | 15 string? display_name; |
14 }; | 16 }; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
81 | 83 |
82 interface SerialService { | 84 interface SerialService { |
83 GetDevices() => (DeviceInfo[] devices); | 85 GetDevices() => (DeviceInfo[] devices); |
84 | 86 |
85 // Creates a |Connection| to |path| with options specified by |options|, | 87 // Creates a |Connection| to |path| with options specified by |options|, |
86 // returning it via |connection|. This will fail and |connection| will not be | 88 // returning it via |connection|. This will fail and |connection| will not be |
87 // usable if |path| does not specify a valid serial device or there is an | 89 // usable if |path| does not specify a valid serial device or there is an |
88 // error connecting to or configuring the connection. | 90 // error connecting to or configuring the connection. |
89 Connect(string path, | 91 Connect(string path, |
90 ConnectionOptions options, | 92 ConnectionOptions options, |
91 Connection& connection); | 93 Connection& connection, |
94 DataSink& sink, | |
95 DataSource& source); | |
raymes
2014/08/22 04:57:43
Perhaps a comment for what sink and source are for
Sam McNally
2014/08/22 08:12:12
Done.
| |
92 }; | 96 }; |
93 | 97 |
94 interface Connection { | 98 interface Connection { |
95 GetInfo() => (ConnectionInfo? info); | 99 GetInfo() => (ConnectionInfo? info); |
96 SetOptions(ConnectionOptions options) => (bool success); | 100 SetOptions(ConnectionOptions options) => (bool success); |
97 SetControlSignals(HostControlSignals signals) => (bool success); | 101 SetControlSignals(HostControlSignals signals) => (bool success); |
98 GetControlSignals() => (DeviceControlSignals signals); | 102 GetControlSignals() => (DeviceControlSignals signals); |
99 Flush() => (bool success); | 103 Flush() => (bool success); |
100 }; | 104 }; |
101 | 105 |
102 } | 106 } |
OLD | NEW |