1# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5"""FAFT config setting overrides for Parrot."""
6
7
8class Values(object):
9    """FAFT config values for Parrot."""
10    # Parrot uses UART to switch to rec mode instead of gpio thus to
11    # clear rec_mode, devices needs to be sufficiently booted.
12    ec_boot_to_console = 4
13
14    dark_resume_capable = True
15    key_checker = [[0x29, 'press'],
16                   [0x32, 'press'],
17                   [0x32, 'release'],
18                   [0x29, 'release'],
19                   [0x47, 'press'],
20                   [0x47, 'release']]
21