1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 17:52:47 +01:00

boards/esp32: PWM configuration cleanup

This commit is contained in:
Gunar Schorcht 2022-06-04 11:16:43 +02:00
parent 09064aa056
commit 77647ea10c
5 changed files with 0 additions and 21 deletions

View File

@ -88,10 +88,6 @@
#endif #endif
#endif /* PWM0_GPIOS */ #endif /* PWM0_GPIOS */
/** PWM_DEV(1) is not used */
#ifndef PWM1_GPIOS
#define PWM1_GPIOS { }
#endif
/** @} */ /** @} */
/** /**

View File

@ -101,10 +101,6 @@
#define PWM0_GPIOS { GPIO2, GPIO0, GPIO4, GPIO15 } #define PWM0_GPIOS { GPIO2, GPIO0, GPIO4, GPIO15 }
#endif #endif
/** PWM_DEV(1) is not used */
#ifndef PWM1_GPIOS
#define PWM1_GPIOS { }
#endif
/** @} */ /** @} */
/** /**

View File

@ -134,14 +134,9 @@ extern "C" {
#else #else
#error Configuration problem: Flash mode qio or qout is used, \ #error Configuration problem: Flash mode qio or qout is used, \
GPIO9 and GPIO10 cannot be used as PWM channels as configured GPIO9 and GPIO10 cannot be used as PWM channels as configured
#define PWM0_GPIOS { }
#endif #endif
#endif #endif
/** PWM_DEV(1) is not used */
#ifndef PWM1_GPIOS
#define PWM1_GPIOS { }
#endif
/** @} */ /** @} */
/** /**

View File

@ -119,10 +119,6 @@
#define PWM0_GPIOS { GPIO0, GPIO2 } #define PWM0_GPIOS { GPIO0, GPIO2 }
#endif #endif
/** PWM_DEV(1) is not used */
#ifndef PWM1_GPIOS
#define PWM1_GPIOS { }
#endif
/** @} */ /** @} */
/** /**

View File

@ -127,10 +127,6 @@
#endif #endif
#endif #endif
/** PWM_DEV(1) is not used */
#ifndef PWM1_GPIOS
#define PWM1_GPIOS { }
#endif
/** @} */ /** @} */
/** /**