Firmware2/Marlin/src/HAL/HAL_LPC1768/main.cpp

121 lines
3.0 KiB
C++
Raw Normal View History

2017-06-17 23:19:42 +02:00
#ifdef TARGET_LPC1768
// ---------------------
// Userspace entry point
// ---------------------
extern void setup();
extern void loop();
extern "C" {
2018-08-23 00:15:32 +02:00
#include <lpc17xx_gpio.h>
2017-06-17 23:19:42 +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>
2017-06-17 23:19:42 +02:00
extern "C" {
2018-08-23 00:15:32 +02:00
#include <debug_frmwrk.h>
#include <chanfs/diskio.h>
#include <chanfs/ff.h>
2017-06-17 23:19:42 +02:00
}
#include "../../inc/MarlinConfig.h"
#include "HAL.h"
2017-06-17 23:19:42 +02:00
#include "fastio.h"
#include "HAL_timers.h"
#include <stdio.h>
#include <stdarg.h>
#include <Arduino.h>
2017-06-17 23:19:42 +02:00
#include "serial.h"
#include "LPC1768_PWM.h"
2017-06-17 23:19:42 +02:00
static __INLINE uint32_t SysTick_Config(uint32_t ticks) {
if (ticks > SysTick_LOAD_RELOAD_Msk) return 1;
2017-06-17 23:19:42 +02:00
SysTick->LOAD = (ticks & SysTick_LOAD_RELOAD_Msk) - 1; // Set reload register
SysTick->VAL = 0; // Load the SysTick Counter Value
2017-06-17 23:19:42 +02:00
SysTick->CTRL = SysTick_CTRL_CLKSOURCE_Msk |
SysTick_CTRL_TICKINT_Msk |
SysTick_CTRL_ENABLE_Msk; // Enable SysTick IRQ and SysTick Timer
NVIC_SetPriority(SysTick_IRQn, NVIC_EncodePriority(0, 0, 0)); // Set Priority for Cortex-M3 System Interrupts
return 0;
2017-06-17 23:19:42 +02:00
}
2017-06-17 23:19:42 +02:00
extern "C" {
extern int isLPC1769();
extern void disk_timerproc(void);
volatile uint32_t _millis;
2017-06-17 23:19:42 +02:00
void SysTick_Handler(void) {
++_millis;
disk_timerproc();
2017-06-17 23:19:42 +02:00
}
// Runs after clock init and before global static constructors
void SystemPostInit() {
2018-08-23 00:14:38 +02:00
_millis = 0; // Initialize the millisecond counter value
SysTick_Config(SystemCoreClock / 1000); // Start millisecond global counter
2018-08-23 00:15:32 +02:00
// Runs before setup() to configure LED_PIN and used to indicate successful bootloader execution
#if PIN_EXISTS(LED)
SET_DIR_OUTPUT(LED_PIN);
WRITE_PIN_CLR(LED_PIN);
2018-08-23 00:15:32 +02:00
// 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);
2018-08-23 00:15:32 +02:00
for (uint8_t i = 6; i--;) {
TOGGLE(LED_PIN);
delay(100);
}
#endif
}
}
2017-06-17 23:19:42 +02:00
extern uint32_t MSC_SD_Init(uint8_t pdrv);
2017-06-17 23:19:42 +02:00
int main(void) {
(void)MSC_SD_Init(0);
2017-06-17 23:19:42 +02:00
USB_Init(); // USB Initialization
USB_Connect(TRUE); // USB Connect
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);
#if PIN_EXISTS(LED)
2018-08-23 00:14:38 +02:00
TOGGLE(LED_PIN); // Flash quickly during USB initialization
#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();
#endif
2017-06-17 23:19:42 +02:00
HAL_timer_init();
LPC1768_PWM_init();
2017-06-17 23:19:42 +02:00
setup();
2018-02-22 01:43:42 +01:00
for (;;) loop();
2017-06-17 23:19:42 +02:00
}
#endif // TARGET_LPC1768