2019-07-30 02:30:00 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2019-07-30 02:30:00 -05:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if ENABLED(BAUD_RATE_GCODE)
|
|
|
|
|
|
|
|
#include "../gcode.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* M575 - Change serial baud rate
|
|
|
|
*
|
|
|
|
* P<index> - Serial port index. Omit for all.
|
|
|
|
* B<baudrate> - Baud rate (bits per second)
|
|
|
|
*/
|
|
|
|
void GcodeSuite::M575() {
|
|
|
|
const int32_t baud = parser.ulongval('B');
|
|
|
|
switch (baud) {
|
|
|
|
case 2400: case 9600: case 19200: case 38400: case 57600:
|
|
|
|
case 115200: case 250000: case 500000: case 1000000: {
|
|
|
|
const int8_t port = parser.intval('P', -99);
|
|
|
|
const bool set0 = (port == -99 || port == 0);
|
|
|
|
if (set0) {
|
|
|
|
SERIAL_ECHO_START();
|
|
|
|
SERIAL_ECHOLNPAIR(" Serial "
|
2020-05-12 05:50:28 -05:00
|
|
|
#if HAS_MULTI_SERIAL
|
2019-07-30 02:30:00 -05:00
|
|
|
, '0',
|
|
|
|
#else
|
|
|
|
"0"
|
|
|
|
#endif
|
|
|
|
" baud rate set to ", baud
|
|
|
|
);
|
|
|
|
}
|
2020-05-12 05:50:28 -05:00
|
|
|
#if HAS_MULTI_SERIAL
|
2019-07-30 02:30:00 -05:00
|
|
|
const bool set1 = (port == -99 || port == 1);
|
|
|
|
if (set1) {
|
|
|
|
SERIAL_ECHO_START();
|
|
|
|
SERIAL_ECHOLNPAIR(" Serial ", '1', " baud rate set to ", baud);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
SERIAL_FLUSH();
|
|
|
|
|
|
|
|
if (set0) { MYSERIAL0.end(); MYSERIAL0.begin(baud); }
|
|
|
|
|
2020-05-12 05:50:28 -05:00
|
|
|
#if HAS_MULTI_SERIAL
|
2019-07-30 02:30:00 -05:00
|
|
|
if (set1) { MYSERIAL1.end(); MYSERIAL1.begin(baud); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} break;
|
2019-09-11 02:46:52 -05:00
|
|
|
default: SERIAL_ECHO_MSG("?(B)aud rate implausible.");
|
2019-07-30 02:30:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // NUM_SERIAL > 0 && BAUD_RATE_GCODE
|