Skip to content
This repository was archived by the owner on Jul 9, 2020. It is now read-only.

Commit 9a803f5

Browse files
committed
RRF3.0RC2 final
Increased version number following filament handling changes Minor changes to avoid build warnings
1 parent a0b421e commit 9a803f5

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/Heating/Heat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Heat::Heat() noexcept
9595
{
9696
h = -1;
9797
}
98-
#if !DUET3
98+
#if !defined(DUET3)
9999
bedHeaters[0] = DefaultBedHeater;
100100
#endif
101101

src/Movement/DDA.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1641,7 +1641,10 @@ float DDA::NormaliseXYZ() noexcept
16411641
// Either this move is currently executing (DDARing.currentDDA == this) and the state is 'executing', or we have almost finished preparing it and the state is 'provisional'.
16421642
void DDA::CheckEndstops(Platform& platform) noexcept
16431643
{
1644+
#if SUPPORT_CAN_EXPANSION
16441645
const bool fromPrepare = (state == DDAState::provisional); // determine this before anything sets the state to 'completed'
1646+
#endif
1647+
16451648
for (;;)
16461649
{
16471650
const EndstopHitDetails hitDetails = platform.GetEndstops().CheckEndstops(flags.goingSlow);

src/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#endif
2121

2222
#ifndef DATE
23-
# define DATE "2019-12-16b7"
23+
# define DATE "2019-12-16b8"
2424
#endif
2525

2626
#define AUTHORS "reprappro, dc42, chrishamm, t3p3, dnewman, printm3d"

0 commit comments

Comments
 (0)