Merge remote-tracking branch 'upstream/3_4_2' into 3_4_2_branch_merging
This commit is contained in:
commit
d005005e22
6 changed files with 37 additions and 6 deletions
|
@ -7,8 +7,8 @@
|
||||||
#define STR(x) STR_HELPER(x)
|
#define STR(x) STR_HELPER(x)
|
||||||
|
|
||||||
// Firmware version
|
// Firmware version
|
||||||
#define FW_VERSION "3.4.1"
|
#define FW_VERSION "3.4.2"
|
||||||
#define FW_COMMIT_NR 1356
|
#define FW_COMMIT_NR 1360
|
||||||
// FW_VERSION_UNKNOWN means this is an unofficial build.
|
// FW_VERSION_UNKNOWN means this is an unofficial build.
|
||||||
// The firmware should only be checked into github with this symbol.
|
// The firmware should only be checked into github with this symbol.
|
||||||
#define FW_DEV_VERSION FW_VERSION_UNKNOWN
|
#define FW_DEV_VERSION FW_VERSION_UNKNOWN
|
||||||
|
|
|
@ -1180,6 +1180,9 @@ void setup()
|
||||||
}
|
}
|
||||||
MYSERIAL.begin(BAUDRATE);
|
MYSERIAL.begin(BAUDRATE);
|
||||||
fdev_setup_stream(uartout, uart_putchar, NULL, _FDEV_SETUP_WRITE); //setup uart out stream
|
fdev_setup_stream(uartout, uart_putchar, NULL, _FDEV_SETUP_WRITE); //setup uart out stream
|
||||||
|
#ifndef W25X20CL
|
||||||
|
SERIAL_PROTOCOLLNPGM("start");
|
||||||
|
#endif //W25X20CL
|
||||||
stdout = uartout;
|
stdout = uartout;
|
||||||
SERIAL_ECHO_START;
|
SERIAL_ECHO_START;
|
||||||
printf_P(PSTR(" " FW_VERSION_FULL "\n"));
|
printf_P(PSTR(" " FW_VERSION_FULL "\n"));
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
#include "cardreader.h"
|
#include "cardreader.h"
|
||||||
#include "ultralcd.h"
|
#include "ultralcd.h"
|
||||||
#include "sound.h"
|
#include "sound.h"
|
||||||
|
#include "printers.h"
|
||||||
#include <avr/pgmspace.h>
|
#include <avr/pgmspace.h>
|
||||||
|
|
||||||
#define CHECK_FINDA ((IS_SD_PRINTING || is_usb_printing) && (mcode_in_progress != 600) && !saved_printing && e_active())
|
#define CHECK_FINDA ((IS_SD_PRINTING || is_usb_printing) && (mcode_in_progress != 600) && !saved_printing && e_active())
|
||||||
|
@ -20,10 +21,9 @@
|
||||||
#define MMU_CMD_TIMEOUT 300000ul //5min timeout for mmu commands (except P0)
|
#define MMU_CMD_TIMEOUT 300000ul //5min timeout for mmu commands (except P0)
|
||||||
#define MMU_P0_TIMEOUT 3000ul //timeout for P0 command: 3seconds
|
#define MMU_P0_TIMEOUT 3000ul //timeout for P0 command: 3seconds
|
||||||
|
|
||||||
#define MMU_HWRESET
|
#ifdef MMU_HWRESET
|
||||||
#define MMU_RST_PIN 76
|
#define MMU_RST_PIN 76
|
||||||
|
#endif //MMU_HWRESET
|
||||||
#define MMU_REQUIRED_FW_BUILDNR 83
|
|
||||||
|
|
||||||
bool mmu_enabled = false;
|
bool mmu_enabled = false;
|
||||||
|
|
||||||
|
@ -93,8 +93,10 @@ int8_t mmu_rx_start(void)
|
||||||
//initialize mmu2 unit - first part - should be done at begining of startup process
|
//initialize mmu2 unit - first part - should be done at begining of startup process
|
||||||
void mmu_init(void)
|
void mmu_init(void)
|
||||||
{
|
{
|
||||||
|
#ifdef MMU_HWRESET
|
||||||
digitalWrite(MMU_RST_PIN, HIGH);
|
digitalWrite(MMU_RST_PIN, HIGH);
|
||||||
pinMode(MMU_RST_PIN, OUTPUT); //setup reset pin
|
pinMode(MMU_RST_PIN, OUTPUT); //setup reset pin
|
||||||
|
#endif //MMU_HWRESET
|
||||||
uart2_init(); //init uart2
|
uart2_init(); //init uart2
|
||||||
_delay_ms(10); //wait 10ms for sure
|
_delay_ms(10); //wait 10ms for sure
|
||||||
mmu_reset(); //reset mmu (HW or SW), do not wait for response
|
mmu_reset(); //reset mmu (HW or SW), do not wait for response
|
||||||
|
@ -148,13 +150,35 @@ void mmu_loop(void)
|
||||||
bool version_valid = mmu_check_version();
|
bool version_valid = mmu_check_version();
|
||||||
if (!version_valid) mmu_show_warning();
|
if (!version_valid) mmu_show_warning();
|
||||||
else puts_P(PSTR("MMU version valid"));
|
else puts_P(PSTR("MMU version valid"));
|
||||||
|
|
||||||
|
if ((PRINTER_TYPE == PRINTER_MK3) || (PRINTER_TYPE == PRINTER_MK3_SNMM))
|
||||||
|
{
|
||||||
|
#ifdef MMU_DEBUG
|
||||||
|
puts_P(PSTR("MMU <= 'P0'"));
|
||||||
|
#endif //MMU_DEBUG
|
||||||
|
mmu_puts_P(PSTR("P0\n")); //send 'read finda' request
|
||||||
|
mmu_state = -4;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
#ifdef MMU_DEBUG
|
||||||
|
puts_P(PSTR("MMU <= 'M1'"));
|
||||||
|
#endif //MMU_DEBUG
|
||||||
|
mmu_puts_P(PSTR("M1\n")); //set mmu mode to stealth
|
||||||
|
mmu_state = -5;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
case -5:
|
||||||
|
if (mmu_rx_ok() > 0)
|
||||||
|
{
|
||||||
#ifdef MMU_DEBUG
|
#ifdef MMU_DEBUG
|
||||||
puts_P(PSTR("MMU <= 'P0'"));
|
puts_P(PSTR("MMU <= 'P0'"));
|
||||||
#endif //MMU_DEBUG
|
#endif //MMU_DEBUG
|
||||||
mmu_puts_P(PSTR("P0\n")); //send 'read finda' request
|
mmu_puts_P(PSTR("P0\n")); //send 'read finda' request
|
||||||
mmu_state = -4;
|
mmu_state = -4;
|
||||||
}
|
}
|
||||||
return;
|
|
||||||
case -4:
|
case -4:
|
||||||
if (mmu_rx_ok() > 0)
|
if (mmu_rx_ok() > 0)
|
||||||
{
|
{
|
||||||
|
|
|
@ -483,6 +483,7 @@
|
||||||
|
|
||||||
//#define SUPPORT_VERBOSITY
|
//#define SUPPORT_VERBOSITY
|
||||||
|
|
||||||
|
#define MMU_REQUIRED_FW_BUILDNR 132
|
||||||
//#define MMU_DEBUG //print communication between MMU2 and printer on serial
|
//#define MMU_DEBUG //print communication between MMU2 and printer on serial
|
||||||
|
|
||||||
#endif //__CONFIGURATION_PRUSA_H
|
#endif //__CONFIGURATION_PRUSA_H
|
||||||
|
|
|
@ -484,6 +484,7 @@
|
||||||
|
|
||||||
//#define SUPPORT_VERBOSITY
|
//#define SUPPORT_VERBOSITY
|
||||||
|
|
||||||
|
#define MMU_REQUIRED_FW_BUILDNR 132
|
||||||
//#define MMU_DEBUG //print communication between MMU2 and printer on serial
|
//#define MMU_DEBUG //print communication between MMU2 and printer on serial
|
||||||
|
|
||||||
#endif //__CONFIGURATION_PRUSA_H
|
#endif //__CONFIGURATION_PRUSA_H
|
||||||
|
|
|
@ -616,6 +616,8 @@
|
||||||
|
|
||||||
//#define SUPPORT_VERBOSITY
|
//#define SUPPORT_VERBOSITY
|
||||||
|
|
||||||
|
#define MMU_REQUIRED_FW_BUILDNR 83
|
||||||
|
#define MMU_HWRESET
|
||||||
//#define MMU_DEBUG //print communication between MMU2 and printer on serial
|
//#define MMU_DEBUG //print communication between MMU2 and printer on serial
|
||||||
|
|
||||||
#endif //__CONFIGURATION_PRUSA_H
|
#endif //__CONFIGURATION_PRUSA_H
|
||||||
|
|
Loading…
Reference in a new issue