xref: /btstack/src/classic/btstack_sbc.h (revision e7a41128192613a900ab63c6f220c3ae809feb0f)
14f0d422dSMilanka Ringwald /*
24f0d422dSMilanka Ringwald  * Copyright (C) 2014 BlueKitchen GmbH
34f0d422dSMilanka Ringwald  *
44f0d422dSMilanka Ringwald  * Redistribution and use in source and binary forms, with or without
54f0d422dSMilanka Ringwald  * modification, are permitted provided that the following conditions
64f0d422dSMilanka Ringwald  * are met:
74f0d422dSMilanka Ringwald  *
84f0d422dSMilanka Ringwald  * 1. Redistributions of source code must retain the above copyright
94f0d422dSMilanka Ringwald  *    notice, this list of conditions and the following disclaimer.
104f0d422dSMilanka Ringwald  * 2. Redistributions in binary form must reproduce the above copyright
114f0d422dSMilanka Ringwald  *    notice, this list of conditions and the following disclaimer in the
124f0d422dSMilanka Ringwald  *    documentation and/or other materials provided with the distribution.
134f0d422dSMilanka Ringwald  * 3. Neither the name of the copyright holders nor the names of
144f0d422dSMilanka Ringwald  *    contributors may be used to endorse or promote products derived
154f0d422dSMilanka Ringwald  *    from this software without specific prior written permission.
164f0d422dSMilanka Ringwald  * 4. Any redistribution, use, or modification is done solely for
174f0d422dSMilanka Ringwald  *    personal benefit and not for any commercial purpose or for
184f0d422dSMilanka Ringwald  *    monetary gain.
194f0d422dSMilanka Ringwald  *
204f0d422dSMilanka Ringwald  * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
214f0d422dSMilanka Ringwald  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
224f0d422dSMilanka Ringwald  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
234f0d422dSMilanka Ringwald  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
244f0d422dSMilanka Ringwald  * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
254f0d422dSMilanka Ringwald  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
264f0d422dSMilanka Ringwald  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
274f0d422dSMilanka Ringwald  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
284f0d422dSMilanka Ringwald  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
294f0d422dSMilanka Ringwald  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
304f0d422dSMilanka Ringwald  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
314f0d422dSMilanka Ringwald  * SUCH DAMAGE.
324f0d422dSMilanka Ringwald  *
334f0d422dSMilanka Ringwald  * Please inquire about commercial licensing options at
344f0d422dSMilanka Ringwald  * [email protected]
354f0d422dSMilanka Ringwald  *
364f0d422dSMilanka Ringwald  */
374f0d422dSMilanka Ringwald 
384f0d422dSMilanka Ringwald /*
394f0d422dSMilanka Ringwald  * btstack_sbc.h
404f0d422dSMilanka Ringwald  *
414f0d422dSMilanka Ringwald  */
424f0d422dSMilanka Ringwald 
434f0d422dSMilanka Ringwald #ifndef __BTSTACK_SBC_H
444f0d422dSMilanka Ringwald #define __BTSTACK_SBC_H
454f0d422dSMilanka Ringwald 
464f0d422dSMilanka Ringwald #include <stdint.h>
474f0d422dSMilanka Ringwald 
484f0d422dSMilanka Ringwald typedef enum{
494f0d422dSMilanka Ringwald     SBC_MODE_STANDARD,
504f0d422dSMilanka Ringwald     SBC_MODE_mSBC
51*e7a41128SMilanka Ringwald } btstack_sbc_mode_t;
524f0d422dSMilanka Ringwald 
534f0d422dSMilanka Ringwald #if defined __cplusplus
544f0d422dSMilanka Ringwald }
554f0d422dSMilanka Ringwald #endif
564f0d422dSMilanka Ringwald 
574f0d422dSMilanka Ringwald #endif // __BTSTACK_SBC_H