1// Copyright 2022 The ChromiumOS Authors 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5syntax = "proto3"; 6 7option go_package = "go.chromium.org/chromiumos/config/go/api/software"; 8 9package chromiumos.config.api.software; 10 11// The configuration of neural network palm rejection. 12// For more details, see: 13// https://source.chromium.org/chromiumos/chromiumos/codesearch/+/HEAD:src/platform2/chromeos-config/README.md 14message NnpalmConfig { 15 string model = 1; 16 string radius_polynomial = 2; 17 bool touch_compatible = 3; 18} 19