File tree 2 files changed +0
-11
lines changed
libraries/esp8266/examples/FadePolledTimeout
2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -123,9 +123,6 @@ inline int esp_get_cpu_freq_mhz()
123
123
#endif
124
124
125
125
126
- // Call this function in your setup() to cause the phase locked version of the generator to
127
- // be linked in automatically. Otherwise, the default PWM locked version will be used.
128
- void enablePhaseLockedWaveform (void );
129
126
130
127
// Determine when the sketch runs on ESP8285
131
128
#if !defined(CORE_MOCK)
@@ -136,7 +133,6 @@ inline bool esp_is_8285()
136
133
return false ;
137
134
}
138
135
#endif
139
-
140
136
#ifdef __cplusplus
141
137
}
142
138
#endif
Original file line number Diff line number Diff line change @@ -32,13 +32,6 @@ void setup() {
32
32
Serial.begin (115200 );
33
33
Serial.println ();
34
34
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
-
42
35
pinMode (LED_BUILTIN, OUTPUT); // Initialize the LED_BUILTIN pin as an output
43
36
analogWriteRange (1000 );
44
37
You can’t perform that action at this time.
0 commit comments