1<?xml version="1.0" encoding="utf-8"?>
2
3<!-- Copyright (C) 2012 The Android Open Source Project
4
5     Licensed under the Apache License, Version 2.0 (the "License");
6     you may not use this file except in compliance with the License.
7     You may obtain a copy of the License at
8
9          http://www.apache.org/licenses/LICENSE-2.0
10
11     Unless required by applicable law or agreed to in writing, software
12     distributed under the License is distributed on an "AS IS" BASIS,
13     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14     See the License for the specific language governing permissions and
15     limitations under the License.
16-->
17
18<case name="dut_speaker_calibration" version="1.0" description="Calibrate host recording gain">
19	<setup> <!-- 1 setup -->
20		<!-- prepare sound source id: to be used in output, sine 1000Hz, 20000ms long -->
21		<sound id="sound1" type="sin:32000:1000:20000" preload="1" />
22	</setup>
23
24	<action> <!-- 1 action -->
25		<!--  equivalent of for loop. all children will be completed before moving to the next
26		      stage.repeat up to 100 times unless stopped by some condition -->
27		<sequential repeat="20" index="i">
28			<!--  sync start : execute only sync complete : execute + complete
29			      For sync start, complete will be called when the parent completes -->
30			<output device="DUT" id="sound1" gain="100" sync="start"/>
31			<sequential repeat="50" index="j">
32				<input device="host" id="host_in" gain="100" time="250" sync="complete" />
33				<!-- ------------moving average RMS        min for pass, max for pass                result calculated -->
34				<process method="builtin:rms_mva" input="id:host_in,consti:1000,consti:8000" output="val:rms_$i_$j" />
35				<!-- <message input="val:passfail" output_low="Volume Low" output_ok="Volume OK" output_high="Volume High" /> -->
36			</sequential>
37		</sequential>
38	</action>
39	<save file="host_in" report="rms_.*" />
40</case>
41