2017-06-17 21:19:42 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef TARGET_LPC1768
|
2017-09-06 11:28:32 +00:00
|
|
|
|
2017-10-26 18:37:26 +00:00
|
|
|
#include "LPC1768_PWM.h"
|
2017-06-17 21:19:42 +00:00
|
|
|
#include <lpc17xx_pinsel.h>
|
|
|
|
|
2017-11-19 19:59:40 +00:00
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
2017-06-17 21:19:42 +00:00
|
|
|
// Interrupts
|
|
|
|
void cli(void) { __disable_irq(); } // Disable
|
|
|
|
void sei(void) { __enable_irq(); } // Enable
|
|
|
|
|
|
|
|
// Time functions
|
2017-09-27 09:57:33 +00:00
|
|
|
void _delay_ms(const int delay_ms) {
|
2017-09-27 08:47:23 +00:00
|
|
|
delay(delay_ms);
|
2017-06-17 21:19:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t millis() {
|
|
|
|
return _millis;
|
|
|
|
}
|
|
|
|
|
|
|
|
void delayMicroseconds(uint32_t us) {
|
2017-08-05 00:20:01 +00:00
|
|
|
static const int nop_factor = (SystemCoreClock / 11000000);
|
2017-06-17 21:19:42 +00:00
|
|
|
static volatile int loops = 0;
|
2017-08-05 00:20:01 +00:00
|
|
|
|
|
|
|
//previous ops already burned most of 1us, burn the rest
|
|
|
|
loops = nop_factor / 4; //measured at 1us
|
|
|
|
while (loops > 0) --loops;
|
|
|
|
|
|
|
|
if (us < 2) return;
|
|
|
|
us--;
|
|
|
|
|
|
|
|
//redirect to delay for large values, then set new delay to remainder
|
|
|
|
if (us > 1000) {
|
|
|
|
delay(us / 1000);
|
|
|
|
us = us % 1000;
|
|
|
|
}
|
|
|
|
|
2017-10-04 20:40:54 +00:00
|
|
|
// burn cycles, time in interrupts will not be taken into account
|
|
|
|
loops = us * nop_factor;
|
|
|
|
while (loops > 0) --loops;
|
2017-06-17 21:19:42 +00:00
|
|
|
}
|
|
|
|
|
2017-09-27 08:47:23 +00:00
|
|
|
extern "C" void delay(const int msec) {
|
|
|
|
volatile millis_t end = _millis + msec;
|
|
|
|
SysTick->VAL = SysTick->LOAD; // reset systick counter so next systick is in exactly 1ms
|
|
|
|
// this could extend the time between systicks by upto 1ms
|
|
|
|
while PENDING(_millis, end) __WFE();
|
2017-06-17 21:19:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IO functions
|
|
|
|
// As defined by Arduino INPUT(0x0), OUPUT(0x1), INPUT_PULLUP(0x2)
|
2017-10-26 18:37:26 +00:00
|
|
|
void pinMode(pin_t pin, uint8_t mode) {
|
2017-11-19 20:12:45 +00:00
|
|
|
if (!VALID_PIN(pin)) return;
|
2017-06-17 21:19:42 +00:00
|
|
|
|
2017-10-26 18:37:26 +00:00
|
|
|
PINSEL_CFG_Type config = { LPC1768_PIN_PORT(pin),
|
|
|
|
LPC1768_PIN_PIN(pin),
|
2017-06-17 21:19:42 +00:00
|
|
|
PINSEL_FUNC_0,
|
|
|
|
PINSEL_PINMODE_TRISTATE,
|
|
|
|
PINSEL_PINMODE_NORMAL };
|
|
|
|
switch(mode) {
|
|
|
|
case INPUT:
|
2017-10-26 18:37:26 +00:00
|
|
|
LPC_GPIO(LPC1768_PIN_PORT(pin))->FIODIR &= ~LPC_PIN(LPC1768_PIN_PIN(pin));
|
2017-06-17 21:19:42 +00:00
|
|
|
PINSEL_ConfigPin(&config);
|
|
|
|
break;
|
|
|
|
case OUTPUT:
|
2017-10-26 18:37:26 +00:00
|
|
|
LPC_GPIO(LPC1768_PIN_PORT(pin))->FIODIR |= LPC_PIN(LPC1768_PIN_PIN(pin));
|
2017-06-17 21:19:42 +00:00
|
|
|
PINSEL_ConfigPin(&config);
|
|
|
|
break;
|
|
|
|
case INPUT_PULLUP:
|
2017-10-26 18:37:26 +00:00
|
|
|
LPC_GPIO(LPC1768_PIN_PORT(pin))->FIODIR &= ~LPC_PIN(LPC1768_PIN_PIN(pin));
|
2017-06-17 21:19:42 +00:00
|
|
|
config.Pinmode = PINSEL_PINMODE_PULLUP;
|
|
|
|
PINSEL_ConfigPin(&config);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-26 18:37:26 +00:00
|
|
|
void digitalWrite(pin_t pin, uint8_t pin_status) {
|
2017-11-19 20:12:45 +00:00
|
|
|
if (!VALID_PIN(pin)) return;
|
2017-06-17 21:19:42 +00:00
|
|
|
|
|
|
|
if (pin_status)
|
2017-10-26 18:37:26 +00:00
|
|
|
LPC_GPIO(LPC1768_PIN_PORT(pin))->FIOSET = LPC_PIN(LPC1768_PIN_PIN(pin));
|
2017-06-17 21:19:42 +00:00
|
|
|
else
|
2017-10-26 18:37:26 +00:00
|
|
|
LPC_GPIO(LPC1768_PIN_PORT(pin))->FIOCLR = LPC_PIN(LPC1768_PIN_PIN(pin));
|
2017-08-08 02:19:15 +00:00
|
|
|
|
|
|
|
pinMode(pin, OUTPUT); // Set pin mode on every write (Arduino version does this)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Must be done AFTER the output state is set. Doing this before will cause a
|
|
|
|
* 2uS glitch if writing a "1".
|
|
|
|
*
|
|
|
|
* When the Port Direction bit is written to a "1" the output is immediately set
|
|
|
|
* to the value of the FIOPIN bit which is "0" because of power up defaults.
|
|
|
|
*/
|
2017-06-17 21:19:42 +00:00
|
|
|
}
|
|
|
|
|
2017-10-26 18:37:26 +00:00
|
|
|
bool digitalRead(pin_t pin) {
|
2017-11-19 20:12:45 +00:00
|
|
|
if (!VALID_PIN(pin)) return false;
|
|
|
|
|
2017-10-26 18:37:26 +00:00
|
|
|
return LPC_GPIO(LPC1768_PIN_PORT(pin))->FIOPIN & LPC_PIN(LPC1768_PIN_PIN(pin)) ? 1 : 0;
|
2017-06-17 21:19:42 +00:00
|
|
|
}
|
|
|
|
|
2017-10-26 18:37:26 +00:00
|
|
|
void analogWrite(pin_t pin, int pwm_value) { // 1 - 254: pwm_value, 0: LOW, 255: HIGH
|
2017-11-19 20:12:45 +00:00
|
|
|
if (!VALID_PIN(pin)) return;
|
|
|
|
|
2017-08-14 19:40:13 +00:00
|
|
|
#define MR0_MARGIN 200 // if channel value too close to MR0 the system locks up
|
|
|
|
|
|
|
|
static bool out_of_PWM_slots = false;
|
|
|
|
|
|
|
|
uint value = MAX(MIN(pwm_value, 255), 0);
|
|
|
|
if (value == 0 || value == 255) { // treat as digital pin
|
|
|
|
LPC1768_PWM_detach_pin(pin); // turn off PWM
|
|
|
|
digitalWrite(pin, value);
|
|
|
|
}
|
|
|
|
else {
|
2018-01-01 22:27:19 +00:00
|
|
|
if (LPC1768_PWM_attach_pin(pin, 1, LPC_PWM1->MR0, 0xff))
|
|
|
|
LPC1768_PWM_write(pin, map(value, 0, 255, 1, LPC_PWM1->MR0)); // map 1-254 onto PWM range
|
2017-08-14 19:40:13 +00:00
|
|
|
else { // out of PWM channels
|
2017-10-24 22:28:33 +00:00
|
|
|
if (!out_of_PWM_slots) MYSERIAL.printf(".\nWARNING - OUT OF PWM CHANNELS\n.\n"); //only warn once
|
2017-08-14 19:40:13 +00:00
|
|
|
out_of_PWM_slots = true;
|
|
|
|
digitalWrite(pin, value); // treat as a digital pin if out of channels
|
2017-08-13 14:50:12 +00:00
|
|
|
}
|
2017-06-17 21:19:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern bool HAL_adc_finished();
|
|
|
|
|
2017-10-26 18:37:26 +00:00
|
|
|
uint16_t analogRead(pin_t adc_pin) {
|
2017-06-17 21:19:42 +00:00
|
|
|
HAL_adc_start_conversion(adc_pin);
|
|
|
|
while (!HAL_adc_finished()); // Wait for conversion to finish
|
|
|
|
return HAL_adc_get_result();
|
|
|
|
}
|
|
|
|
|
|
|
|
// **************************
|
|
|
|
// Persistent Config Storage
|
|
|
|
// **************************
|
|
|
|
|
|
|
|
void eeprom_write_byte(unsigned char *pos, unsigned char value) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char eeprom_read_byte(uint8_t * pos) { return '\0'; }
|
|
|
|
|
|
|
|
void eeprom_read_block (void *__dst, const void *__src, size_t __n) { }
|
|
|
|
|
|
|
|
void eeprom_update_block (const void *__src, void *__dst, size_t __n) { }
|
|
|
|
|
|
|
|
char *dtostrf (double __val, signed char __width, unsigned char __prec, char *__s) {
|
|
|
|
char format_string[20];
|
|
|
|
snprintf(format_string, 20, "%%%d.%df", __width, __prec);
|
|
|
|
sprintf(__s, format_string, __val);
|
|
|
|
return __s;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t random(int32_t max) {
|
|
|
|
return rand() % max;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t random(int32_t min, int32_t max) {
|
|
|
|
return min + rand() % (max - min);
|
|
|
|
}
|
|
|
|
|
|
|
|
void randomSeed(uint32_t value) {
|
|
|
|
srand(value);
|
|
|
|
}
|
|
|
|
|
2017-08-13 14:50:12 +00:00
|
|
|
int map(uint16_t x, uint16_t in_min, uint16_t in_max, uint16_t out_min, uint16_t out_max) {
|
|
|
|
return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min;
|
|
|
|
}
|
|
|
|
|
2017-06-17 21:19:42 +00:00
|
|
|
#endif // TARGET_LPC1768
|