<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Unable to find driver enable option in SDK config</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/50133/unable-to-find-driver-enable-option-in-sdk-config</link><description>Hello, I am using nrf52832. I am adding pwm library in dfu secure boot loader project. I imported all required library but can&amp;#39;t find PWM enable drivers/ library option in sdk config. Attaaching my project. Using Seeger studio. 
 Path : secure_bootloader</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 23 Jul 2019 14:24:47 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/50133/unable-to-find-driver-enable-option-in-sdk-config" /><item><title>RE: Unable to find driver enable option in SDK config</title><link>https://devzone.nordicsemi.com/thread/200117?ContentTypeID=1</link><pubDate>Tue, 23 Jul 2019 14:24:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:758f983a-307a-491c-ac46-14078c2bcae1</guid><dc:creator>haakonsh</dc:creator><description>&lt;p&gt;Yes.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to find driver enable option in SDK config</title><link>https://devzone.nordicsemi.com/thread/200102?ContentTypeID=1</link><pubDate>Tue, 23 Jul 2019 13:54:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7bd9194c-f305-4171-8b98-3070198180f7</guid><dc:creator>chandan</dc:creator><description>&lt;p&gt;do we have to add manully ? I was thinking after adding libraries its auto generate.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to find driver enable option in SDK config</title><link>https://devzone.nordicsemi.com/thread/200101?ContentTypeID=1</link><pubDate>Tue, 23 Jul 2019 13:53:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b120d246-0f25-4e1f-a380-e28ad8b1fe7e</guid><dc:creator>haakonsh</dc:creator><description>&lt;p&gt;Add this:&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;// &amp;lt;e&amp;gt; NRFX_PWM_ENABLED - nrfx_pwm - PWM peripheral driver
//==========================================================
#ifndef NRFX_PWM_ENABLED
#define NRFX_PWM_ENABLED 1
#endif
// &amp;lt;q&amp;gt; NRFX_PWM0_ENABLED  - Enable PWM0 instance
 

#ifndef NRFX_PWM0_ENABLED
#define NRFX_PWM0_ENABLED 0
#endif

// &amp;lt;q&amp;gt; NRFX_PWM1_ENABLED  - Enable PWM1 instance
 

#ifndef NRFX_PWM1_ENABLED
#define NRFX_PWM1_ENABLED 0
#endif

// &amp;lt;q&amp;gt; NRFX_PWM2_ENABLED  - Enable PWM2 instance
 

#ifndef NRFX_PWM2_ENABLED
#define NRFX_PWM2_ENABLED 0
#endif

// &amp;lt;o&amp;gt; NRFX_PWM_DEFAULT_CONFIG_OUT0_PIN - Out0 pin  &amp;lt;0-31&amp;gt; 


#ifndef NRFX_PWM_DEFAULT_CONFIG_OUT0_PIN
#define NRFX_PWM_DEFAULT_CONFIG_OUT0_PIN 31
#endif

// &amp;lt;o&amp;gt; NRFX_PWM_DEFAULT_CONFIG_OUT1_PIN - Out1 pin  &amp;lt;0-31&amp;gt; 


#ifndef NRFX_PWM_DEFAULT_CONFIG_OUT1_PIN
#define NRFX_PWM_DEFAULT_CONFIG_OUT1_PIN 31
#endif

// &amp;lt;o&amp;gt; NRFX_PWM_DEFAULT_CONFIG_OUT2_PIN - Out2 pin  &amp;lt;0-31&amp;gt; 


#ifndef NRFX_PWM_DEFAULT_CONFIG_OUT2_PIN
#define NRFX_PWM_DEFAULT_CONFIG_OUT2_PIN 31
#endif

// &amp;lt;o&amp;gt; NRFX_PWM_DEFAULT_CONFIG_OUT3_PIN - Out3 pin  &amp;lt;0-31&amp;gt; 


#ifndef NRFX_PWM_DEFAULT_CONFIG_OUT3_PIN
#define NRFX_PWM_DEFAULT_CONFIG_OUT3_PIN 31
#endif

// &amp;lt;o&amp;gt; NRFX_PWM_DEFAULT_CONFIG_BASE_CLOCK  - Base clock
 
// &amp;lt;0=&amp;gt; 16 MHz 
// &amp;lt;1=&amp;gt; 8 MHz 
// &amp;lt;2=&amp;gt; 4 MHz 
// &amp;lt;3=&amp;gt; 2 MHz 
// &amp;lt;4=&amp;gt; 1 MHz 
// &amp;lt;5=&amp;gt; 500 kHz 
// &amp;lt;6=&amp;gt; 250 kHz 
// &amp;lt;7=&amp;gt; 125 kHz 

#ifndef NRFX_PWM_DEFAULT_CONFIG_BASE_CLOCK
#define NRFX_PWM_DEFAULT_CONFIG_BASE_CLOCK 4
#endif

