Advertisement
tranthudo

PDM_IDs.h

Jun 5th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 3.49 KB | None | 0 0
  1. /*****************************************************************************
  2.  *
  3.  * MODULE:             JN-AN-1220 ZLO Sensor Demo
  4.  *
  5.  * COMPONENT:          PDM_IDs.h
  6.  *
  7.  * DESCRIPTION:        Persistent Data Manager Id's
  8.  *
  9.  ****************************************************************************
  10.  *
  11.  * This software is owned by NXP B.V. and/or its supplier and is protected
  12.  * under applicable copyright laws. All rights are reserved. We grant You,
  13.  * and any third parties, a license to use this software solely and
  14.  * exclusively on NXP products [NXP Microcontrollers such as JN5168, JN5179].
  15.  * You, and any third parties must reproduce the copyright and warranty notice
  16.  * and any other legend of ownership on each copy or partial copy of the
  17.  * software.
  18.  *
  19.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20.  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22.  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
  23.  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24.  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25.  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26.  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27.  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28.  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29.  * POSSIBILITY OF SUCH DAMAGE.
  30.  *
  31.  * Copyright NXP B.V. 2017. All rights reserved
  32.  *
  33.  ***************************************************************************/
  34.  
  35. #ifndef  PDM_IDS_H_
  36. #define  PDM_IDS_H_
  37.  
  38. #if defined __cplusplus
  39. extern "C" {
  40. #endif
  41.  
  42.  
  43. /****************************************************************************/
  44. /***        Include Files                                                 ***/
  45. /****************************************************************************/
  46.  
  47. #include <jendefs.h>
  48.  
  49. /****************************************************************************/
  50. /***        Macro Definitions                                             ***/
  51. /****************************************************************************/
  52.  
  53. #define PDM_ID_APP_SENSOR           0x1
  54. #define PDM_ID_POWER_ON_COUNTER     0xa
  55. #define PDM_ID_APP_REPORTS          0xb
  56. #define PDM_ID_DEVICE_CONFIG        0x31
  57. #define PDM_ID_OTA_DATA             0x32
  58.  
  59. /****************************************************************************/
  60. /***        Type Definitions                                              ***/
  61. /****************************************************************************/
  62.  
  63. /****************************************************************************/
  64. /***        Exported Functions                                            ***/
  65. /****************************************************************************/
  66.  
  67. /****************************************************************************/
  68. /***        Exported Variables                                            ***/
  69. /****************************************************************************/
  70.  
  71. #if defined __cplusplus
  72. }
  73. #endif
  74.  
  75. #endif /* PDM_IDS_H_ */
  76.  
  77. /****************************************************************************/
  78. /***        END OF FILE                                                   ***/
  79. /****************************************************************************/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement