nrfx_config.h 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605
  1. #ifndef NRFX_CONFIG_H__
  2. #define NRFX_CONFIG_H__
  3. // <<< Use Configuration Wizard in Context Menu >>>\n
  4. // <h> nRF_Drivers
  5. // <e> NRFX_ADC_ENABLED - nrfx_adc - ADC peripheral driver
  6. //==========================================================
  7. #ifndef NRFX_ADC_ENABLED
  8. #define NRFX_ADC_ENABLED 1
  9. #endif
  10. // <o> NRFX_ADC_CONFIG_IRQ_PRIORITY - Interrupt priority
  11. // <0=> 0 (highest)
  12. // <1=> 1
  13. // <2=> 2
  14. // <3=> 3
  15. #ifndef NRFX_ADC_CONFIG_IRQ_PRIORITY
  16. #define NRFX_ADC_CONFIG_IRQ_PRIORITY 3
  17. #endif
  18. // <e> NRFX_ADC_CONFIG_LOG_ENABLED - Enables logging in the module.
  19. //==========================================================
  20. #ifndef NRFX_ADC_CONFIG_LOG_ENABLED
  21. #define NRFX_ADC_CONFIG_LOG_ENABLED 0
  22. #endif
  23. // <o> NRFX_ADC_CONFIG_LOG_LEVEL - Default Severity level
  24. // <0=> Off
  25. // <1=> Error
  26. // <2=> Warning
  27. // <3=> Info
  28. // <4=> Debug
  29. #ifndef NRFX_ADC_CONFIG_LOG_LEVEL
  30. #define NRFX_ADC_CONFIG_LOG_LEVEL 3
  31. #endif
  32. // <o> NRFX_ADC_CONFIG_INFO_COLOR - ANSI escape code prefix.
  33. // <0=> Default
  34. // <1=> Black
  35. // <2=> Red
  36. // <3=> Green
  37. // <4=> Yellow
  38. // <5=> Blue
  39. // <6=> Magenta
  40. // <7=> Cyan
  41. // <8=> White
  42. #ifndef NRFX_ADC_CONFIG_INFO_COLOR
  43. #define NRFX_ADC_CONFIG_INFO_COLOR 0
  44. #endif
  45. // <o> NRFX_ADC_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  46. // <0=> Default
  47. // <1=> Black
  48. // <2=> Red
  49. // <3=> Green
  50. // <4=> Yellow
  51. // <5=> Blue
  52. // <6=> Magenta
  53. // <7=> Cyan
  54. // <8=> White
  55. #ifndef NRFX_ADC_CONFIG_DEBUG_COLOR
  56. #define NRFX_ADC_CONFIG_DEBUG_COLOR 0
  57. #endif
  58. // </e>
  59. // </e>
  60. // <e> NRFX_CLOCK_ENABLED - nrfx_clock - CLOCK peripheral driver
  61. //==========================================================
  62. #ifndef NRFX_CLOCK_ENABLED
  63. #define NRFX_CLOCK_ENABLED 1
  64. #endif
  65. // <o> NRFX_CLOCK_CONFIG_LF_SRC - LF Clock Source
  66. // <0=> RC
  67. // <1=> XTAL
  68. // <2=> Synth
  69. #ifndef NRFX_CLOCK_CONFIG_LF_SRC
  70. #define NRFX_CLOCK_CONFIG_LF_SRC 1
  71. #endif
  72. // <q> NRFX_CLOCK_CONFIG_LF_CAL_ENABLED - Enables LF Clock Calibration Support
  73. #ifndef NRFX_CLOCK_CONFIG_LF_CAL_ENABLED
  74. #define NRFX_CLOCK_CONFIG_LF_CAL_ENABLED 0
  75. #endif
  76. // <o> NRFX_CLOCK_CONFIG_IRQ_PRIORITY - Interrupt priority
  77. // <0=> 0 (highest)
  78. // <1=> 1
  79. // <2=> 2
  80. // <3=> 3
  81. #ifndef NRFX_CLOCK_CONFIG_IRQ_PRIORITY
  82. #define NRFX_CLOCK_CONFIG_IRQ_PRIORITY 3
  83. #endif
  84. // <e> NRFX_CLOCK_CONFIG_LOG_ENABLED - Enables logging in the module.
  85. //==========================================================
  86. #ifndef NRFX_CLOCK_CONFIG_LOG_ENABLED
  87. #define NRFX_CLOCK_CONFIG_LOG_ENABLED 0
  88. #endif
  89. // <o> NRFX_CLOCK_CONFIG_LOG_LEVEL - Default Severity level
  90. // <0=> Off
  91. // <1=> Error
  92. // <2=> Warning
  93. // <3=> Info
  94. // <4=> Debug
  95. #ifndef NRFX_CLOCK_CONFIG_LOG_LEVEL
  96. #define NRFX_CLOCK_CONFIG_LOG_LEVEL 3
  97. #endif
  98. // <o> NRFX_CLOCK_CONFIG_INFO_COLOR - ANSI escape code prefix.
  99. // <0=> Default
  100. // <1=> Black
  101. // <2=> Red
  102. // <3=> Green
  103. // <4=> Yellow
  104. // <5=> Blue
  105. // <6=> Magenta
  106. // <7=> Cyan
  107. // <8=> White
  108. #ifndef NRFX_CLOCK_CONFIG_INFO_COLOR
  109. #define NRFX_CLOCK_CONFIG_INFO_COLOR 0
  110. #endif
  111. // <o> NRFX_CLOCK_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  112. // <0=> Default
  113. // <1=> Black
  114. // <2=> Red
  115. // <3=> Green
  116. // <4=> Yellow
  117. // <5=> Blue
  118. // <6=> Magenta
  119. // <7=> Cyan
  120. // <8=> White
  121. #ifndef NRFX_CLOCK_CONFIG_DEBUG_COLOR
  122. #define NRFX_CLOCK_CONFIG_DEBUG_COLOR 0
  123. #endif
  124. // </e>
  125. // </e>
  126. // <e> NRFX_GPIOTE_ENABLED - nrfx_gpiote - GPIOTE peripheral driver
  127. //==========================================================
  128. #ifndef NRFX_GPIOTE_ENABLED
  129. #define NRFX_GPIOTE_ENABLED 1
  130. #endif
  131. // <o> NRFX_GPIOTE_CONFIG_NUM_OF_LOW_POWER_EVENTS - Number of lower power input pins
  132. #ifndef NRFX_GPIOTE_CONFIG_NUM_OF_LOW_POWER_EVENTS
  133. #define NRFX_GPIOTE_CONFIG_NUM_OF_LOW_POWER_EVENTS 1
  134. #endif
  135. // <o> NRFX_GPIOTE_CONFIG_IRQ_PRIORITY - Interrupt priority
  136. // <0=> 0 (highest)
  137. // <1=> 1
  138. // <2=> 2
  139. // <3=> 3
  140. #ifndef NRFX_GPIOTE_CONFIG_IRQ_PRIORITY
  141. #define NRFX_GPIOTE_CONFIG_IRQ_PRIORITY 3
  142. #endif
  143. // <e> NRFX_GPIOTE_CONFIG_LOG_ENABLED - Enables logging in the module.
  144. //==========================================================
  145. #ifndef NRFX_GPIOTE_CONFIG_LOG_ENABLED
  146. #define NRFX_GPIOTE_CONFIG_LOG_ENABLED 0
  147. #endif
  148. // <o> NRFX_GPIOTE_CONFIG_LOG_LEVEL - Default Severity level
  149. // <0=> Off
  150. // <1=> Error
  151. // <2=> Warning
  152. // <3=> Info
  153. // <4=> Debug
  154. #ifndef NRFX_GPIOTE_CONFIG_LOG_LEVEL
  155. #define NRFX_GPIOTE_CONFIG_LOG_LEVEL 3
  156. #endif
  157. // <o> NRFX_GPIOTE_CONFIG_INFO_COLOR - ANSI escape code prefix.
  158. // <0=> Default
  159. // <1=> Black
  160. // <2=> Red
  161. // <3=> Green
  162. // <4=> Yellow
  163. // <5=> Blue
  164. // <6=> Magenta
  165. // <7=> Cyan
  166. // <8=> White
  167. #ifndef NRFX_GPIOTE_CONFIG_INFO_COLOR
  168. #define NRFX_GPIOTE_CONFIG_INFO_COLOR 0
  169. #endif
  170. // <o> NRFX_GPIOTE_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  171. // <0=> Default
  172. // <1=> Black
  173. // <2=> Red
  174. // <3=> Green
  175. // <4=> Yellow
  176. // <5=> Blue
  177. // <6=> Magenta
  178. // <7=> Cyan
  179. // <8=> White
  180. #ifndef NRFX_GPIOTE_CONFIG_DEBUG_COLOR
  181. #define NRFX_GPIOTE_CONFIG_DEBUG_COLOR 0
  182. #endif
  183. // </e>
  184. // </e>
  185. // <e> NRFX_LPCOMP_ENABLED - nrfx_lpcomp - LPCOMP peripheral driver
  186. //==========================================================
  187. #ifndef NRFX_LPCOMP_ENABLED
  188. #define NRFX_LPCOMP_ENABLED 1
  189. #endif
  190. // <o> NRFX_LPCOMP_CONFIG_REFERENCE - Reference voltage
  191. // <0=> Supply 1/8
  192. // <1=> Supply 2/8
  193. // <2=> Supply 3/8
  194. // <3=> Supply 4/8
  195. // <4=> Supply 5/8
  196. // <5=> Supply 6/8
  197. // <6=> Supply 7/8
  198. // <8=> Supply 1/16 (nRF52)
  199. // <9=> Supply 3/16 (nRF52)
  200. // <10=> Supply 5/16 (nRF52)
  201. // <11=> Supply 7/16 (nRF52)
  202. // <12=> Supply 9/16 (nRF52)
  203. // <13=> Supply 11/16 (nRF52)
  204. // <14=> Supply 13/16 (nRF52)
  205. // <15=> Supply 15/16 (nRF52)
  206. // <7=> External Ref 0
  207. // <65543=> External Ref 1
  208. #ifndef NRFX_LPCOMP_CONFIG_REFERENCE
  209. #define NRFX_LPCOMP_CONFIG_REFERENCE 3
  210. #endif
  211. // <o> NRFX_LPCOMP_CONFIG_DETECTION - Detection
  212. // <0=> Crossing
  213. // <1=> Up
  214. // <2=> Down
  215. #ifndef NRFX_LPCOMP_CONFIG_DETECTION
  216. #define NRFX_LPCOMP_CONFIG_DETECTION 2
  217. #endif
  218. // <o> NRFX_LPCOMP_CONFIG_INPUT - Analog input
  219. // <0=> 0
  220. // <1=> 1
  221. // <2=> 2
  222. // <3=> 3
  223. // <4=> 4
  224. // <5=> 5
  225. // <6=> 6
  226. // <7=> 7
  227. #ifndef NRFX_LPCOMP_CONFIG_INPUT
  228. #define NRFX_LPCOMP_CONFIG_INPUT 0
  229. #endif
  230. // <q> NRFX_LPCOMP_CONFIG_HYST - Hysteresis
  231. #ifndef NRFX_LPCOMP_CONFIG_HYST
  232. #define NRFX_LPCOMP_CONFIG_HYST 0
  233. #endif
  234. // <o> NRFX_LPCOMP_CONFIG_IRQ_PRIORITY - Interrupt priority
  235. // <0=> 0 (highest)
  236. // <1=> 1
  237. // <2=> 2
  238. // <3=> 3
  239. #ifndef NRFX_LPCOMP_CONFIG_IRQ_PRIORITY
  240. #define NRFX_LPCOMP_CONFIG_IRQ_PRIORITY 3
  241. #endif
  242. // <e> NRFX_LPCOMP_CONFIG_LOG_ENABLED - Enables logging in the module.
  243. //==========================================================
  244. #ifndef NRFX_LPCOMP_CONFIG_LOG_ENABLED
  245. #define NRFX_LPCOMP_CONFIG_LOG_ENABLED 0
  246. #endif
  247. // <o> NRFX_LPCOMP_CONFIG_LOG_LEVEL - Default Severity level
  248. // <0=> Off
  249. // <1=> Error
  250. // <2=> Warning
  251. // <3=> Info
  252. // <4=> Debug
  253. #ifndef NRFX_LPCOMP_CONFIG_LOG_LEVEL
  254. #define NRFX_LPCOMP_CONFIG_LOG_LEVEL 3
  255. #endif
  256. // <o> NRFX_LPCOMP_CONFIG_INFO_COLOR - ANSI escape code prefix.
  257. // <0=> Default
  258. // <1=> Black
  259. // <2=> Red
  260. // <3=> Green
  261. // <4=> Yellow
  262. // <5=> Blue
  263. // <6=> Magenta
  264. // <7=> Cyan
  265. // <8=> White
  266. #ifndef NRFX_LPCOMP_CONFIG_INFO_COLOR
  267. #define NRFX_LPCOMP_CONFIG_INFO_COLOR 0
  268. #endif
  269. // <o> NRFX_LPCOMP_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  270. // <0=> Default
  271. // <1=> Black
  272. // <2=> Red
  273. // <3=> Green
  274. // <4=> Yellow
  275. // <5=> Blue
  276. // <6=> Magenta
  277. // <7=> Cyan
  278. // <8=> White
  279. #ifndef NRFX_LPCOMP_CONFIG_DEBUG_COLOR
  280. #define NRFX_LPCOMP_CONFIG_DEBUG_COLOR 0
  281. #endif
  282. // </e>
  283. // </e>
  284. // <e> NRFX_NVMC_ENABLED - nrfx_nvmc - NVMC peripheral driver
  285. //==========================================================
  286. #ifndef NRFX_NVMC_ENABLED
  287. #define NRFX_NVMC_ENABLED 1
  288. #endif
  289. // </e>
  290. // <e> NRFX_POWER_ENABLED - nrfx_power - POWER peripheral driver
  291. //==========================================================
  292. #ifndef NRFX_POWER_ENABLED
  293. #define NRFX_POWER_ENABLED 1
  294. #endif
  295. // <o> NRFX_POWER_CONFIG_IRQ_PRIORITY - Interrupt priority
  296. // <0=> 0 (highest)
  297. // <1=> 1
  298. // <2=> 2
  299. // <3=> 3
  300. #ifndef NRFX_POWER_CONFIG_IRQ_PRIORITY
  301. #define NRFX_POWER_CONFIG_IRQ_PRIORITY 3
  302. #endif
  303. // <q> NRFX_POWER_CONFIG_DEFAULT_DCDCEN - The default configuration of main DCDC regulator
  304. // <i> This settings means only that components for DCDC regulator are installed and it can be enabled.
  305. #ifndef NRFX_POWER_CONFIG_DEFAULT_DCDCEN
  306. #define NRFX_POWER_CONFIG_DEFAULT_DCDCEN 0
  307. #endif
  308. // <q> NRFX_POWER_CONFIG_DEFAULT_DCDCENHV - The default configuration of High Voltage DCDC regulator
  309. // <i> This settings means only that components for DCDC regulator are installed and it can be enabled.
  310. #ifndef NRFX_POWER_CONFIG_DEFAULT_DCDCENHV
  311. #define NRFX_POWER_CONFIG_DEFAULT_DCDCENHV 0
  312. #endif
  313. // </e>
  314. // <e> NRFX_PPI_ENABLED - nrfx_ppi - PPI peripheral allocator
  315. //==========================================================
  316. #ifndef NRFX_PPI_ENABLED
  317. #define NRFX_PPI_ENABLED 1
  318. #endif
  319. // <e> NRFX_PPI_CONFIG_LOG_ENABLED - Enables logging in the module.
  320. //==========================================================
  321. #ifndef NRFX_PPI_CONFIG_LOG_ENABLED
  322. #define NRFX_PPI_CONFIG_LOG_ENABLED 0
  323. #endif
  324. // <o> NRFX_PPI_CONFIG_LOG_LEVEL - Default Severity level
  325. // <0=> Off
  326. // <1=> Error
  327. // <2=> Warning
  328. // <3=> Info
  329. // <4=> Debug
  330. #ifndef NRFX_PPI_CONFIG_LOG_LEVEL
  331. #define NRFX_PPI_CONFIG_LOG_LEVEL 3
  332. #endif
  333. // <o> NRFX_PPI_CONFIG_INFO_COLOR - ANSI escape code prefix.
  334. // <0=> Default
  335. // <1=> Black
  336. // <2=> Red
  337. // <3=> Green
  338. // <4=> Yellow
  339. // <5=> Blue
  340. // <6=> Magenta
  341. // <7=> Cyan
  342. // <8=> White
  343. #ifndef NRFX_PPI_CONFIG_INFO_COLOR
  344. #define NRFX_PPI_CONFIG_INFO_COLOR 0
  345. #endif
  346. // <o> NRFX_PPI_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  347. // <0=> Default
  348. // <1=> Black
  349. // <2=> Red
  350. // <3=> Green
  351. // <4=> Yellow
  352. // <5=> Blue
  353. // <6=> Magenta
  354. // <7=> Cyan
  355. // <8=> White
  356. #ifndef NRFX_PPI_CONFIG_DEBUG_COLOR
  357. #define NRFX_PPI_CONFIG_DEBUG_COLOR 0
  358. #endif
  359. // </e>
  360. // </e>
  361. // <e> NRFX_PRS_ENABLED - nrfx_prs - Peripheral Resource Sharing module
  362. //==========================================================
  363. #ifndef NRFX_PRS_ENABLED
  364. #define NRFX_PRS_ENABLED 1
  365. #endif
  366. // <q> NRFX_PRS_BOX_0_ENABLED - Enables box 0 in the module.
  367. #ifndef NRFX_PRS_BOX_0_ENABLED
  368. #define NRFX_PRS_BOX_0_ENABLED 1
  369. #endif
  370. // <q> NRFX_PRS_BOX_1_ENABLED - Enables box 1 in the module.
  371. #ifndef NRFX_PRS_BOX_1_ENABLED
  372. #define NRFX_PRS_BOX_1_ENABLED 1
  373. #endif
  374. // <e> NRFX_PRS_CONFIG_LOG_ENABLED - Enables logging in the module.
  375. //==========================================================
  376. #ifndef NRFX_PRS_CONFIG_LOG_ENABLED
  377. #define NRFX_PRS_CONFIG_LOG_ENABLED 0
  378. #endif
  379. // <o> NRFX_PRS_CONFIG_LOG_LEVEL - Default Severity level
  380. // <0=> Off
  381. // <1=> Error
  382. // <2=> Warning
  383. // <3=> Info
  384. // <4=> Debug
  385. #ifndef NRFX_PRS_CONFIG_LOG_LEVEL
  386. #define NRFX_PRS_CONFIG_LOG_LEVEL 3
  387. #endif
  388. // <o> NRFX_PRS_CONFIG_INFO_COLOR - ANSI escape code prefix.
  389. // <0=> Default
  390. // <1=> Black
  391. // <2=> Red
  392. // <3=> Green
  393. // <4=> Yellow
  394. // <5=> Blue
  395. // <6=> Magenta
  396. // <7=> Cyan
  397. // <8=> White
  398. #ifndef NRFX_PRS_CONFIG_INFO_COLOR
  399. #define NRFX_PRS_CONFIG_INFO_COLOR 0
  400. #endif
  401. // <o> NRFX_PRS_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  402. // <0=> Default
  403. // <1=> Black
  404. // <2=> Red
  405. // <3=> Green
  406. // <4=> Yellow
  407. // <5=> Blue
  408. // <6=> Magenta
  409. // <7=> Cyan
  410. // <8=> White
  411. #ifndef NRFX_PRS_CONFIG_DEBUG_COLOR
  412. #define NRFX_PRS_CONFIG_DEBUG_COLOR 0
  413. #endif
  414. // </e>
  415. // </e>
  416. // <e> NRFX_QDEC_ENABLED - nrfx_qdec - QDEC peripheral driver
  417. //==========================================================
  418. #ifndef NRFX_QDEC_ENABLED
  419. #define NRFX_QDEC_ENABLED 1
  420. #endif
  421. // <o> NRFX_QDEC_CONFIG_REPORTPER - Report period
  422. // <0=> 10 Samples
  423. // <1=> 40 Samples
  424. // <2=> 80 Samples
  425. // <3=> 120 Samples
  426. // <4=> 160 Samples
  427. // <5=> 200 Samples
  428. // <6=> 240 Samples
  429. // <7=> 280 Samples
  430. #ifndef NRFX_QDEC_CONFIG_REPORTPER
  431. #define NRFX_QDEC_CONFIG_REPORTPER 0
  432. #endif
  433. // <o> NRFX_QDEC_CONFIG_SAMPLEPER - Sample period
  434. // <0=> 128 us
  435. // <1=> 256 us
  436. // <2=> 512 us
  437. // <3=> 1024 us
  438. // <4=> 2048 us
  439. // <5=> 4096 us
  440. // <6=> 8192 us
  441. // <7=> 16384 us
  442. #ifndef NRFX_QDEC_CONFIG_SAMPLEPER
  443. #define NRFX_QDEC_CONFIG_SAMPLEPER 7
  444. #endif
  445. // <o> NRFX_QDEC_CONFIG_PIO_A - A pin <0-31>
  446. #ifndef NRFX_QDEC_CONFIG_PIO_A
  447. #define NRFX_QDEC_CONFIG_PIO_A 31
  448. #endif
  449. // <o> NRFX_QDEC_CONFIG_PIO_B - B pin <0-31>
  450. #ifndef NRFX_QDEC_CONFIG_PIO_B
  451. #define NRFX_QDEC_CONFIG_PIO_B 31
  452. #endif
  453. // <o> NRFX_QDEC_CONFIG_PIO_LED - LED pin <0-31>
  454. #ifndef NRFX_QDEC_CONFIG_PIO_LED
  455. #define NRFX_QDEC_CONFIG_PIO_LED 31
  456. #endif
  457. // <o> NRFX_QDEC_CONFIG_LEDPRE - LED pre
  458. #ifndef NRFX_QDEC_CONFIG_LEDPRE
  459. #define NRFX_QDEC_CONFIG_LEDPRE 511
  460. #endif
  461. // <o> NRFX_QDEC_CONFIG_LEDPOL - LED polarity
  462. // <0=> Active low
  463. // <1=> Active high
  464. #ifndef NRFX_QDEC_CONFIG_LEDPOL
  465. #define NRFX_QDEC_CONFIG_LEDPOL 1
  466. #endif
  467. // <q> NRFX_QDEC_CONFIG_DBFEN - Debouncing enable
  468. #ifndef NRFX_QDEC_CONFIG_DBFEN
  469. #define NRFX_QDEC_CONFIG_DBFEN 0
  470. #endif
  471. // <q> NRFX_QDEC_CONFIG_SAMPLE_INTEN - Sample ready interrupt enable
  472. #ifndef NRFX_QDEC_CONFIG_SAMPLE_INTEN
  473. #define NRFX_QDEC_CONFIG_SAMPLE_INTEN 0
  474. #endif
  475. // <o> NRFX_QDEC_CONFIG_IRQ_PRIORITY - Interrupt priority
  476. // <0=> 0 (highest)
  477. // <1=> 1
  478. // <2=> 2
  479. // <3=> 3
  480. #ifndef NRFX_QDEC_CONFIG_IRQ_PRIORITY
  481. #define NRFX_QDEC_CONFIG_IRQ_PRIORITY 3
  482. #endif
  483. // <e> NRFX_QDEC_CONFIG_LOG_ENABLED - Enables logging in the module.
  484. //==========================================================
  485. #ifndef NRFX_QDEC_CONFIG_LOG_ENABLED
  486. #define NRFX_QDEC_CONFIG_LOG_ENABLED 0
  487. #endif
  488. // <o> NRFX_QDEC_CONFIG_LOG_LEVEL - Default Severity level
  489. // <0=> Off
  490. // <1=> Error
  491. // <2=> Warning
  492. // <3=> Info
  493. // <4=> Debug
  494. #ifndef NRFX_QDEC_CONFIG_LOG_LEVEL
  495. #define NRFX_QDEC_CONFIG_LOG_LEVEL 3
  496. #endif
  497. // <o> NRFX_QDEC_CONFIG_INFO_COLOR - ANSI escape code prefix.
  498. // <0=> Default
  499. // <1=> Black
  500. // <2=> Red
  501. // <3=> Green
  502. // <4=> Yellow
  503. // <5=> Blue
  504. // <6=> Magenta
  505. // <7=> Cyan
  506. // <8=> White
  507. #ifndef NRFX_QDEC_CONFIG_INFO_COLOR
  508. #define NRFX_QDEC_CONFIG_INFO_COLOR 0
  509. #endif
  510. // <o> NRFX_QDEC_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  511. // <0=> Default
  512. // <1=> Black
  513. // <2=> Red
  514. // <3=> Green
  515. // <4=> Yellow
  516. // <5=> Blue
  517. // <6=> Magenta
  518. // <7=> Cyan
  519. // <8=> White
  520. #ifndef NRFX_QDEC_CONFIG_DEBUG_COLOR
  521. #define NRFX_QDEC_CONFIG_DEBUG_COLOR 0
  522. #endif
  523. // </e>
  524. // </e>
  525. // <e> NRFX_RNG_ENABLED - nrfx_rng - RNG peripheral driver
  526. //==========================================================
  527. #ifndef NRFX_RNG_ENABLED
  528. #define NRFX_RNG_ENABLED 1
  529. #endif
  530. // <q> NRFX_RNG_CONFIG_ERROR_CORRECTION - Error correction
  531. #ifndef NRFX_RNG_CONFIG_ERROR_CORRECTION
  532. #define NRFX_RNG_CONFIG_ERROR_CORRECTION 1
  533. #endif
  534. // <o> NRFX_RNG_CONFIG_IRQ_PRIORITY - Interrupt priority
  535. // <0=> 0 (highest)
  536. // <1=> 1
  537. // <2=> 2
  538. // <3=> 3
  539. #ifndef NRFX_RNG_CONFIG_IRQ_PRIORITY
  540. #define NRFX_RNG_CONFIG_IRQ_PRIORITY 3
  541. #endif
  542. // <e> NRFX_RNG_CONFIG_LOG_ENABLED - Enables logging in the module.
  543. //==========================================================
  544. #ifndef NRFX_RNG_CONFIG_LOG_ENABLED
  545. #define NRFX_RNG_CONFIG_LOG_ENABLED 0
  546. #endif
  547. // <o> NRFX_RNG_CONFIG_LOG_LEVEL - Default Severity level
  548. // <0=> Off
  549. // <1=> Error
  550. // <2=> Warning
  551. // <3=> Info
  552. // <4=> Debug
  553. #ifndef NRFX_RNG_CONFIG_LOG_LEVEL
  554. #define NRFX_RNG_CONFIG_LOG_LEVEL 3
  555. #endif
  556. // <o> NRFX_RNG_CONFIG_INFO_COLOR - ANSI escape code prefix.
  557. // <0=> Default
  558. // <1=> Black
  559. // <2=> Red
  560. // <3=> Green
  561. // <4=> Yellow
  562. // <5=> Blue
  563. // <6=> Magenta
  564. // <7=> Cyan
  565. // <8=> White
  566. #ifndef NRFX_RNG_CONFIG_INFO_COLOR
  567. #define NRFX_RNG_CONFIG_INFO_COLOR 0
  568. #endif
  569. // <o> NRFX_RNG_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  570. // <0=> Default
  571. // <1=> Black
  572. // <2=> Red
  573. // <3=> Green
  574. // <4=> Yellow
  575. // <5=> Blue
  576. // <6=> Magenta
  577. // <7=> Cyan
  578. // <8=> White
  579. #ifndef NRFX_RNG_CONFIG_DEBUG_COLOR
  580. #define NRFX_RNG_CONFIG_DEBUG_COLOR 0
  581. #endif
  582. // </e>
  583. // </e>
  584. // <e> NRFX_RTC_ENABLED - nrfx_rtc - RTC peripheral driver
  585. //==========================================================
  586. #ifndef NRFX_RTC_ENABLED
  587. #define NRFX_RTC_ENABLED 1
  588. #endif
  589. // <q> NRFX_RTC0_ENABLED - Enable RTC0 instance
  590. #ifndef NRFX_RTC0_ENABLED
  591. #define NRFX_RTC0_ENABLED 1
  592. #endif
  593. // <q> NRFX_RTC1_ENABLED - Enable RTC1 instance
  594. #ifndef NRFX_RTC1_ENABLED
  595. #define NRFX_RTC1_ENABLED 1
  596. #endif
  597. // <o> NRFX_RTC_MAXIMUM_LATENCY_US - Maximum possible time[us] in highest priority interrupt
  598. #ifndef NRFX_RTC_MAXIMUM_LATENCY_US
  599. #define NRFX_RTC_MAXIMUM_LATENCY_US 2000
  600. #endif
  601. // <o> NRFX_RTC_DEFAULT_CONFIG_FREQUENCY - Frequency <16-32768>
  602. #ifndef NRFX_RTC_DEFAULT_CONFIG_FREQUENCY
  603. #define NRFX_RTC_DEFAULT_CONFIG_FREQUENCY 32768
  604. #endif
  605. // <q> NRFX_RTC_DEFAULT_CONFIG_RELIABLE - Ensures safe compare event triggering
  606. #ifndef NRFX_RTC_DEFAULT_CONFIG_RELIABLE
  607. #define NRFX_RTC_DEFAULT_CONFIG_RELIABLE 0
  608. #endif
  609. // <o> NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY - Interrupt priority
  610. // <0=> 0 (highest)
  611. // <1=> 1
  612. // <2=> 2
  613. // <3=> 3
  614. #ifndef NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY
  615. #define NRFX_RTC_DEFAULT_CONFIG_IRQ_PRIORITY 3
  616. #endif
  617. // <e> NRFX_RTC_CONFIG_LOG_ENABLED - Enables logging in the module.
  618. //==========================================================
  619. #ifndef NRFX_RTC_CONFIG_LOG_ENABLED
  620. #define NRFX_RTC_CONFIG_LOG_ENABLED 0
  621. #endif
  622. // <o> NRFX_RTC_CONFIG_LOG_LEVEL - Default Severity level
  623. // <0=> Off
  624. // <1=> Error
  625. // <2=> Warning
  626. // <3=> Info
  627. // <4=> Debug
  628. #ifndef NRFX_RTC_CONFIG_LOG_LEVEL
  629. #define NRFX_RTC_CONFIG_LOG_LEVEL 3
  630. #endif
  631. // <o> NRFX_RTC_CONFIG_INFO_COLOR - ANSI escape code prefix.
  632. // <0=> Default
  633. // <1=> Black
  634. // <2=> Red
  635. // <3=> Green
  636. // <4=> Yellow
  637. // <5=> Blue
  638. // <6=> Magenta
  639. // <7=> Cyan
  640. // <8=> White
  641. #ifndef NRFX_RTC_CONFIG_INFO_COLOR
  642. #define NRFX_RTC_CONFIG_INFO_COLOR 0
  643. #endif
  644. // <o> NRFX_RTC_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  645. // <0=> Default
  646. // <1=> Black
  647. // <2=> Red
  648. // <3=> Green
  649. // <4=> Yellow
  650. // <5=> Blue
  651. // <6=> Magenta
  652. // <7=> Cyan
  653. // <8=> White
  654. #ifndef NRFX_RTC_CONFIG_DEBUG_COLOR
  655. #define NRFX_RTC_CONFIG_DEBUG_COLOR 0
  656. #endif
  657. // </e>
  658. // </e>
  659. // <e> NRFX_SPIS_ENABLED - nrfx_spis - SPIS peripheral driver
  660. //==========================================================
  661. #ifndef NRFX_SPIS_ENABLED
  662. #define NRFX_SPIS_ENABLED 1
  663. #endif
  664. // <q> NRFX_SPIS1_ENABLED - Enable SPIS1 instance
  665. #ifndef NRFX_SPIS1_ENABLED
  666. #define NRFX_SPIS1_ENABLED 1
  667. #endif
  668. // <o> NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY - Interrupt priority
  669. // <0=> 0 (highest)
  670. // <1=> 1
  671. // <2=> 2
  672. // <3=> 3
  673. #ifndef NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY
  674. #define NRFX_SPIS_DEFAULT_CONFIG_IRQ_PRIORITY 3
  675. #endif
  676. // <o> NRFX_SPIS_DEFAULT_DEF - SPIS default DEF character <0-255>
  677. #ifndef NRFX_SPIS_DEFAULT_DEF
  678. #define NRFX_SPIS_DEFAULT_DEF 255
  679. #endif
  680. // <o> NRFX_SPIS_DEFAULT_ORC - SPIS default ORC character <0-255>
  681. #ifndef NRFX_SPIS_DEFAULT_ORC
  682. #define NRFX_SPIS_DEFAULT_ORC 255
  683. #endif
  684. // <e> NRFX_SPIS_CONFIG_LOG_ENABLED - Enables logging in the module.
  685. //==========================================================
  686. #ifndef NRFX_SPIS_CONFIG_LOG_ENABLED
  687. #define NRFX_SPIS_CONFIG_LOG_ENABLED 0
  688. #endif
  689. // <o> NRFX_SPIS_CONFIG_LOG_LEVEL - Default Severity level
  690. // <0=> Off
  691. // <1=> Error
  692. // <2=> Warning
  693. // <3=> Info
  694. // <4=> Debug
  695. #ifndef NRFX_SPIS_CONFIG_LOG_LEVEL
  696. #define NRFX_SPIS_CONFIG_LOG_LEVEL 3
  697. #endif
  698. // <o> NRFX_SPIS_CONFIG_INFO_COLOR - ANSI escape code prefix.
  699. // <0=> Default
  700. // <1=> Black
  701. // <2=> Red
  702. // <3=> Green
  703. // <4=> Yellow
  704. // <5=> Blue
  705. // <6=> Magenta
  706. // <7=> Cyan
  707. // <8=> White
  708. #ifndef NRFX_SPIS_CONFIG_INFO_COLOR
  709. #define NRFX_SPIS_CONFIG_INFO_COLOR 0
  710. #endif
  711. // <o> NRFX_SPIS_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  712. // <0=> Default
  713. // <1=> Black
  714. // <2=> Red
  715. // <3=> Green
  716. // <4=> Yellow
  717. // <5=> Blue
  718. // <6=> Magenta
  719. // <7=> Cyan
  720. // <8=> White
  721. #ifndef NRFX_SPIS_CONFIG_DEBUG_COLOR
  722. #define NRFX_SPIS_CONFIG_DEBUG_COLOR 0
  723. #endif
  724. // </e>
  725. // </e>
  726. // <e> NRFX_SPI_ENABLED - nrfx_spi - SPI peripheral driver
  727. //==========================================================
  728. #ifndef NRFX_SPI_ENABLED
  729. #define NRFX_SPI_ENABLED 1
  730. #endif
  731. // <q> NRFX_SPI0_ENABLED - Enable SPI0 instance
  732. #ifndef NRFX_SPI0_ENABLED
  733. #define NRFX_SPI0_ENABLED 1
  734. #endif
  735. // <q> NRFX_SPI1_ENABLED - Enable SPI1 instance
  736. #ifndef NRFX_SPI1_ENABLED
  737. #define NRFX_SPI1_ENABLED 1
  738. #endif
  739. // <o> NRFX_SPI_MISO_PULL_CFG - MISO pin pull configuration.
  740. // <0=> NRF_GPIO_PIN_NOPULL
  741. // <1=> NRF_GPIO_PIN_PULLDOWN
  742. // <3=> NRF_GPIO_PIN_PULLUP
  743. #ifndef NRFX_SPI_MISO_PULL_CFG
  744. #define NRFX_SPI_MISO_PULL_CFG 1
  745. #endif
  746. // <o> NRFX_SPI_DEFAULT_CONFIG_IRQ_PRIORITY - Interrupt priority
  747. // <0=> 0 (highest)
  748. // <1=> 1
  749. // <2=> 2
  750. // <3=> 3
  751. #ifndef NRFX_SPI_DEFAULT_CONFIG_IRQ_PRIORITY
  752. #define NRFX_SPI_DEFAULT_CONFIG_IRQ_PRIORITY 3
  753. #endif
  754. // <e> NRFX_SPI_CONFIG_LOG_ENABLED - Enables logging in the module.
  755. //==========================================================
  756. #ifndef NRFX_SPI_CONFIG_LOG_ENABLED
  757. #define NRFX_SPI_CONFIG_LOG_ENABLED 0
  758. #endif
  759. // <o> NRFX_SPI_CONFIG_LOG_LEVEL - Default Severity level
  760. // <0=> Off
  761. // <1=> Error
  762. // <2=> Warning
  763. // <3=> Info
  764. // <4=> Debug
  765. #ifndef NRFX_SPI_CONFIG_LOG_LEVEL
  766. #define NRFX_SPI_CONFIG_LOG_LEVEL 3
  767. #endif
  768. // <o> NRFX_SPI_CONFIG_INFO_COLOR - ANSI escape code prefix.
  769. // <0=> Default
  770. // <1=> Black
  771. // <2=> Red
  772. // <3=> Green
  773. // <4=> Yellow
  774. // <5=> Blue
  775. // <6=> Magenta
  776. // <7=> Cyan
  777. // <8=> White
  778. #ifndef NRFX_SPI_CONFIG_INFO_COLOR
  779. #define NRFX_SPI_CONFIG_INFO_COLOR 0
  780. #endif
  781. // <o> NRFX_SPI_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  782. // <0=> Default
  783. // <1=> Black
  784. // <2=> Red
  785. // <3=> Green
  786. // <4=> Yellow
  787. // <5=> Blue
  788. // <6=> Magenta
  789. // <7=> Cyan
  790. // <8=> White
  791. #ifndef NRFX_SPI_CONFIG_DEBUG_COLOR
  792. #define NRFX_SPI_CONFIG_DEBUG_COLOR 0
  793. #endif
  794. // </e>
  795. // </e>
  796. // <e> NRFX_SWI_ENABLED - nrfx_swi - SWI/EGU peripheral allocator
  797. //==========================================================
  798. #ifndef NRFX_SWI_ENABLED
  799. #define NRFX_SWI_ENABLED 1
  800. #endif
  801. // <q> NRFX_SWI0_DISABLED - Exclude SWI0 from being utilized by the driver
  802. #ifndef NRFX_SWI0_DISABLED
  803. #define NRFX_SWI0_DISABLED 0
  804. #endif
  805. // <q> NRFX_SWI1_DISABLED - Exclude SWI1 from being utilized by the driver
  806. #ifndef NRFX_SWI1_DISABLED
  807. #define NRFX_SWI1_DISABLED 0
  808. #endif
  809. // <q> NRFX_SWI2_DISABLED - Exclude SWI2 from being utilized by the driver
  810. #ifndef NRFX_SWI2_DISABLED
  811. #define NRFX_SWI2_DISABLED 0
  812. #endif
  813. // <q> NRFX_SWI3_DISABLED - Exclude SWI3 from being utilized by the driver
  814. #ifndef NRFX_SWI3_DISABLED
  815. #define NRFX_SWI3_DISABLED 0
  816. #endif
  817. // <q> NRFX_SWI4_DISABLED - Exclude SWI4 from being utilized by the driver
  818. #ifndef NRFX_SWI4_DISABLED
  819. #define NRFX_SWI4_DISABLED 0
  820. #endif
  821. // <q> NRFX_SWI5_DISABLED - Exclude SWI5 from being utilized by the driver
  822. #ifndef NRFX_SWI5_DISABLED
  823. #define NRFX_SWI5_DISABLED 0
  824. #endif
  825. // <e> NRFX_SWI_CONFIG_LOG_ENABLED - Enables logging in the module.
  826. //==========================================================
  827. #ifndef NRFX_SWI_CONFIG_LOG_ENABLED
  828. #define NRFX_SWI_CONFIG_LOG_ENABLED 0
  829. #endif
  830. // <o> NRFX_SWI_CONFIG_LOG_LEVEL - Default Severity level
  831. // <0=> Off
  832. // <1=> Error
  833. // <2=> Warning
  834. // <3=> Info
  835. // <4=> Debug
  836. #ifndef NRFX_SWI_CONFIG_LOG_LEVEL
  837. #define NRFX_SWI_CONFIG_LOG_LEVEL 3
  838. #endif
  839. // <o> NRFX_SWI_CONFIG_INFO_COLOR - ANSI escape code prefix.
  840. // <0=> Default
  841. // <1=> Black
  842. // <2=> Red
  843. // <3=> Green
  844. // <4=> Yellow
  845. // <5=> Blue
  846. // <6=> Magenta
  847. // <7=> Cyan
  848. // <8=> White
  849. #ifndef NRFX_SWI_CONFIG_INFO_COLOR
  850. #define NRFX_SWI_CONFIG_INFO_COLOR 0
  851. #endif
  852. // <o> NRFX_SWI_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  853. // <0=> Default
  854. // <1=> Black
  855. // <2=> Red
  856. // <3=> Green
  857. // <4=> Yellow
  858. // <5=> Blue
  859. // <6=> Magenta
  860. // <7=> Cyan
  861. // <8=> White
  862. #ifndef NRFX_SWI_CONFIG_DEBUG_COLOR
  863. #define NRFX_SWI_CONFIG_DEBUG_COLOR 0
  864. #endif
  865. // </e>
  866. // </e>
  867. // <e> NRFX_TEMP_ENABLED - nrfx_temp - TEMP peripheral driver
  868. //==========================================================
  869. #ifndef NRFX_TEMP_ENABLED
  870. #define NRFX_TEMP_ENABLED 1
  871. #endif
  872. // <o> NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY - Interrupt priority
  873. // <0=> 0 (highest)
  874. // <1=> 1
  875. // <2=> 2
  876. // <3=> 3
  877. #ifndef NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY
  878. #define NRFX_TEMP_DEFAULT_CONFIG_IRQ_PRIORITY 3
  879. #endif
  880. // </e>
  881. // <e> NRFX_TIMER_ENABLED - nrfx_timer - TIMER periperal driver
  882. //==========================================================
  883. #ifndef NRFX_TIMER_ENABLED
  884. #define NRFX_TIMER_ENABLED 1
  885. #endif
  886. // <q> NRFX_TIMER0_ENABLED - Enable TIMER0 instance
  887. #ifndef NRFX_TIMER0_ENABLED
  888. #define NRFX_TIMER0_ENABLED 1
  889. #endif
  890. // <q> NRFX_TIMER1_ENABLED - Enable TIMER1 instance
  891. #ifndef NRFX_TIMER1_ENABLED
  892. #define NRFX_TIMER1_ENABLED 1
  893. #endif
  894. // <q> NRFX_TIMER2_ENABLED - Enable TIMER2 instance
  895. #ifndef NRFX_TIMER2_ENABLED
  896. #define NRFX_TIMER2_ENABLED 1
  897. #endif
  898. // <o> NRFX_TIMER_DEFAULT_CONFIG_FREQUENCY - Timer frequency if in Timer mode
  899. // <0=> 16 MHz
  900. // <1=> 8 MHz
  901. // <2=> 4 MHz
  902. // <3=> 2 MHz
  903. // <4=> 1 MHz
  904. // <5=> 500 kHz
  905. // <6=> 250 kHz
  906. // <7=> 125 kHz
  907. // <8=> 62.5 kHz
  908. // <9=> 31.25 kHz
  909. #ifndef NRFX_TIMER_DEFAULT_CONFIG_FREQUENCY
  910. #define NRFX_TIMER_DEFAULT_CONFIG_FREQUENCY 0
  911. #endif
  912. // <o> NRFX_TIMER_DEFAULT_CONFIG_MODE - Timer mode or operation
  913. // <0=> Timer
  914. // <1=> Counter
  915. #ifndef NRFX_TIMER_DEFAULT_CONFIG_MODE
  916. #define NRFX_TIMER_DEFAULT_CONFIG_MODE 0
  917. #endif
  918. // <o> NRFX_TIMER_DEFAULT_CONFIG_BIT_WIDTH - Timer counter bit width
  919. // <0=> 16 bit
  920. // <1=> 8 bit
  921. // <2=> 24 bit
  922. // <3=> 32 bit
  923. #ifndef NRFX_TIMER_DEFAULT_CONFIG_BIT_WIDTH
  924. #define NRFX_TIMER_DEFAULT_CONFIG_BIT_WIDTH 0
  925. #endif
  926. // <o> NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY - Interrupt priority
  927. // <0=> 0 (highest)
  928. // <1=> 1
  929. // <2=> 2
  930. // <3=> 3
  931. #ifndef NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY
  932. #define NRFX_TIMER_DEFAULT_CONFIG_IRQ_PRIORITY 3
  933. #endif
  934. // <e> NRFX_TIMER_CONFIG_LOG_ENABLED - Enables logging in the module.
  935. //==========================================================
  936. #ifndef NRFX_TIMER_CONFIG_LOG_ENABLED
  937. #define NRFX_TIMER_CONFIG_LOG_ENABLED 0
  938. #endif
  939. // <o> NRFX_TIMER_CONFIG_LOG_LEVEL - Default Severity level
  940. // <0=> Off
  941. // <1=> Error
  942. // <2=> Warning
  943. // <3=> Info
  944. // <4=> Debug
  945. #ifndef NRFX_TIMER_CONFIG_LOG_LEVEL
  946. #define NRFX_TIMER_CONFIG_LOG_LEVEL 3
  947. #endif
  948. // <o> NRFX_TIMER_CONFIG_INFO_COLOR - ANSI escape code prefix.
  949. // <0=> Default
  950. // <1=> Black
  951. // <2=> Red
  952. // <3=> Green
  953. // <4=> Yellow
  954. // <5=> Blue
  955. // <6=> Magenta
  956. // <7=> Cyan
  957. // <8=> White
  958. #ifndef NRFX_TIMER_CONFIG_INFO_COLOR
  959. #define NRFX_TIMER_CONFIG_INFO_COLOR 0
  960. #endif
  961. // <o> NRFX_TIMER_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  962. // <0=> Default
  963. // <1=> Black
  964. // <2=> Red
  965. // <3=> Green
  966. // <4=> Yellow
  967. // <5=> Blue
  968. // <6=> Magenta
  969. // <7=> Cyan
  970. // <8=> White
  971. #ifndef NRFX_TIMER_CONFIG_DEBUG_COLOR
  972. #define NRFX_TIMER_CONFIG_DEBUG_COLOR 0
  973. #endif
  974. // </e>
  975. // </e>
  976. // <e> NRFX_TWI_ENABLED - nrfx_twi - TWI peripheral driver
  977. //==========================================================
  978. #ifndef NRFX_TWI_ENABLED
  979. #define NRFX_TWI_ENABLED 1
  980. #endif
  981. // <q> NRFX_TWI0_ENABLED - Enable TWI0 instance
  982. #ifndef NRFX_TWI0_ENABLED
  983. #define NRFX_TWI0_ENABLED 1
  984. #endif
  985. // <q> NRFX_TWI1_ENABLED - Enable TWI1 instance
  986. #ifndef NRFX_TWI1_ENABLED
  987. #define NRFX_TWI1_ENABLED 1
  988. #endif
  989. // <o> NRFX_TWI_DEFAULT_CONFIG_FREQUENCY - Frequency
  990. // <26738688=> 100k
  991. // <67108864=> 250k
  992. // <104857600=> 400k
  993. #ifndef NRFX_TWI_DEFAULT_CONFIG_FREQUENCY
  994. #define NRFX_TWI_DEFAULT_CONFIG_FREQUENCY 26738688
  995. #endif
  996. // <q> NRFX_TWI_DEFAULT_CONFIG_HOLD_BUS_UNINIT - Enables bus holding after uninit
  997. #ifndef NRFX_TWI_DEFAULT_CONFIG_HOLD_BUS_UNINIT
  998. #define NRFX_TWI_DEFAULT_CONFIG_HOLD_BUS_UNINIT 0
  999. #endif
  1000. // <o> NRFX_TWI_DEFAULT_CONFIG_IRQ_PRIORITY - Interrupt priority
  1001. // <0=> 0 (highest)
  1002. // <1=> 1
  1003. // <2=> 2
  1004. // <3=> 3
  1005. #ifndef NRFX_TWI_DEFAULT_CONFIG_IRQ_PRIORITY
  1006. #define NRFX_TWI_DEFAULT_CONFIG_IRQ_PRIORITY 3
  1007. #endif
  1008. // <e> NRFX_TWI_CONFIG_LOG_ENABLED - Enables logging in the module.
  1009. //==========================================================
  1010. #ifndef NRFX_TWI_CONFIG_LOG_ENABLED
  1011. #define NRFX_TWI_CONFIG_LOG_ENABLED 0
  1012. #endif
  1013. // <o> NRFX_TWI_CONFIG_LOG_LEVEL - Default Severity level
  1014. // <0=> Off
  1015. // <1=> Error
  1016. // <2=> Warning
  1017. // <3=> Info
  1018. // <4=> Debug
  1019. #ifndef NRFX_TWI_CONFIG_LOG_LEVEL
  1020. #define NRFX_TWI_CONFIG_LOG_LEVEL 3
  1021. #endif
  1022. // <o> NRFX_TWI_CONFIG_INFO_COLOR - ANSI escape code prefix.
  1023. // <0=> Default
  1024. // <1=> Black
  1025. // <2=> Red
  1026. // <3=> Green
  1027. // <4=> Yellow
  1028. // <5=> Blue
  1029. // <6=> Magenta
  1030. // <7=> Cyan
  1031. // <8=> White
  1032. #ifndef NRFX_TWI_CONFIG_INFO_COLOR
  1033. #define NRFX_TWI_CONFIG_INFO_COLOR 0
  1034. #endif
  1035. // <o> NRFX_TWI_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  1036. // <0=> Default
  1037. // <1=> Black
  1038. // <2=> Red
  1039. // <3=> Green
  1040. // <4=> Yellow
  1041. // <5=> Blue
  1042. // <6=> Magenta
  1043. // <7=> Cyan
  1044. // <8=> White
  1045. #ifndef NRFX_TWI_CONFIG_DEBUG_COLOR
  1046. #define NRFX_TWI_CONFIG_DEBUG_COLOR 0
  1047. #endif
  1048. // </e>
  1049. // </e>
  1050. // <e> NRFX_UART_ENABLED - nrfx_uart - UART peripheral driver
  1051. //==========================================================
  1052. #ifndef NRFX_UART_ENABLED
  1053. #define NRFX_UART_ENABLED 1
  1054. #endif
  1055. // <q> NRFX_UART0_ENABLED - Enable UART0 instance
  1056. #ifndef NRFX_UART0_ENABLED
  1057. #define NRFX_UART0_ENABLED 1
  1058. #endif
  1059. // <o> NRFX_UART_DEFAULT_CONFIG_HWFC - Hardware Flow Control
  1060. // <0=> Disabled
  1061. // <1=> Enabled
  1062. #ifndef NRFX_UART_DEFAULT_CONFIG_HWFC
  1063. #define NRFX_UART_DEFAULT_CONFIG_HWFC 0
  1064. #endif
  1065. // <o> NRFX_UART_DEFAULT_CONFIG_PARITY - Parity
  1066. // <0=> Excluded
  1067. // <14=> Included
  1068. #ifndef NRFX_UART_DEFAULT_CONFIG_PARITY
  1069. #define NRFX_UART_DEFAULT_CONFIG_PARITY 0
  1070. #endif
  1071. // <o> NRFX_UART_DEFAULT_CONFIG_BAUDRATE - Default Baudrate
  1072. // <323584=> 1200 baud
  1073. // <643072=> 2400 baud
  1074. // <1290240=> 4800 baud
  1075. // <2576384=> 9600 baud
  1076. // <3866624=> 14400 baud
  1077. // <5152768=> 19200 baud
  1078. // <7729152=> 28800 baud
  1079. // <8388608=> 31250 baud
  1080. // <10309632=> 38400 baud
  1081. // <15007744=> 56000 baud
  1082. // <15462400=> 57600 baud
  1083. // <20615168=> 76800 baud
  1084. // <30924800=> 115200 baud
  1085. // <61845504=> 230400 baud
  1086. // <67108864=> 250000 baud
  1087. // <123695104=> 460800 baud
  1088. // <247386112=> 921600 baud
  1089. // <268435456=> 1000000 baud
  1090. #ifndef NRFX_UART_DEFAULT_CONFIG_BAUDRATE
  1091. #define NRFX_UART_DEFAULT_CONFIG_BAUDRATE 30924800
  1092. #endif
  1093. // <o> NRFX_UART_DEFAULT_CONFIG_IRQ_PRIORITY - Interrupt priority
  1094. // <0=> 0 (highest)
  1095. // <1=> 1
  1096. // <2=> 2
  1097. // <3=> 3
  1098. #ifndef NRFX_UART_DEFAULT_CONFIG_IRQ_PRIORITY
  1099. #define NRFX_UART_DEFAULT_CONFIG_IRQ_PRIORITY 3
  1100. #endif
  1101. // <e> NRFX_UART_CONFIG_LOG_ENABLED - Enables logging in the module.
  1102. //==========================================================
  1103. #ifndef NRFX_UART_CONFIG_LOG_ENABLED
  1104. #define NRFX_UART_CONFIG_LOG_ENABLED 0
  1105. #endif
  1106. // <o> NRFX_UART_CONFIG_LOG_LEVEL - Default Severity level
  1107. // <0=> Off
  1108. // <1=> Error
  1109. // <2=> Warning
  1110. // <3=> Info
  1111. // <4=> Debug
  1112. #ifndef NRFX_UART_CONFIG_LOG_LEVEL
  1113. #define NRFX_UART_CONFIG_LOG_LEVEL 3
  1114. #endif
  1115. // <o> NRFX_UART_CONFIG_INFO_COLOR - ANSI escape code prefix.
  1116. // <0=> Default
  1117. // <1=> Black
  1118. // <2=> Red
  1119. // <3=> Green
  1120. // <4=> Yellow
  1121. // <5=> Blue
  1122. // <6=> Magenta
  1123. // <7=> Cyan
  1124. // <8=> White
  1125. #ifndef NRFX_UART_CONFIG_INFO_COLOR
  1126. #define NRFX_UART_CONFIG_INFO_COLOR 0
  1127. #endif
  1128. // <o> NRFX_UART_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  1129. // <0=> Default
  1130. // <1=> Black
  1131. // <2=> Red
  1132. // <3=> Green
  1133. // <4=> Yellow
  1134. // <5=> Blue
  1135. // <6=> Magenta
  1136. // <7=> Cyan
  1137. // <8=> White
  1138. #ifndef NRFX_UART_CONFIG_DEBUG_COLOR
  1139. #define NRFX_UART_CONFIG_DEBUG_COLOR 0
  1140. #endif
  1141. // </e>
  1142. // </e>
  1143. // <e> NRFX_WDT_ENABLED - nrfx_wdt - WDT peripheral driver
  1144. //==========================================================
  1145. #ifndef NRFX_WDT_ENABLED
  1146. #define NRFX_WDT_ENABLED 1
  1147. #endif
  1148. // <o> NRFX_WDT_CONFIG_BEHAVIOUR - WDT behavior in CPU SLEEP or HALT mode
  1149. // <1=> Run in SLEEP, Pause in HALT
  1150. // <8=> Pause in SLEEP, Run in HALT
  1151. // <9=> Run in SLEEP and HALT
  1152. // <0=> Pause in SLEEP and HALT
  1153. #ifndef NRFX_WDT_CONFIG_BEHAVIOUR
  1154. #define NRFX_WDT_CONFIG_BEHAVIOUR 1
  1155. #endif
  1156. // <o> NRFX_WDT_CONFIG_RELOAD_VALUE - Reload value <15-4294967295>
  1157. #ifndef NRFX_WDT_CONFIG_RELOAD_VALUE
  1158. #define NRFX_WDT_CONFIG_RELOAD_VALUE 2000
  1159. #endif
  1160. // <o> NRFX_WDT_CONFIG_NO_IRQ - Remove WDT IRQ handling from WDT driver
  1161. // <0=> Include WDT IRQ handling
  1162. // <1=> Remove WDT IRQ handling
  1163. #ifndef NRFX_WDT_CONFIG_NO_IRQ
  1164. #define NRFX_WDT_CONFIG_NO_IRQ 0
  1165. #endif
  1166. // <o> NRFX_WDT_CONFIG_IRQ_PRIORITY - Interrupt priority
  1167. // <0=> 0 (highest)
  1168. // <1=> 1
  1169. // <2=> 2
  1170. // <3=> 3
  1171. #ifndef NRFX_WDT_CONFIG_IRQ_PRIORITY
  1172. #define NRFX_WDT_CONFIG_IRQ_PRIORITY 3
  1173. #endif
  1174. // <e> NRFX_WDT_CONFIG_LOG_ENABLED - Enables logging in the module.
  1175. //==========================================================
  1176. #ifndef NRFX_WDT_CONFIG_LOG_ENABLED
  1177. #define NRFX_WDT_CONFIG_LOG_ENABLED 0
  1178. #endif
  1179. // <o> NRFX_WDT_CONFIG_LOG_LEVEL - Default Severity level
  1180. // <0=> Off
  1181. // <1=> Error
  1182. // <2=> Warning
  1183. // <3=> Info
  1184. // <4=> Debug
  1185. #ifndef NRFX_WDT_CONFIG_LOG_LEVEL
  1186. #define NRFX_WDT_CONFIG_LOG_LEVEL 3
  1187. #endif
  1188. // <o> NRFX_WDT_CONFIG_INFO_COLOR - ANSI escape code prefix.
  1189. // <0=> Default
  1190. // <1=> Black
  1191. // <2=> Red
  1192. // <3=> Green
  1193. // <4=> Yellow
  1194. // <5=> Blue
  1195. // <6=> Magenta
  1196. // <7=> Cyan
  1197. // <8=> White
  1198. #ifndef NRFX_WDT_CONFIG_INFO_COLOR
  1199. #define NRFX_WDT_CONFIG_INFO_COLOR 0
  1200. #endif
  1201. // <o> NRFX_WDT_CONFIG_DEBUG_COLOR - ANSI escape code prefix.
  1202. // <0=> Default
  1203. // <1=> Black
  1204. // <2=> Red
  1205. // <3=> Green
  1206. // <4=> Yellow
  1207. // <5=> Blue
  1208. // <6=> Magenta
  1209. // <7=> Cyan
  1210. // <8=> White
  1211. #ifndef NRFX_WDT_CONFIG_DEBUG_COLOR
  1212. #define NRFX_WDT_CONFIG_DEBUG_COLOR 0
  1213. #endif
  1214. // </e>
  1215. // </e>
  1216. // </h>
  1217. #endif // NRFX_CONFIG_H__