blob: ccb1446965c707c3b85ce9c0ec359278a7e624d6 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/serial
enum ParityType {
"none",
"even",
"odd",
};
dictionary SerialOptions {
long baudrate = 9600;
octet databits = 8;
octet stopbits = 1;
ParityType parity = "none";
long buffersize = 255;
boolean rtscts = false;
};