2017-06-17 23:19:42 +02:00
|
|
|
#ifdef TARGET_LPC1768
|
|
|
|
|
2018-08-23 02:08:39 +02:00
|
|
|
#include <LPC1768_PWM.h>
|
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>
|
2017-06-17 23:19:42 +02:00
|
|
|
|
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() {
|
|
|
|
#if PIN_EXISTS(LED)
|
|
|
|
SET_DIR_OUTPUT(LED_PIN);
|
|
|
|
WRITE_PIN_CLR(LED_PIN);
|
|
|
|
|
|
|
|
// MKS_SBASE has 3 other LEDs the bootloader uses during flashing. Clear them.
|
|
|
|
SET_DIR_OUTPUT(P1_19);
|
|
|
|
WRITE_PIN_CLR(P1_19);
|
|
|
|
SET_DIR_OUTPUT(P1_20);
|
|
|
|
WRITE_PIN_CLR(P1_20);
|
|
|
|
SET_DIR_OUTPUT(P1_21);
|
|
|
|
WRITE_PIN_CLR(P1_21);
|
|
|
|
|
|
|
|
// 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
|
2017-06-17 23:19:42 +02:00
|
|
|
|
|
|
|
(void)MSC_SD_Init(0);
|
2017-10-25 00:28:33 +02:00
|
|
|
|
2018-08-23 02:08:39 +02:00
|
|
|
USB_Init();
|
|
|
|
USB_Connect(TRUE);
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2017-11-18 09:08:03 +01:00
|
|
|
const uint32_t usb_timeout = millis() + 2000;
|
|
|
|
while (!USB_Configuration && PENDING(millis(), usb_timeout)) {
|
2017-06-17 23:19:42 +02:00
|
|
|
delay(50);
|
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();
|
2017-08-14 21:40:13 +02:00
|
|
|
LPC1768_PWM_init();
|
2017-06-17 23:19:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TARGET_LPC1768
|