// &amp;lt;o&amp;gt; NRFX_PWM_DEFAULT_CONFIG_COUNT_MODE  - Count mode
 
// &amp;lt;0=&amp;gt; Up 
// &amp;lt;1=&amp;gt; Up and Down 

#ifndef NRFX_PWM_DEFAULT_CONFIG_COUNT_MODE
#define NRFX_PWM_DEFAULT_CONFIG_COUNT_MODE 0
#endif

// &amp;lt;o&amp;gt; NRFX_PWM_DEFAULT_CONFIG_TOP_VALUE - Top value 
#ifndef NRFX_PWM_DEFAULT_CONFIG_TOP_VALUE
#define NRFX_PWM_DEFAULT_CONFIG_TOP_VALUE 1000
#endif

// &amp;lt;o&amp;gt; NRFX_PWM_DEFAULT_CONFIG_LOAD_MODE  - Load mode
 
// &amp;lt;0=&amp;gt; Common 
// &amp;lt;1=&amp;gt; Grouped 
// &amp;lt;2=&amp;gt; Individual 
// &amp;lt;3=&amp;gt; Waveform 

#ifndef NRFX_PWM_DEFAULT_CONFIG_LOAD_MODE
#define NRFX_PWM_DEFAULT_CONFIG_LOAD_MODE 0
#endif

// &amp;lt;o&amp;gt; NRFX_PWM_DEFAULT_CONFIG_STEP_MODE  - Step mode
 
// &amp;lt;0=&amp;gt; Auto 
// &amp;lt;1=&amp;gt; Triggered 

#ifndef NRFX_PWM_DEFAULT_CONFIG_STEP_MODE
#define NRFX_PWM_DEFAULT_CONFIG_STEP_MODE 0
#endif

// &amp;lt;o&amp;gt; NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY  - Interrupt priority
 
// &amp;lt;0=&amp;gt; 0 (highest) 
// &amp;lt;1=&amp;gt; 1 
// &amp;lt;2=&amp;gt; 2 
// &amp;lt;3=&amp;gt; 3 
// &amp;lt;4=&amp;gt; 4 
// &amp;lt;5=&amp;gt; 5 
// &amp;lt;6=&amp;gt; 6 
// &amp;lt;7=&amp;gt; 7 

#ifndef NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY
#define NRFX_PWM_DEFAULT_CONFIG_IRQ_PRIORITY 6
#endif

// &amp;lt;e&amp;gt; NRFX_PWM_CONFIG_LOG_ENABLED - Enables logging in the module.
//==========================================================
#ifndef NRFX_PWM_CONFIG_LOG_ENABLED
#define NRFX_PWM_CONFIG_LOG_ENABLED 0
#endif
// &amp;lt;o&amp;gt; NRFX_PWM_CONFIG_LOG_LEVEL  - Default Severity level
 
// &amp;lt;0=&amp;gt; Off 
// &amp;lt;1=&amp;gt; Error 
// &amp;lt;2=&amp;gt; Warning 
// &amp;lt;3=&amp;gt; Info 
// &amp;lt;4=&amp;gt; Debug 

#ifndef NRFX_PWM_CONFIG_LOG_LEVEL
#define NRFX_PWM_CONFIG_LOG_LEVEL 3
#endif

// &amp;lt;o&amp;gt; NRFX_PWM_CONFIG_INFO_COLOR  - ANSI escape code prefix.
 
// &amp;lt;0=&amp;gt; Default 
// &amp;lt;1=&amp;gt; Black 
// &amp;lt;2=&amp;gt; Red 
// &amp;lt;3=&amp;gt; Green 
// &amp;lt;4=&amp;gt; Yellow 
// &amp;lt;5=&amp;gt; Blue 
// &amp;lt;6=&amp;gt; Magenta 
// &amp;lt;7=&amp;gt; Cyan 
// &amp;lt;8=&amp;gt; White 

#ifndef NRFX_PWM_CONFIG_INFO_COLOR
#define NRFX_PWM_CONFIG_INFO_COLOR 0
#endif

// &amp;lt;o&amp;gt; NRFX_PWM_CONFIG_DEBUG_COLOR  - ANSI escape code prefix.
 
// &amp;lt;0=&amp;gt; Default 
// &amp;lt;1=&amp;gt; Black 
// &amp;lt;2=&amp;gt; Red 
// &amp;lt;3=&amp;gt; Green 
// &amp;lt;4=&amp;gt; Yellow 
// &amp;lt;5=&amp;gt; Blue 
// &amp;lt;6=&amp;gt; Magenta 
// &amp;lt;7=&amp;gt; Cyan 
// &amp;lt;8=&amp;gt; White 

#ifndef NRFX_PWM_CONFIG_DEBUG_COLOR
#define NRFX_PWM_CONFIG_DEBUG_COLOR 0
#endif

// &amp;lt;/e&amp;gt;

