1dc5611fdSMilanka Ringwald /* 2dc5611fdSMilanka Ringwald * Copyright (C) 2014 BlueKitchen GmbH 3dc5611fdSMilanka Ringwald * 4dc5611fdSMilanka Ringwald * Redistribution and use in source and binary forms, with or without 5dc5611fdSMilanka Ringwald * modification, are permitted provided that the following conditions 6dc5611fdSMilanka Ringwald * are met: 7dc5611fdSMilanka Ringwald * 8dc5611fdSMilanka Ringwald * 1. Redistributions of source code must retain the above copyright 9dc5611fdSMilanka Ringwald * notice, this list of conditions and the following disclaimer. 10dc5611fdSMilanka Ringwald * 2. Redistributions in binary form must reproduce the above copyright 11dc5611fdSMilanka Ringwald * notice, this list of conditions and the following disclaimer in the 12dc5611fdSMilanka Ringwald * documentation and/or other materials provided with the distribution. 13dc5611fdSMilanka Ringwald * 3. Neither the name of the copyright holders nor the names of 14dc5611fdSMilanka Ringwald * contributors may be used to endorse or promote products derived 15dc5611fdSMilanka Ringwald * from this software without specific prior written permission. 16dc5611fdSMilanka Ringwald * 4. Any redistribution, use, or modification is done solely for 17dc5611fdSMilanka Ringwald * personal benefit and not for any commercial purpose or for 18dc5611fdSMilanka Ringwald * monetary gain. 19dc5611fdSMilanka Ringwald * 20dc5611fdSMilanka Ringwald * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS 21dc5611fdSMilanka Ringwald * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 22dc5611fdSMilanka Ringwald * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 23dc5611fdSMilanka Ringwald * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS 24dc5611fdSMilanka Ringwald * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 25dc5611fdSMilanka Ringwald * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 26dc5611fdSMilanka Ringwald * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 27dc5611fdSMilanka Ringwald * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 28dc5611fdSMilanka Ringwald * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 29dc5611fdSMilanka Ringwald * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 30dc5611fdSMilanka Ringwald * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31dc5611fdSMilanka Ringwald * SUCH DAMAGE. 32dc5611fdSMilanka Ringwald * 33dc5611fdSMilanka Ringwald * Please inquire about commercial licensing options at 34dc5611fdSMilanka Ringwald * [email protected] 35dc5611fdSMilanka Ringwald * 36dc5611fdSMilanka Ringwald */ 37dc5611fdSMilanka Ringwald 38dc5611fdSMilanka Ringwald // ***************************************************************************** 39dc5611fdSMilanka Ringwald // 40dc5611fdSMilanka Ringwald // HFP Test Sequences 41dc5611fdSMilanka Ringwald // 42dc5611fdSMilanka Ringwald // ***************************************************************************** 43dc5611fdSMilanka Ringwald 44dc5611fdSMilanka Ringwald #include <stdint.h> 45dc5611fdSMilanka Ringwald #include <stdio.h> 46dc5611fdSMilanka Ringwald #include <stdlib.h> 47dc5611fdSMilanka Ringwald #include <string.h> 48dc5611fdSMilanka Ringwald 49*588df5e9SMatthias Ringwald #if defined __cplusplus 50*588df5e9SMatthias Ringwald extern "C" { 51*588df5e9SMatthias Ringwald #endif 52*588df5e9SMatthias Ringwald 53dc5611fdSMilanka Ringwald typedef struct hfp_test_item{ 540cacd247SMilanka Ringwald char * name; 55dc5611fdSMilanka Ringwald char ** test; 56dc5611fdSMilanka Ringwald int len; 57dc5611fdSMilanka Ringwald } hfp_test_item_t; 58dc5611fdSMilanka Ringwald 59dc5611fdSMilanka Ringwald /* Codecs Connection (cc) test sequences */ 600cacd247SMilanka Ringwald int hfp_cc_tests_size(); 61dc5611fdSMilanka Ringwald hfp_test_item_t * hfp_cc_tests(); 620cacd247SMilanka Ringwald hfp_test_item_t * default_hfp_cc_test(); 63dc5611fdSMilanka Ringwald 64d5deed03SMilanka Ringwald /* PTS test sequences - SLC Group */ 65c3a23b29SMilanka Ringwald int hfp_pts_ag_slc_tests_size(); 66c3a23b29SMilanka Ringwald hfp_test_item_t * hfp_pts_ag_slc_tests(); 67c3a23b29SMilanka Ringwald int hfp_pts_hf_slc_tests_size(); 68c3a23b29SMilanka Ringwald hfp_test_item_t * hfp_pts_hf_slc_tests(); 69a8714e14SMilanka Ringwald 70d5deed03SMilanka Ringwald /* PTS test sequences - ATA Group */ 71d5deed03SMilanka Ringwald int hfp_pts_ag_ata_tests_size(); 72d5deed03SMilanka Ringwald hfp_test_item_t * hfp_pts_ag_ata_tests(); 73d5deed03SMilanka Ringwald int hfp_pts_hf_ata_tests_size(); 74d5deed03SMilanka Ringwald hfp_test_item_t * hfp_pts_hf_ata_tests(); 75d5deed03SMilanka Ringwald 76d3c6e257SMilanka Ringwald /* PTS test sequences - TWC Group */ 77d3c6e257SMilanka Ringwald int hfp_pts_ag_twc_tests_size(); 78d3c6e257SMilanka Ringwald hfp_test_item_t * hfp_pts_ag_twc_tests(); 79d3c6e257SMilanka Ringwald int hfp_pts_hf_twc_tests_size(); 80d3c6e257SMilanka Ringwald hfp_test_item_t * hfp_pts_hf_twc_tests(); 81d3c6e257SMilanka Ringwald 82d3c6e257SMilanka Ringwald /* PTS test sequences - ECS Group */ 83d3c6e257SMilanka Ringwald int hfp_pts_ag_ecs_tests_size(); 84d3c6e257SMilanka Ringwald hfp_test_item_t * hfp_pts_ag_ecs_tests(); 85d3c6e257SMilanka Ringwald int hfp_pts_hf_ecs_tests_size(); 86d3c6e257SMilanka Ringwald hfp_test_item_t * hfp_pts_hf_ecs_tests(); 87d3c6e257SMilanka Ringwald 88d3c6e257SMilanka Ringwald /* PTS test sequences - ECC Group */ 89d3c6e257SMilanka Ringwald int hfp_pts_ag_ecc_tests_size(); 90d3c6e257SMilanka Ringwald hfp_test_item_t * hfp_pts_ag_ecc_tests(); 91d3c6e257SMilanka Ringwald int hfp_pts_hf_ecc_tests_size(); 92d3c6e257SMilanka Ringwald hfp_test_item_t * hfp_pts_hf_ecc_tests(); 93d3c6e257SMilanka Ringwald 94d3c6e257SMilanka Ringwald /* PTS test sequences - RHH Group */ 95d3c6e257SMilanka Ringwald int hfp_pts_ag_rhh_tests_size(); 96d3c6e257SMilanka Ringwald hfp_test_item_t * hfp_pts_ag_rhh_tests(); 97d3c6e257SMilanka Ringwald int hfp_pts_hf_rhh_tests_size(); 98d3c6e257SMilanka Ringwald hfp_test_item_t * hfp_pts_hf_rhh_tests(); 99d3c6e257SMilanka Ringwald 100*588df5e9SMatthias Ringwald #if defined __cplusplus 101*588df5e9SMatthias Ringwald } 102*588df5e9SMatthias Ringwald #endif 103