94 lines
3.4 KiB
C
94 lines
3.4 KiB
C
#pragma once
|
|
|
|
/***************************************************************************
|
|
*
|
|
* Copyright 2015-2019 BES.
|
|
* All rights reserved. All unpublished rights reserved.
|
|
*
|
|
* No part of this work may be used or reproduced in any form or by any
|
|
* means, or stored in a database or retrieval system, without prior written
|
|
* permission of BES.
|
|
*
|
|
* Use of this work is governed by a license granted by BES.
|
|
* This work contains confidential and proprietary information of
|
|
* BES. which is protected by copyright, trade secret,
|
|
* trademark and other intellectual property rights.
|
|
*
|
|
****************************************************************************/
|
|
#ifdef MEDIA_PLAYER_SUPPORT
|
|
|
|
extern const uint8_t SOUND_POWER_ON[];
|
|
extern const uint8_t SOUND_POWER_OFF[];
|
|
extern const uint8_t SOUND_ZERO[];
|
|
extern const uint8_t SOUND_ONE[];
|
|
extern const uint8_t SOUND_TWO[];
|
|
extern const uint8_t SOUND_THREE[];
|
|
extern const uint8_t SOUND_FOUR[];
|
|
extern const uint8_t SOUND_FIVE[];
|
|
extern const uint8_t SOUND_SIX[];
|
|
extern const uint8_t SOUND_SEVEN[];
|
|
extern const uint8_t SOUND_EIGHT[];
|
|
extern const uint8_t SOUND_NINE[];
|
|
extern const uint8_t SOUND_PAIR_ENABLE[];
|
|
extern const uint8_t SOUND_PAIRING[];
|
|
extern const uint8_t SOUND_PAIRING_FAIL[];
|
|
extern const uint8_t SOUND_PAIRING_SUCCESS[];
|
|
extern const uint8_t SOUND_REFUSE[];
|
|
extern const uint8_t SOUND_OVER[];
|
|
extern const uint8_t SOUND_ANSWER[];
|
|
extern const uint8_t SOUND_HUNG_UP[];
|
|
extern const uint8_t SOUND_CONNECTED[];
|
|
extern const uint8_t SOUND_DIS_CONNECT[];
|
|
extern const uint8_t SOUND_INCOMING_CALL[];
|
|
extern const uint8_t SOUND_CHARGE_PLEASE[];
|
|
extern const uint8_t SOUND_CHARGE_FINISH[];
|
|
extern const uint8_t SOUND_LANGUAGE_SWITCH[];
|
|
extern const uint8_t SOUND_WARNING[];
|
|
extern const uint8_t SOUND_ALEXA_START[];
|
|
extern const uint8_t SOUND_ALEXA_STOP[];
|
|
extern const uint8_t SOUND_GSOUND_MIC_OPEN[];
|
|
extern const uint8_t SOUND_GSOUND_MIC_CLOSE[];
|
|
extern const uint8_t DUDU[];
|
|
extern const uint8_t SOUND_GSOUND_NC[];
|
|
|
|
extern const unsigned SOUND_POWER_ON_len;
|
|
extern const unsigned SOUND_POWER_OFF_len;
|
|
extern const unsigned SOUND_ZERO_len;
|
|
extern const unsigned SOUND_ONE_len;
|
|
extern const unsigned SOUND_TWO_len;
|
|
extern const unsigned SOUND_THREE_len;
|
|
extern const unsigned SOUND_FOUR_len;
|
|
extern const unsigned SOUND_FIVE_len;
|
|
extern const unsigned SOUND_SIX_len;
|
|
extern const unsigned SOUND_SEVEN_len;
|
|
extern const unsigned SOUND_EIGHT_len;
|
|
extern const unsigned SOUND_NINE_len;
|
|
extern const unsigned SOUND_PAIR_ENABLE_len;
|
|
extern const unsigned SOUND_PAIRING_len;
|
|
extern const unsigned SOUND_PAIRING_FAIL_len;
|
|
extern const unsigned SOUND_PAIRING_SUCCESS_len;
|
|
extern const unsigned SOUND_REFUSE_len;
|
|
extern const unsigned SOUND_OVER_len;
|
|
extern const unsigned SOUND_ANSWER_len;
|
|
extern const unsigned SOUND_HUNG_UP_len;
|
|
extern const unsigned SOUND_CONNECTED_len;
|
|
extern const unsigned SOUND_DIS_CONNECT_len;
|
|
extern const unsigned SOUND_INCOMING_CALL_len;
|
|
extern const unsigned SOUND_CHARGE_PLEASE_len;
|
|
extern const unsigned SOUND_CHARGE_FINISH_len;
|
|
extern const unsigned SOUND_LANGUAGE_SWITCH_len;
|
|
extern const unsigned SOUND_WARNING_len;
|
|
extern const unsigned SOUND_ALEXA_START_len;
|
|
extern const unsigned SOUND_ALEXA_STOP_len;
|
|
extern const unsigned SOUND_GSOUND_MIC_OPEN_len;
|
|
extern const unsigned SOUND_GSOUND_MIC_CLOSE_len;
|
|
extern const unsigned DUDU_len;
|
|
extern const unsigned SOUND_GSOUND_NC_len;
|
|
|
|
#ifdef __INTERACTION__
|
|
extern const uint8_t SOUND_FINDME[];
|
|
extern unsigned int SOUND_FINDME_len;
|
|
#endif
|
|
|
|
#endif
|