1 /** 2 * 3 * @defgroup nrfx_prs_config Peripheral Resource Sharing module configuration 4 * @{ 5 * @ingroup nrfx_prs 6 */ 7 /** @brief Enabling peripherals with same ID coexistence 8 * 9 * Set to 1 to activate. 10 * 11 * @note This is an NRF_CONFIG macro. 12 */ 13 #define NRFX_PRS_ENABLED 14 15 /** @brief Enables box 0 in the module. 16 * 17 * Set to 1 to activate. 18 * 19 * @note This is an NRF_CONFIG macro. 20 */ 21 #define NRFX_PRS_BOX_0_ENABLED 22 23 /** @brief Enables box 1 in the module. 24 * 25 * Set to 1 to activate. 26 * 27 * @note This is an NRF_CONFIG macro. 28 */ 29 #define NRFX_PRS_BOX_1_ENABLED 30 31 /** @brief Enables box 2 in the module. 32 * 33 * Set to 1 to activate. 34 * 35 * @note This is an NRF_CONFIG macro. 36 */ 37 #define NRFX_PRS_BOX_2_ENABLED 38 39 /** @brief Enables box 3 in the module. 40 * 41 * Set to 1 to activate. 42 * 43 * @note This is an NRF_CONFIG macro. 44 */ 45 #define NRFX_PRS_BOX_3_ENABLED 46 47 /** @brief Enables box 4 in the module. 48 * 49 * Set to 1 to activate. 50 * 51 * @note This is an NRF_CONFIG macro. 52 */ 53 #define NRFX_PRS_BOX_4_ENABLED 54 55 /** @brief Enables logging in the module. 56 * 57 * Set to 1 to activate. 58 * 59 * @note This is an NRF_CONFIG macro. 60 */ 61 #define NRFX_PRS_CONFIG_LOG_ENABLED 62 63 /** @brief Default Severity level 64 * 65 * Following options are available: 66 * - 0 - Off 67 * - 1 - Error 68 * - 2 - Warning 69 * - 3 - Info 70 * - 4 - Debug 71 * 72 * @note This is an NRF_CONFIG macro. 73 */ 74 #define NRFX_PRS_CONFIG_LOG_LEVEL 75 76 /** @brief ANSI escape code prefix. 77 * 78 * Following options are available: 79 * - 0 - Default 80 * - 1 - Black 81 * - 2 - Red 82 * - 3 - Green 83 * - 4 - Yellow 84 * - 5 - Blue 85 * - 6 - Magenta 86 * - 7 - Cyan 87 * - 8 - White 88 * 89 * @note This is an NRF_CONFIG macro. 90 */ 91 #define NRFX_PRS_CONFIG_INFO_COLOR 92 93 /** @brief ANSI escape code prefix. 94 * 95 * Following options are available: 96 * - 0 - Default 97 * - 1 - Black 98 * - 2 - Red 99 * - 3 - Green 100 * - 4 - Yellow 101 * - 5 - Blue 102 * - 6 - Magenta 103 * - 7 - Cyan 104 * - 8 - White 105 * 106 * @note This is an NRF_CONFIG macro. 107 */ 108 #define NRFX_PRS_CONFIG_DEBUG_COLOR 109 110 111 112 /** @} */ 113