-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheadset_nvram.h
More file actions
66 lines (60 loc) · 3.26 KB
/
Copy pathheadset_nvram.h
File metadata and controls
66 lines (60 loc) · 3.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/******************************************************************************
* File Name: headset_nvram.h
*
* Description: Declaration of required parameters used for NVRAM operation.
*
* Related Document: None
*
*******************************************************************************
* (c) 2021-2026, Infineon Technologies AG, or an affiliate of Infineon
* Technologies AG. All rights reserved.
* This software, associated documentation and materials ("Software") is
* owned by Infineon Technologies AG or one of its affiliates ("Infineon")
* and is protected by and subject to worldwide patent protection, worldwide
* copyright laws, and international treaty provisions. Therefore, you may use
* this Software only as provided in the license agreement accompanying the
* software package from which you obtained this Software. If no license
* agreement applies, then any use, reproduction, modification, translation, or
* compilation of this Software is prohibited without the express written
* permission of Infineon.
*
* Disclaimer: UNLESS OTHERWISE EXPRESSLY AGREED WITH INFINEON, THIS SOFTWARE
* IS PROVIDED AS-IS, WITH NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING, BUT NOT LIMITED TO, ALL WARRANTIES OF NON-INFRINGEMENT OF
* THIRD-PARTY RIGHTS AND IMPLIED WARRANTIES SUCH AS WARRANTIES OF FITNESS FOR A
* SPECIFIC USE/PURPOSE OR MERCHANTABILITY.
* Infineon reserves the right to make changes to the Software without notice.
* You are responsible for properly designing, programming, and testing the
* functionality and safety of your intended application of the Software, as
* well as complying with any legal requirements related to its use. Infineon
* does not guarantee that the Software will be free from intrusion, data theft
* or loss, or other breaches ("Security Breaches"), and Infineon shall have
* no liability arising out of any Security Breaches. Unless otherwise
* explicitly approved by Infineon, the Software may not be used in any
* application where a failure of the Product or any consequences of the use
* thereof can reasonably be expected to result in personal injury.
*******************************************************************************/
#if !defined(HEADSET_NVRAM_H)
#define HEADSET_NVRAM_H
/*******************************************************************************
* Header Files
*******************************************************************************/
#include "wiced_result.h"
#include "wiced_hal_nvram.h"
/*******************************************************************************
* Macro Definitions
*******************************************************************************/
enum
{
HEADSET_NVRAM_ID_LINK_KEYS = WICED_NVRAM_VSID_START,
HEADSET_NVRAM_ID_LOCAL_IRK,
HEADSET_NVRAM_ID_GFPS_ACCOUNT_KEY,
};
/*******************************************************************************
* External Variable Declarations
*******************************************************************************/
/*******************************************************************************
* Function Prototypes
*******************************************************************************/
#endif /* HEADSET_NVRAM_H */
/* [] END OF FILE */