2019-04-16 05:55:33 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
2017-06-17 23:19:42 +02:00
|
|
|
#ifdef TARGET_LPC1768
|
|
|
|
|
2017-08-01 18:19:23 +02:00
|
|
|
#include <usb/usb.h>
|
|
|
|
#include <usb/usbcfg.h>
|
|
|
|
#include <usb/usbhw.h>
|
|
|
|
#include <usb/usbcore.h>
|
|
|
|
#include <usb/cdc.h>
|
|
|
|
#include <usb/cdcuser.h>
|
|
|
|
#include <usb/mscuser.h>
|
2018-08-23 02:08:39 +02:00
|
|
|
#include <CDCSerial.h>
|
2018-09-19 19:33:20 +02:00
|
|
|
#include <usb/mscuser.h>
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include <debug_frmwrk.h>
|
|
|
|
}
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2018-09-19 19:33:20 +02:00
|
|
|
#include "../../sd/cardreader.h"
|
2017-10-25 00:28:33 +02:00
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
#include "HAL.h"
|
2017-06-17 23:19:42 +02:00
|
|
|
#include "HAL_timers.h"
|
2018-02-04 02:33:26 +01:00
|
|
|
|
2018-08-23 02:08:39 +02:00
|
|
|
extern uint32_t MSC_SD_Init(uint8_t pdrv);
|
|
|
|
extern "C" int isLPC1769();
|
|
|
|
extern "C" void disk_timerproc(void);
|
2018-06-17 03:59:22 +02:00
|
|
|
|
2018-08-23 02:08:39 +02:00
|
|
|
void SysTick_Callback() {
|
|
|
|
disk_timerproc();
|
2018-02-04 02:33:26 +01:00
|
|
|
}
|
|
|
|
|
2018-08-23 02:08:39 +02:00
|
|
|
void HAL_init() {
|
2018-10-18 18:26:50 +02:00
|
|
|
|
|
|
|
// Support the 4 LEDs some LPC176x boards have
|
2018-08-23 02:08:39 +02:00
|
|
|
#if PIN_EXISTS(LED)
|
|
|
|
SET_DIR_OUTPUT(LED_PIN);
|
|
|
|
WRITE_PIN_CLR(LED_PIN);
|
2018-10-18 18:26:50 +02:00
|
|
|
#if PIN_EXISTS(LED2)
|
2018-10-18 18:29:49 +02:00
|
|
|
SET_DIR_OUTPUT(LED2_PIN);
|
|
|
|
WRITE_PIN_CLR(LED2_PIN);
|
2018-10-18 18:26:50 +02:00
|
|
|
#if PIN_EXISTS(LED3)
|
2018-10-18 18:29:49 +02:00
|
|
|
SET_DIR_OUTPUT(LED3_PIN);
|
|
|
|
WRITE_PIN_CLR(LED3_PIN);
|
2018-10-18 18:26:50 +02:00
|
|
|
#if PIN_EXISTS(LED4)
|
2018-10-18 18:29:49 +02:00
|
|
|
SET_DIR_OUTPUT(LED4_PIN);
|
|
|
|
WRITE_PIN_CLR(LED4_PIN);
|
2018-10-18 18:26:50 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
2018-10-18 18:29:49 +02:00
|
|
|
|
2018-08-23 02:08:39 +02:00
|
|
|
// Flash status LED 3 times to indicate Marlin has started booting
|
|
|
|
for (uint8_t i = 0; i < 6; ++i) {
|
|
|
|
TOGGLE(LED_PIN);
|
|
|
|
delay(100);
|
|
|
|
}
|
|
|
|
#endif
|
2018-10-18 18:26:50 +02:00
|
|
|
|
2018-09-19 19:33:20 +02:00
|
|
|
//debug_frmwrk_init();
|
|
|
|
//_DBG("\n\nDebug running\n");
|
|
|
|
// Initialise the SD card chip select pins as soon as possible
|
2018-10-26 22:23:02 +02:00
|
|
|
#if PIN_EXISTS(SS)
|
|
|
|
WRITE(SS_PIN, HIGH);
|
|
|
|
SET_OUTPUT(SS_PIN);
|
2018-09-19 19:33:20 +02:00
|
|
|
#endif
|
2018-10-26 22:23:02 +02:00
|
|
|
|
|
|
|
#if defined(ONBOARD_SD_CS) && ONBOARD_SD_CS > -1
|
|
|
|
WRITE(ONBOARD_SD_CS, HIGH);
|
|
|
|
SET_OUTPUT(ONBOARD_SD_CS);
|
2018-09-19 19:33:20 +02:00
|
|
|
#endif
|
2018-10-26 22:23:02 +02:00
|
|
|
|
2018-09-19 19:33:20 +02:00
|
|
|
USB_Init(); // USB Initialization
|
|
|
|
USB_Connect(FALSE); // USB clear connection
|
|
|
|
delay(1000); // Give OS time to notice
|
2018-08-23 02:08:39 +02:00
|
|
|
USB_Connect(TRUE);
|
2018-10-26 22:23:02 +02:00
|
|
|
|
|
|
|
#if DISABLED(USB_SD_DISABLED)
|
2018-09-19 19:33:20 +02:00
|
|
|
MSC_SD_Init(0); // Enable USB SD card access
|
|
|
|
#endif
|
2018-10-26 22:23:02 +02:00
|
|
|
|
2018-10-21 06:21:27 +02:00
|
|
|
const millis_t usb_timeout = millis() + 2000;
|
2017-11-18 09:08:03 +01:00
|
|
|
while (!USB_Configuration && PENDING(millis(), usb_timeout)) {
|
2017-06-17 23:19:42 +02:00
|
|
|
delay(50);
|
2018-09-19 19:33:20 +02:00
|
|
|
HAL_idletask();
|
2017-10-25 00:28:33 +02:00
|
|
|
#if PIN_EXISTS(LED)
|
2018-08-23 00:14:38 +02:00
|
|
|
TOGGLE(LED_PIN); // Flash quickly during USB initialization
|
2017-10-25 00:28:33 +02:00
|
|
|
#endif
|
2017-06-17 23:19:42 +02:00
|
|
|
}
|
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
#if NUM_SERIAL > 0
|
|
|
|
MYSERIAL0.begin(BAUDRATE);
|
|
|
|
#if NUM_SERIAL > 1
|
|
|
|
MYSERIAL1.begin(BAUDRATE);
|
|
|
|
#endif
|
2018-08-23 00:14:38 +02:00
|
|
|
SERIAL_PRINTF("\n\necho:%s (%dMhz) Initialized\n", isLPC1769() ? "LPC1769" : "LPC1768", SystemCoreClock / 1000000);
|
2017-11-05 15:49:38 +01:00
|
|
|
SERIAL_FLUSHTX();
|
2017-10-25 00:28:33 +02:00
|
|
|
#endif
|
2017-06-17 23:19:42 +02:00
|
|
|
|
|
|
|
HAL_timer_init();
|
|
|
|
}
|
|
|
|
|
2018-09-19 19:33:20 +02:00
|
|
|
// HAL idle task
|
|
|
|
void HAL_idletask(void) {
|
2019-03-17 05:43:06 +01:00
|
|
|
#if BOTH(SDSUPPORT, SHARED_SD_CARD)
|
2018-09-19 19:33:20 +02:00
|
|
|
// If Marlin is using the SD card we need to lock it to prevent access from
|
|
|
|
// a PC via USB.
|
2018-10-19 20:52:44 +02:00
|
|
|
// Other HALs use IS_SD_PRINTING() and IS_SD_FILE_OPEN() to check for access but
|
2018-09-19 19:33:20 +02:00
|
|
|
// this will not reliably detect delete operations. To be safe we will lock
|
|
|
|
// the disk if Marlin has it mounted. Unfortuately there is currently no way
|
|
|
|
// to unmount the disk from the LCD menu.
|
2018-10-19 20:52:44 +02:00
|
|
|
// if (IS_SD_PRINTING() || IS_SD_FILE_OPEN())
|
2019-01-12 03:42:11 +01:00
|
|
|
if (card.isDetected())
|
2018-09-19 19:33:20 +02:00
|
|
|
MSC_Aquire_Lock();
|
|
|
|
else
|
|
|
|
MSC_Release_Lock();
|
|
|
|
#endif
|
|
|
|
// Perform USB stack housekeeping
|
|
|
|
MSC_RunDeferredCommands();
|
|
|
|
}
|
|
|
|
|
2017-06-17 23:19:42 +02:00
|
|
|
#endif // TARGET_LPC1768
|