-
Notifications
You must be signed in to change notification settings - Fork 0
/
otp_config.h
79 lines (62 loc) · 3.04 KB
/
otp_config.h
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
67
68
69
70
71
72
73
74
75
76
77
78
79
/**
*****************************************************************************************
* Copyright(c) 2017, Realtek Semiconductor Corporation. All rights reserved.
*****************************************************************************************
* @file otp_config.h
* @brief Update Configuration in APP
* @date 2017.6.6
* @version v1.0
* *************************************************************************************
* @attention
* <h2><center>© COPYRIGHT 2017 Realtek Semiconductor Corporation</center></h2>
* *************************************************************************************
*/
/*============================================================================*
* Define to prevent recursive inclusion
*============================================================================*/
#ifndef OTP_CONFIG_H
#define OTP_CONFIG_H
#ifdef __cplusplus
extern "C" {
#endif
#include "rtl876x_wdg.h"
/*============================================================================*
* debug configuration
*============================================================================*/
/** @brief just for debug */
#define SYSTEM_TRACE_ENABLE 0
/*============================================================================*
* flash configuration
*============================================================================*/
/** @brief support for puran flash*/
#define FTL_APP_CALLBACK_ENABLE 0
/** @brief enable BP, set lock level depend on flash layout and selected flash id */
#define FLASH_BLOCK_PROTECT_ENABLE 1
/** @brief modify delay time for wakeup flash from power down mode to standby mode*/
#define AFTER_TOGGLE_CS_DELAY 6
/*============================================================================*
* platform configuration
*============================================================================*/
/** @brief default enable swd pinmux */
#define SWD_PINMUX_ENABLE 1
/** @brief default disable watch dog in rom */
#define ROM_WATCH_DOG_ENABLE 0
/** @brief set wdg mode, default reset all */
#define ROM_WATCH_DOG_MODE RESET_ALL
/*============================================================================*
* upperstack configuration
*============================================================================*/
//add more here
/*============================================================================*
* app configuration
*============================================================================*/
#define OTA_TIMEOUT_TOTAL 240
#define OTA_TIMEOUT_WAIT4_CONN 60
#define OTA_TIMEOUT_WAIT4_IMAGE_TRANS 200
#define OTA_TIMEOUT_CTITTV 0xFF
//add more here
#ifdef __cplusplus
}
#endif
/** @} */ /* End of group OTP_CONFIG */
#endif