diff --git a/WHATS_NEW_LPC.md b/WHATS_NEW_LPC.md index 3678f9720..9d0cfd3ee 100644 --- a/WHATS_NEW_LPC.md +++ b/WHATS_NEW_LPC.md @@ -5,6 +5,12 @@ Please note ============ The sample board.txt files which are here: https://github.com/gloomyandy/RepRapFirmware/tree/v3.01-dev-lpc/LPC/ExampleBoardConfig are out of date and may contain invalid settings. In addition the current software is not very good at detecting errors in these files and providing feedback to the user. Hopefully this will be improved soon, but for now the best way to check if the settings are correct is to issue an M122 p200 and check that the configuration matches your board. The current best source for the available settings is the configuration source: https://github.com/gloomyandy/RepRapFirmware/blob/v3.01-dev-lpc/src/LPC/BoardConfig.cpp#L33 +Version 3.1.1-14 +============= +This version contains only two change... +* Fix for a bug that can result in changes to the PWM output used for Fans/Heaters not being made if the frequency of the output is changed at the same time. Often this willoccur the first time that the speed is set. +* The Ethernet build no longer has support for LCD displays enabled due to memory limitations. + Version 3.1.1-12 ============= This version contains a number of fixes and minor improvements following user testing. diff --git a/src/LPC/Pins_LPC.h b/src/LPC/Pins_LPC.h index af9726f8f..8a80a7178 100755 --- a/src/LPC/Pins_LPC.h +++ b/src/LPC/Pins_LPC.h @@ -61,7 +61,7 @@ #if defined(LPC_NETWORKING) //LPC Ethernet #define HAS_RTOSPLUSTCP_NETWORKING 1 - #define SUPPORT_12864_LCD 1 + #define SUPPORT_12864_LCD 0 #define HAS_WIFI_NETWORKING 0 #define HAS_MASS_STORAGE 1 #define SUPPORT_TELNET 0 diff --git a/src/Version.h b/src/Version.h index 754bdac70..c16f6efd5 100644 --- a/src/Version.h +++ b/src/Version.h @@ -9,7 +9,7 @@ #define SRC_VERSION_H_ #ifndef VERSION -# define MAIN_VERSION "3.1.1-12" +# define MAIN_VERSION "3.1.1-14" # ifdef USE_CAN0 # define VERSION_SUFFIX " (CAN0)" # else @@ -19,7 +19,7 @@ #endif #ifndef DATE -# define DATE "2020-27-6b12" +# define DATE "2020-17-7b14" #endif #define AUTHORS "reprappro, dc42, chrishamm, t3p3, dnewman, printm3d"