We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f9bbb0 commit 68db034Copy full SHA for 68db034
src/components/servo/ws_servo.cpp
@@ -72,7 +72,7 @@ bool ws_servo::servo_attach(int pin, int minPulseWidth, int maxPulseWidth,
72
#ifdef ARDUINO_ARCH_ESP32
73
rc = servo->attach(pin, minPulseWidth, maxPulseWidth, freq);
74
#else
75
- (void)freq; // supress warning when we don't use the frequency parameter
+ (void)freq; // suppress warning when we don't use the frequency parameter
76
rc = servo->attach(pin, minPulseWidth, maxPulseWidth);
77
#endif
78
if (rc == ERR_SERVO_ATTACH)
0 commit comments