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:
Diffstat (limited to 'src/Heating/Sensors/ThermocoupleSensor31856.h')
-rw-r--r--src/Heating/Sensors/ThermocoupleSensor31856.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Heating/Sensors/ThermocoupleSensor31856.h b/src/Heating/Sensors/ThermocoupleSensor31856.h
index cb2bc6a5..080a639c 100644
--- a/src/Heating/Sensors/ThermocoupleSensor31856.h
+++ b/src/Heating/Sensors/ThermocoupleSensor31856.h
@@ -13,15 +13,15 @@
class ThermocoupleSensor31856 : public SpiTemperatureSensor
{
public:
- ThermocoupleSensor31856(unsigned int sensorNum);
+ ThermocoupleSensor31856(unsigned int sensorNum) noexcept;
GCodeResult Configure(GCodeBuffer& gb, const StringRef& reply) override;
static constexpr const char *TypeName = "thermocouplemax31856";
- void Poll() override;
+ void Poll() noexcept override;
private:
- TemperatureError TryInitThermocouple() const;
+ TemperatureError TryInitThermocouple() const noexcept;
uint8_t cr0;
uint8_t thermocoupleType;