Skip to content

Commit 3a15e42

Browse files
committed
Remove enablePhaseLockedWaveform().
1 parent b6acfee commit 3a15e42

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

Diff for: cores/esp8266/core_esp8266_features.h

-4
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,6 @@ inline int esp_get_cpu_freq_mhz()
122122
}
123123
#endif
124124

125-
// Call this function in your setup() to cause the phase locked version of the generator to
126-
// be linked in automatically. Otherwise, the default PWM locked version will be used.
127-
void enablePhaseLockedWaveform(void);
128-
129125
#ifdef __cplusplus
130126
}
131127
#endif

Diff for: libraries/esp8266/examples/FadePolledTimeout/FadePolledTimeout.ino

-7
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,6 @@ void setup() {
3232
Serial.begin(115200);
3333
Serial.println();
3434

35-
// This next line will cause the code to use the Phase-Locked waveform generator
36-
// instead of the default PWM-Locked one. Comment it out to try the default version.
37-
// For more information on choosing between the two options, see the following pull requests:
38-
// Phase-Locked generator: https://github.com/esp8266/Arduino/pull/7022
39-
// PWM-Locked generator: https://github.com/esp8266/Arduino/pull/7231
40-
enablePhaseLockedWaveform();
41-
4235
pinMode(LED_BUILTIN, OUTPUT); // Initialize the LED_BUILTIN pin as an output
4336
analogWriteRange(1000);
4437

0 commit comments

Comments
 (0)