Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2018-07-18 21:54:56 +0300
committerDavid Crocker <dcrocker@eschertech.com>2018-07-18 21:54:56 +0300
commita920aaeb7d00a553f43dbc53e307bcfa75bfd651 (patch)
tree614102d3f5d414a14593c9b9323688e7df1340bc /src/Fans/Fan.h
parentb21d5aa3e90f111b63ada0b65139ed256e6d2ec6 (diff)
Various changes for beta3
Allow up to 5 drivers per axs on Duet WiFi/Ethernet Allow GPIO access to Z probe mod pin on Duet WiFi/Ethernet Corrected tacho RPM reading Fix for M29 at end of macro file without newline at end Fan3 on PCCB defaults to 25kHz PWM Added DotStar LED support for PCCB Turn off Fan3 on PCCB during platform init Don't set Fan to thermostatic control by default on Duet M or on PCCB
Diffstat (limited to 'src/Fans/Fan.h')
-rw-r--r--src/Fans/Fan.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fans/Fan.h b/src/Fans/Fan.h
index f0e5598f..371b1264 100644
--- a/src/Fans/Fan.h
+++ b/src/Fans/Fan.h
@@ -29,7 +29,7 @@ public:
bool IsEnabled() const { return pin != NoPin; }
float GetConfiguredPwm() const { return val; } // returns the configured PWM. Actual PWM may be different, e.g. due to blipping or for thermostatic fans.
- void Init(Pin p_pin, bool hwInverted);
+ void Init(Pin p_pin, bool hwInverted, PwmFrequency p_freq);
void SetPwm(float speed);
bool HasMonitoredHeaters() const { return heatersMonitored != 0; }
void SetHeatersMonitored(HeatersMonitoredBitmap h);