stm32: timer: Add missing TIM_CCER_CC4NP

This commit is contained in:
Jordi Pakey-Rodriguez 2017-04-12 12:19:57 -05:00 committed by Karl Palsson
parent a42a058966
commit 26ca4cc88a

View File

@ -953,6 +953,9 @@ depending on the level of the complementary input. */
/* --- TIMx_CCER values ---------------------------------------------------- */
/* CC4NP: Capture/compare 4 complementary output polarity */
#define TIM_CCER_CC4NP (1 << 15)
/* CC4P: Capture/compare 4 output polarity */
#define TIM_CCER_CC4P (1 << 13)
@ -1264,4 +1267,3 @@ END_DECLS
#endif
/** @endcond */
/**@}*/