hfp_ag.c (8cd06fb6a794985f5bf987a12f4c6f1f7f0d9cb3) hfp_ag.c (e58f738af417a33f8b0f75a99a2d9d5c2071f2d5)
1/*
2 * Copyright (C) 2014 BlueKitchen GmbH
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright

--- 91 unchanged lines hidden (view full) ---

100// in-band ring tone is active on SLC if supported
101static bool hfp_ag_in_band_ring_tone_active;
102
103// codecs
104static uint8_t hfp_ag_codecs_nr;
105static uint8_t hfp_ag_codecs[HFP_MAX_NUM_CODECS];
106
107// AG indicators
1/*
2 * Copyright (C) 2014 BlueKitchen GmbH
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright

--- 91 unchanged lines hidden (view full) ---

100// in-band ring tone is active on SLC if supported
101static bool hfp_ag_in_band_ring_tone_active;
102
103// codecs
104static uint8_t hfp_ag_codecs_nr;
105static uint8_t hfp_ag_codecs[HFP_MAX_NUM_CODECS];
106
107// AG indicators
108static int hfp_ag_indicators_nr;
108static uint16_t hfp_ag_indicators_nr;
109static hfp_ag_indicator_t hfp_ag_indicators[HFP_MAX_NUM_INDICATORS];
110
111// generic status indicators
109static hfp_ag_indicator_t hfp_ag_indicators[HFP_MAX_NUM_INDICATORS];
110
111// generic status indicators
112static int hfp_ag_generic_status_indicators_nr;
112static uint16_t hfp_ag_generic_status_indicators_nr;
113static hfp_generic_status_indicator_t hfp_ag_generic_status_indicators[HFP_MAX_NUM_INDICATORS];
114
113static hfp_generic_status_indicator_t hfp_ag_generic_status_indicators[HFP_MAX_NUM_INDICATORS];
114
115static int hfp_ag_call_hold_services_nr;
116static char * hfp_ag_call_hold_services[6];
115static uint16_t hfp_ag_call_hold_services_nr;
116static char * hfp_ag_call_hold_services[6];
117
118static hfp_response_and_hold_state_t hfp_ag_response_and_hold_state;
119static bool hfp_ag_response_and_hold_active = false;
120
121// Subscriber information entries
122static hfp_phone_number_t * hfp_ag_subscriber_numbers;
123static int hfp_ag_subscriber_numbers_count;
124

--- 3197 unchanged lines hidden ---
117
118static hfp_response_and_hold_state_t hfp_ag_response_and_hold_state;
119static bool hfp_ag_response_and_hold_active = false;
120
121// Subscriber information entries
122static hfp_phone_number_t * hfp_ag_subscriber_numbers;
123static int hfp_ag_subscriber_numbers_count;
124

--- 3197 unchanged lines hidden ---