[2.0.x] Enable hardware serial ports on LPC1768 (#8004)
* Enable hardware serial ports on LPC1768 * Fix compilation errors with other HALs * FIx order of includes in LPC1768 HAL main.cpp * Add support for RX_BUFFER_SIZE and TX_BUFFER_SIZE options in Configuration_adv.h
This commit is contained in:
@ -29,6 +29,10 @@
|
||||
#include "../../../feature/pause.h"
|
||||
#include "../../../module/motion.h"
|
||||
|
||||
#if DISABLED(SDSUPPORT)
|
||||
#include "../../../module/printcounter.h"
|
||||
#endif
|
||||
|
||||
/**
|
||||
* M125: Store current position and move to filament change position.
|
||||
* Called on pause (by M25) to prevent material leaking onto the
|
||||
|
@ -135,7 +135,7 @@ public:
|
||||
// Code is found in the string. If not found, value_ptr is unchanged.
|
||||
// This allows "if (seen('A')||seen('B'))" to use the last-found value.
|
||||
static bool seen(const char c) {
|
||||
const char *p = strchr(command_args, c);
|
||||
char *p = strchr(command_args, c);
|
||||
const bool b = !!p;
|
||||
if (b) value_ptr = DECIMAL_SIGNED(p[1]) ? &p[1] : (char*)NULL;
|
||||
return b;
|
||||
|
Reference in New Issue
Block a user