app_config.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. #ifndef _APP_CONFIG_H
  2. #define _APP_CONFIG_H
  3. // <<< Use Configuration Wizard in Context Menu >>>
  4. // <h> SYSTEM Configuration
  5. // <o> SYSTEM_CLOCK_SEL
  6. // <i> system clock selection, default: 48MHz
  7. // <4=> 48MHz
  8. // <5=> 96MHz
  9. #define SYSTEM_CLOCK_SEL 4
  10. // <o> LP_RC_CALIB_CNT
  11. // <i> lowpower clock calibration counter, the calibration will take about 18us*LOW_RC_CALIB_CNT, default: 100
  12. // <50-1000:10>
  13. #define LP_RC_CALIB_CNT 60
  14. // <o> LP_RC_CALIB_LARGE_CNT
  15. // <i> lowpower clock calibration counter, the calibration will take about 18us*LOW_RC_CALIB_CNT, default: 100
  16. // <5000-60000:1000>
  17. #define LP_RC_CALIB_LARGE_CNT 10000
  18. // </h>
  19. // <h> LOG Configuration
  20. // <c1> LOG_ENABLE
  21. // <i> enable log module
  22. #define LOG_ENABLE
  23. // </c>
  24. // <c1> LOG_ENABLE_FILE_LINE
  25. // <i> display file name and line number in log
  26. //#define LOG_ENABLE_FILE_LINE
  27. // </c>
  28. // <c1> LOG_ENABLE_TIME
  29. // <i> display how many milliseconds have passed after power on in log
  30. //#define LOG_ENABLE_TIME
  31. // </c>
  32. #define LOG_OUTPUT_RTT 0
  33. #define LOG_OUTPUT_UART0 1
  34. #define LOG_OUTPUT_UART1 2
  35. // <o> LOG_OUTPUT_SEL
  36. // <i> LOG output selection, default: LOG_OUTPUT_UART0
  37. // <0=> LOG_OUTPUT_RTT
  38. // <1=> LOG_OUTPUT_UART0
  39. // <2=> LOG_OUTPUT_UART1
  40. #define LOG_OUTPUT_SEL 1
  41. // <o> LOG_UART_BAUDRATE_CFG
  42. // <i> uart buadrate used for log module, default: BAUDRATE_115200
  43. // <1152=> BAUDRATE_115200
  44. // <9216=> BAUDRATE_921600
  45. #define LOG_UART_BAUDRATE_CFG 1152
  46. // <o> LOG_UART_RX_PORT_SEL
  47. // <i> which pin is used for uart RX, default: PA2
  48. // <0=> PA0
  49. // <1=> PA1
  50. // <2=> PA2
  51. // <3=> PA3
  52. // <4=> PA4
  53. // <5=> PA5
  54. // <6=> PA6
  55. // <7=> PA7
  56. // <8=> PB0
  57. // <9=> PB1
  58. // <10=> PB2
  59. // <11=> PB3
  60. // <12=> PB4
  61. // <13=> PB5
  62. // <14=> PB6
  63. // <15=> PB7
  64. // <16=> PC0
  65. // <17=> PC1
  66. // <18=> PC2
  67. // <19=> PC3
  68. // <20=> PC4
  69. // <21=> PC5
  70. // <22=> PC6
  71. // <23=> PC7
  72. // <24=> PD0
  73. // <25=> PD1
  74. // <26=> PD2
  75. // <27=> PD3
  76. // <28=> PD4
  77. // <29=> PD5
  78. // <30=> PD6
  79. // <31=> PD7
  80. #define LOG_UART_RX_PORT_SEL 0
  81. // <o> LOG_UART_TX_PORT_SEL
  82. // <i> which pin is used for uart TX, default: PA3
  83. // <0=> PA0
  84. // <1=> PA1
  85. // <2=> PA2
  86. // <3=> PA3
  87. // <4=> PA4
  88. // <5=> PA5
  89. // <6=> PA6
  90. // <7=> PA7
  91. // <8=> PB0
  92. // <9=> PB1
  93. // <10=> PB2
  94. // <11=> PB3
  95. // <12=> PB4
  96. // <13=> PB5
  97. // <14=> PB6
  98. // <15=> PB7
  99. // <16=> PC0
  100. // <17=> PC1
  101. // <18=> PC2
  102. // <19=> PC3
  103. // <20=> PC4
  104. // <21=> PC5
  105. // <22=> PC6
  106. // <23=> PC7
  107. // <24=> PD0
  108. // <25=> PD1
  109. // <26=> PD2
  110. // <27=> PD3
  111. // <28=> PD4
  112. // <29=> PD5
  113. // <30=> PD6
  114. // <31=> PD7
  115. #define LOG_UART_TX_PORT_SEL 1
  116. // <c3> LOG_USE_SIMPLIFIED_PRINTF
  117. // <i> if LOG_USE_SIMPLIFIED_PRINTF is defined, a build-in simplified co_printf will
  118. // <i> be used to replace printf in libc. Some commonly used print formats are supported
  119. // <i> by co_printf, such as %d %s %c %x etc.
  120. //#define LOG_USE_SIMPLIFIED_PRINTF
  121. // </c>
  122. // </h>
  123. // <h> FLASH Configuration
  124. // <o> FLASH_CAPACITY
  125. // <i> Internal Flash capacity selection, Default: 4Mb
  126. // <0x00080000=> 4Mb
  127. // <0x00040000=> 2Mb
  128. #define FLASH_CAPACITY 0x00080000
  129. #if FLASH_CAPACITY == 0x00080000
  130. #define BLE_STACK_KEY_STORAGE_OFFSET 0x7F000
  131. #define BLE_BONDING_INFO_SAVE_ADDR 0x7D000
  132. #define BLE_REMOTE_SERVICE_SAVE_ADDR 0x7E000
  133. #elif FLASH_CAPACITY == 0x00040000
  134. #define BLE_STACK_KEY_STORAGE_OFFSET 0x3F000
  135. #define BLE_BONDING_INFO_SAVE_ADDR 0x3D000
  136. #define BLE_REMOTE_SERVICE_SAVE_ADDR 0x3E000
  137. #else
  138. #error "flash capacity configuration error!"
  139. #endif //FOR_2M_FLASH
  140. // </h>
  141. // <h> BLE STACK Configuration
  142. // <o> BLE_STACK_ENABLE_MESH
  143. // <i> check to enable or disable sig mesh, default: DISABLE
  144. // <0=> DISABLE
  145. // <1=> ENABLE
  146. #define BLE_STACK_ENABLE_MESH 0
  147. // <o> BLE_STACK_ENABLE_CONNECTIONS
  148. // <i> used to define maximum number of connections
  149. // <1-30:1>
  150. #define BLE_STACK_ENABLE_CONNECTIONS 1
  151. // <o> BLE_STACK_RX_BUFFER_CNT
  152. // <i> used to define how many receive buffers reserved in link layer
  153. // <4-20:1>
  154. #define BLE_STACK_RX_BUFFER_CNT 8
  155. // <o> BLE_STACK_RX_BUFFER_SIZE
  156. // <i> used to define how many space reserved for each RX buffer
  157. // <37-251:1>
  158. #define BLE_STACK_RX_BUFFER_SIZE 37
  159. // <o> BLE_STACK_TX_BUFFER_CNT
  160. // <i> used to define how many transmit buffers reserved in link layer
  161. // <4-20:1>
  162. #define BLE_STACK_TX_BUFFER_CNT 8
  163. // <o> BLE_STACK_TX_BUFFER_SIZE
  164. // <i> used to define how many space reserved for each RX buffer
  165. // <27-251:1>
  166. #define BLE_STACK_TX_BUFFER_SIZE 27
  167. // <o> BLE_STACK_ADV_BUFFER_SIZE
  168. // <i> used to define how many space reserved for each advertising buffer
  169. // <31-251:1>
  170. #define BLE_STACK_ADV_BUFFER_SIZE 131
  171. // <o> BLE_STACK_RETENTION_RAM_SIZE
  172. // <i> used to define retention RAM size after enter deepsleep, default: 56KB
  173. // <0xE000=> 56KB
  174. // <0xC000=> 48KB
  175. // <0x8000=> 32KB
  176. #define BLE_STACK_RETENTION_RAM_SIZE 0xE000
  177. // </h>
  178. // <<< end of configuration section >>>
  179. #endif // _APP_CONFIG_H