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
path: root/src/Comms
diff options
context:
space:
mode:
authorManuel Coenen <manuel@duet3d.com>2021-01-15 17:52:02 +0300
committerManuel Coenen <manuel@duet3d.com>2021-01-19 13:22:32 +0300
commite48e001033e373a8c59cf7892d7a4b8a5a7c9283 (patch)
tree478ddabd2e224e73d0b17a822c05d92fe2b0919a /src/Comms
parented1f834bc57412ab58f3a9abb647e13f11e4b809 (diff)
Fix all compiler bugs (linker still unhappy)
Diffstat (limited to 'src/Comms')
-rw-r--r--src/Comms/PanelDueUpdater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Comms/PanelDueUpdater.cpp b/src/Comms/PanelDueUpdater.cpp
index 0a67ccf1..5789501b 100644
--- a/src/Comms/PanelDueUpdater.cpp
+++ b/src/Comms/PanelDueUpdater.cpp
@@ -234,7 +234,7 @@ void PanelDueUpdater::Spin() noexcept
case FlashState::bossaWriteOptions:
{
reprap.GetPlatform().Message(GenericMessage, "Writing PanelDue flash options\n");
- Flash* flash = device->getFlash();
+ BossaFlash* flash = device->getFlash();
flash->setBootFlash(true);
flash->writeOptions();
state = FlashState::bossaReset;