NHS31xx SW API
app_demo_dp_tadherence/mods/app_sel.h
1 /*
2  * Copyright 2015-2017 NXP
3  * This software is owned or controlled by NXP and may only be used strictly
4  * in accordance with the applicable license terms. By expressly accepting
5  * such terms or by downloading, installing, activating and/or otherwise using
6  * the software, you are agreeing that you have read, and that you agree to
7  * comply with and are bound by, such license terms. If you do not agree to
8  * be bound by the applicable license terms, then you may not retain, install,
9  * activate or otherwise use the software.
10  */
11 
12 #ifndef __APP_SEL_H_
13 #define __APP_SEL_H_
14 
15 /* These 'defines' capture the settings of the applications. The displayed values refer to the default settings.
16  * To override the default settings, place the defines with their desired values in the application app_sel.h header
17  * file: the compiler will pick up your defines before parsing this file.
18  */
19 
20 /* Diversities tweaking msg module for application-specific usage. */
21 
22 #define MSG_APP_HANDLERS_COUNT 7
23 #define MSG_APP_HANDLERS MsgHandler_CmdHandlers
24 #define MSG_ENABLE_RESET 1
25 #define MSG_ENABLE_PREPAREDEBUG 1
26 #define MSG_ENABLE_GETUID 1
27 #define SW_MAJOR_VERSION 1
28 #define SW_MINOR_VERSION 1
29 
30 /* Diversities tweaking ndeft2t module for application-specific usage. */
31 
32 #define NDEFT2T_FIELD_STATUS_CB NDEFT2T_FieldStatus_Cb
33 #define NDEFT2T_MSG_AVAILABLE_CB NDEFT2T_MsgAvailable_Cb
34 
35 #endif