Skip to content

Commit

Permalink
Set default baud rate to 115200
Browse files Browse the repository at this point in the history
  • Loading branch information
wilriker committed Dec 16, 2020
1 parent 744fd64 commit 6c7809f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Configuration.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* Created: 16/01/2015 13:18:16
* Author: David
*/
*/


#ifndef CONFIGURATION_H_
Expand Down Expand Up @@ -54,7 +54,7 @@
#define IS_ER (false)
#endif

const uint32_t DefaultBaudRate = 57600;
const uint32_t DefaultBaudRate = 115200;
const uint32_t DimDisplayTimeout = 60000; // dim this display after no activity for this number of milliseconds
const uint32_t DefaultScreensaverTimeout = 120000; // enable screensaver after no activity for this number of milliseconds
const uint32_t ScreensaverMoveTime = 10000; // Jog around screen saver text after this number of milliseconds
Expand Down
2 changes: 1 addition & 1 deletion src/PanelDue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ struct FlashData
{
// The magic value should be changed whenever the layout of the NVRAM changes
// We now use a different magic value for each display size, to force the "touch the spot" screen to be displayed when you change the display size
static const uint32_t magicVal = 0x3AB63A40 + DISPLAY_TYPE;
static const uint32_t magicVal = 0x3AB63A50 + DISPLAY_TYPE;
static const uint32_t muggleVal = 0xFFFFFFFF;

uint32_t magic;
Expand Down
2 changes: 2 additions & 0 deletions whatsnew.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Version 3.2.6
## Upgrade Notes:
- This release is compatible with RepRapFirmware 3.2-beta1 or later. It will partially work with RepRapFirmware 3.1.1 but not with any older version.
- This release will reset to factory defaults

# Limitations
- Due to the lack of RAM this build will not run on version 1 or early version 2 PanelDue boards that use the `ATSAM3S2B` chip.
Expand All @@ -13,6 +14,7 @@
## Changed:
* Improve data structures to hold the ObjectModel data
* Use more of the common code base from RRFLibraries to get rid of duplicate code
* Default baud rate now set to 115200 (3.2.6+1)

## Bug fixes:
* Fix memory leaks
Expand Down

0 comments on commit 6c7809f

Please sign in to comment.