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/RemoteSensor.h')
-rw-r--r--src/Heating/Sensors/RemoteSensor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Heating/Sensors/RemoteSensor.h b/src/Heating/Sensors/RemoteSensor.h
index 823ab9e5..22edb4d4 100644
--- a/src/Heating/Sensors/RemoteSensor.h
+++ b/src/Heating/Sensors/RemoteSensor.h
@@ -15,14 +15,14 @@
class RemoteSensor : public TemperatureSensor
{
public:
- RemoteSensor(unsigned int sensorNum, CanAddress pBoardAddress);
+ RemoteSensor(unsigned int sensorNum, CanAddress pBoardAddress) noexcept;
GCodeResult Configure(GCodeBuffer& gb, const StringRef& reply) override;
- CanAddress GetBoardAddress() const override { return boardAddress; }
- void UpdateRemoteTemperature(CanAddress src, const CanSensorReport& report) override;
+ CanAddress GetBoardAddress() const noexcept override { return boardAddress; }
+ void UpdateRemoteTemperature(CanAddress src, const CanSensorReport& report) noexcept override;
// Try to get a temperature reading
- void Poll() override { } // nothing to do here because reception of CAN messages update the reading
+ void Poll() noexcept override { } // nothing to do here because reception of CAN messages update the reading
private:
CanAddress boardAddress;