// &amp;lt;e&amp;gt; NRFX_PWM_NRF52_ANOMALY_109_WORKAROUND_ENABLED - Enables nRF52 Anomaly 109 workaround for PWM.

// &amp;lt;i&amp;gt; The workaround uses interrupts to wake up the CPU and ensure
// &amp;lt;i&amp;gt; it is active when PWM is about to start a DMA transfer. For
// &amp;lt;i&amp;gt; initial transfer, done when a playback is started via PPI,
// &amp;lt;i&amp;gt; a specific EGU instance is used to generate the interrupt.
// &amp;lt;i&amp;gt; During the playback, the PWM interrupt triggered on SEQEND
// &amp;lt;i&amp;gt; event of a preceding sequence is used to protect the transfer
// &amp;lt;i&amp;gt; done for the next sequence to be played.
//==========================================================
#ifndef NRFX_PWM_NRF52_ANOMALY_109_WORKAROUND_ENABLED
#define NRFX_PWM_NRF52_ANOMALY_109_WORKAROUND_ENABLED 0
#endif
// &amp;lt;o&amp;gt; NRFX_PWM_NRF52_ANOMALY_109_EGU_INSTANCE  - EGU instance used by the nRF52 Anomaly 109 workaround for PWM.
 
// &amp;lt;0=&amp;gt; EGU0 
// &amp;lt;1=&amp;gt; EGU1 
// &amp;lt;2=&amp;gt; EGU2 
// &amp;lt;3=&amp;gt; EGU3 
// &amp;lt;4=&amp;gt; EGU4 
// &amp;lt;5=&amp;gt; EGU5 

#ifndef NRFX_PWM_NRF52_ANOMALY_109_EGU_INSTANCE
#define NRFX_PWM_NRF52_ANOMALY_109_EGU_INSTANCE 5
#endif

// &amp;lt;/e&amp;gt;

// &amp;lt;/e&amp;gt;&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to find driver enable option in SDK config</title><link>https://devzone.nordicsemi.com/thread/200063?ContentTypeID=1</link><pubDate>Tue, 23 Jul 2019 12:59:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:37ca7735-ed09-4907-9097-c65a48f49fdd</guid><dc:creator>chandan</dc:creator><description>&lt;p&gt;If we want to use any peripheral, we enable it first in&amp;nbsp;&lt;span&gt;sdk config correct ? I can&amp;#39;t see pwm in that&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to find driver enable option in SDK config</title><link>https://devzone.nordicsemi.com/thread/200046?ContentTypeID=1</link><pubDate>Tue, 23 Jul 2019 12:07:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:503d4c76-7277-4450-91c8-7e9881ad0493</guid><dc:creator>haakonsh</dc:creator><description>&lt;p&gt;What do you mean by &amp;quot;&lt;span&gt;not able to see pwm&amp;nbsp;insider driver folder in sdk config&amp;quot;&lt;br /&gt;&lt;br /&gt;Do you have a compile issue? What&amp;#39;s the error message?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to find driver enable option in SDK config</title><link>https://devzone.nordicsemi.com/thread/200021?ContentTypeID=1</link><pubDate>Tue, 23 Jul 2019 11:31:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:338ebdc1-6f58-457d-af18-9632940cdb0c</guid><dc:creator>chandan</dc:creator><description>&lt;p&gt;I have attached my entire project&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to find driver enable option in SDK config</title><link>https://devzone.nordicsemi.com/thread/200020?ContentTypeID=1</link><pubDate>Tue, 23 Jul 2019 11:30:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:262d4d56-d98d-4664-a491-549214392a5f</guid><dc:creator>chandan</dc:creator><description>&lt;p&gt;I am not able to see pwm&amp;nbsp;insider driver folder in sdk config. I need to enable PWM there so i can use it&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to find driver enable option in SDK config</title><link>https://devzone.nordicsemi.com/thread/200019?ContentTypeID=1</link><pubDate>Tue, 23 Jul 2019 11:27:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5d136cde-f4ed-482b-a96c-26bc7b55f2a9</guid><dc:creator>haakonsh</dc:creator><description>&lt;p&gt;What exactly is not working, be specific.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to find driver enable option in SDK config</title><link>https://devzone.nordicsemi.com/thread/200016?ContentTypeID=1</link><pubDate>Tue, 23 Jul 2019 11:22:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2b2536e3-590d-4394-89cb-223978dcf1ef</guid><dc:creator>chandan</dc:creator><description>&lt;p&gt;I did but still not working&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to find driver enable option in SDK config</title><link>https://devzone.nordicsemi.com/thread/199956?ContentTypeID=1</link><pubDate>Tue, 23 Jul 2019 08:47:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4aaf1daa-6c8f-424d-b9c1-4d1f620260b3</guid><dc:creator>haakonsh</dc:creator><description>&lt;p&gt;You need to copy the relevant defines from the sdk_config.h of the PWM example.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>