nrfx_config.h 31 KB

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