2017-09-27 00:30:23 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
*
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-27 00:30:23 -05:00
|
|
|
* Copyright (c) 2016 Bob Cousins bobcousins42@googlemail.com
|
|
|
|
* Copyright (c) 2015-2016 Nico Tonnhofer wurstnase.reprap@gmail.com
|
|
|
|
* Copyright (c) 2017 Victor Perez
|
|
|
|
*
|
|
|
|
* 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
|
2020-07-23 05:20:14 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2017-09-27 00:30:23 -05:00
|
|
|
*
|
|
|
|
*/
|
2018-11-04 02:25:55 -06:00
|
|
|
#pragma once
|
2017-09-27 00:30:23 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* HAL for stm32duino.com based on Libmaple and compatible (STM32F1)
|
|
|
|
*/
|
|
|
|
|
2018-04-13 02:25:08 +01:00
|
|
|
#define CPU_32_BIT
|
2017-09-27 00:30:23 -05:00
|
|
|
|
2019-05-06 05:06:30 +02:00
|
|
|
#include "../../core/macros.h"
|
2019-05-02 00:45:50 -05:00
|
|
|
#include "../shared/Marduino.h"
|
2018-08-14 01:28:52 -07:00
|
|
|
#include "../shared/math_32bit.h"
|
|
|
|
#include "../shared/HAL_SPI.h"
|
2018-04-13 02:25:08 +01:00
|
|
|
|
2019-09-02 19:49:58 -05:00
|
|
|
#include "fastio.h"
|
|
|
|
#include "watchdog.h"
|
2017-09-27 00:30:23 -05:00
|
|
|
|
2019-05-02 00:45:50 -05:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <util/atomic.h>
|
|
|
|
|
2019-03-08 16:21:32 +08:00
|
|
|
#include "../../inc/MarlinConfigPre.h"
|
2019-09-13 01:35:27 +02:00
|
|
|
|
2020-11-18 02:48:14 -03:00
|
|
|
#if HAS_SD_HOST_DRIVE
|
2019-09-13 01:35:27 +02:00
|
|
|
#include "msc_sd.h"
|
|
|
|
#endif
|
2017-11-07 08:03:59 +03:00
|
|
|
|
2020-09-06 19:23:36 -03:00
|
|
|
#include "MarlinSerial.h"
|
|
|
|
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2017-09-27 00:30:23 -05:00
|
|
|
// Defines
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2017-09-27 00:30:23 -05:00
|
|
|
|
2021-08-28 15:27:52 -05:00
|
|
|
//
|
|
|
|
// Default graphical display delays
|
|
|
|
//
|
2021-09-05 17:21:25 -07:00
|
|
|
#define CPU_ST7920_DELAY_1 300
|
|
|
|
#define CPU_ST7920_DELAY_2 40
|
|
|
|
#define CPU_ST7920_DELAY_3 340
|
2021-08-28 15:27:52 -05:00
|
|
|
|
2019-11-15 00:51:26 -08:00
|
|
|
#ifndef STM32_FLASH_SIZE
|
2021-04-13 12:14:34 +10:00
|
|
|
#if ANY(MCU_STM32F103RE, MCU_STM32F103VE, MCU_STM32F103ZE)
|
2019-11-15 00:51:26 -08:00
|
|
|
#define STM32_FLASH_SIZE 512
|
|
|
|
#else
|
|
|
|
#define STM32_FLASH_SIZE 256
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2019-03-08 16:21:32 +08:00
|
|
|
#ifdef SERIAL_USB
|
2021-03-10 12:05:05 -06:00
|
|
|
typedef ForwardSerial1Class< USBSerial > DefaultSerial1;
|
|
|
|
extern DefaultSerial1 MSerial0;
|
2021-05-06 22:39:34 -05:00
|
|
|
#if HAS_SD_HOST_DRIVE
|
2019-09-08 02:27:23 -05:00
|
|
|
#define UsbSerial MarlinCompositeSerial
|
2021-05-06 22:39:34 -05:00
|
|
|
#else
|
|
|
|
#define UsbSerial MSerial0
|
2019-09-08 02:27:23 -05:00
|
|
|
#endif
|
2019-03-08 16:21:32 +08:00
|
|
|
#endif
|
|
|
|
|
2020-09-24 18:28:48 -07:00
|
|
|
#define _MSERIAL(X) MSerial##X
|
|
|
|
#define MSERIAL(X) _MSERIAL(X)
|
|
|
|
|
|
|
|
#if EITHER(STM32_HIGH_DENSITY, STM32_XL_DENSITY)
|
|
|
|
#define NUM_UARTS 5
|
|
|
|
#else
|
|
|
|
#define NUM_UARTS 3
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SERIAL_PORT == -1
|
2021-03-10 12:05:05 -06:00
|
|
|
#define MYSERIAL1 UsbSerial
|
2020-09-24 18:28:48 -07:00
|
|
|
#elif WITHIN(SERIAL_PORT, 1, NUM_UARTS)
|
2021-03-10 12:05:05 -06:00
|
|
|
#define MYSERIAL1 MSERIAL(SERIAL_PORT)
|
2020-01-02 17:59:06 -06:00
|
|
|
#else
|
2021-03-18 22:49:04 -05:00
|
|
|
#define MYSERIAL1 MSERIAL(1) // dummy port
|
2021-05-06 22:39:34 -05:00
|
|
|
static_assert(false, "SERIAL_PORT must be from 1 to " STRINGIFY(NUM_UARTS) ". You can also use -1 if the board supports Native USB.")
|
2017-11-05 08:49:38 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SERIAL_PORT_2
|
2020-09-24 18:28:48 -07:00
|
|
|
#if SERIAL_PORT_2 == -1
|
2021-03-10 12:05:05 -06:00
|
|
|
#define MYSERIAL2 UsbSerial
|
2020-09-24 18:28:48 -07:00
|
|
|
#elif WITHIN(SERIAL_PORT_2, 1, NUM_UARTS)
|
2021-03-10 12:05:05 -06:00
|
|
|
#define MYSERIAL2 MSERIAL(SERIAL_PORT_2)
|
2020-01-02 17:59:06 -06:00
|
|
|
#else
|
2021-03-18 22:49:04 -05:00
|
|
|
#define MYSERIAL2 MSERIAL(1) // dummy port
|
2021-05-06 22:39:34 -05:00
|
|
|
static_assert(false, "SERIAL_PORT_2 must be from 1 to " STRINGIFY(NUM_UARTS) ". You can also use -1 if the board supports Native USB.")
|
2021-01-16 03:38:34 +01:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2021-05-07 17:31:45 +12:00
|
|
|
#ifdef SERIAL_PORT_3
|
|
|
|
#if SERIAL_PORT_3 == -1
|
|
|
|
#define MYSERIAL3 UsbSerial
|
|
|
|
#elif WITHIN(SERIAL_PORT_3, 1, NUM_UARTS)
|
|
|
|
#define MYSERIAL3 MSERIAL(SERIAL_PORT_3)
|
|
|
|
#else
|
|
|
|
#define MYSERIAL3 MSERIAL(1) // dummy port
|
|
|
|
static_assert(false, "SERIAL_PORT_3 must be from 1 to " STRINGIFY(NUM_UARTS) ". You can also use -1 if the board supports Native USB.")
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2021-01-16 03:38:34 +01:00
|
|
|
#ifdef MMU2_SERIAL_PORT
|
|
|
|
#if MMU2_SERIAL_PORT == -1
|
|
|
|
#define MMU2_SERIAL UsbSerial
|
|
|
|
#elif WITHIN(MMU2_SERIAL_PORT, 1, NUM_UARTS)
|
|
|
|
#define MMU2_SERIAL MSERIAL(MMU2_SERIAL_PORT)
|
|
|
|
#else
|
2021-03-18 22:49:04 -05:00
|
|
|
#define MMU2_SERIAL MSERIAL(1) // dummy port
|
2021-05-06 22:39:34 -05:00
|
|
|
static_assert(false, "MMU2_SERIAL_PORT must be from 1 to " STRINGIFY(NUM_UARTS) ". You can also use -1 if the board supports Native USB.")
|
2017-11-05 08:49:38 -06:00
|
|
|
#endif
|
2017-09-27 00:30:23 -05:00
|
|
|
#endif
|
|
|
|
|
2020-09-24 18:28:48 -07:00
|
|
|
#ifdef LCD_SERIAL_PORT
|
|
|
|
#if LCD_SERIAL_PORT == -1
|
|
|
|
#define LCD_SERIAL UsbSerial
|
|
|
|
#elif WITHIN(LCD_SERIAL_PORT, 1, NUM_UARTS)
|
|
|
|
#define LCD_SERIAL MSERIAL(LCD_SERIAL_PORT)
|
2020-01-04 11:00:44 +08:00
|
|
|
#else
|
2021-03-18 22:49:04 -05:00
|
|
|
#define LCD_SERIAL MSERIAL(1) // dummy port
|
2021-05-06 22:39:34 -05:00
|
|
|
static_assert(false, "LCD_SERIAL_PORT must be from 1 to " STRINGIFY(NUM_UARTS) ". You can also use -1 if the board supports Native USB.")
|
2020-01-04 11:00:44 +08:00
|
|
|
#endif
|
2021-01-13 02:05:49 +02:00
|
|
|
#if HAS_DGUS_LCD
|
|
|
|
#define SERIAL_GET_TX_BUFFER_FREE() LCD_SERIAL.availableForWrite()
|
|
|
|
#endif
|
2020-01-04 11:00:44 +08:00
|
|
|
#endif
|
|
|
|
|
2019-06-27 16:29:17 -05:00
|
|
|
// Set interrupt grouping for this MCU
|
2019-09-16 20:31:08 -05:00
|
|
|
void HAL_init();
|
2019-09-08 02:27:23 -05:00
|
|
|
#define HAL_IDLETASK 1
|
2019-09-16 20:31:08 -05:00
|
|
|
void HAL_idletask();
|
2018-04-25 22:21:16 -07:00
|
|
|
|
2017-09-27 00:30:23 -05:00
|
|
|
/**
|
|
|
|
* TODO: review this to return 1 for pins that are not analog input
|
|
|
|
*/
|
|
|
|
#ifndef analogInputToDigitalPin
|
|
|
|
#define analogInputToDigitalPin(p) (p)
|
|
|
|
#endif
|
|
|
|
|
2019-03-29 20:40:24 +03:00
|
|
|
#ifndef digitalPinHasPWM
|
2020-10-24 17:13:10 -05:00
|
|
|
#define digitalPinHasPWM(P) !!PIN_MAP[P].timer_device
|
2020-03-22 00:19:05 -05:00
|
|
|
#define NO_COMPILE_TIME_PWM
|
2019-03-29 20:40:24 +03:00
|
|
|
#endif
|
|
|
|
|
2020-02-11 01:13:02 -06:00
|
|
|
#define CRITICAL_SECTION_START() uint32_t primask = __get_primask(); (void)__iCliRetVal()
|
|
|
|
#define CRITICAL_SECTION_END() if (!primask) (void)__iSeiRetVal()
|
2018-06-11 22:09:36 -05:00
|
|
|
#define ISRS_ENABLED() (!__get_primask())
|
2018-06-12 04:00:56 +03:00
|
|
|
#define ENABLE_ISRS() ((void)__iSeiRetVal())
|
|
|
|
#define DISABLE_ISRS() ((void)__iCliRetVal())
|
2017-09-27 00:30:23 -05:00
|
|
|
|
|
|
|
// On AVR this is in math.h?
|
|
|
|
#define square(x) ((x)*(x))
|
|
|
|
|
|
|
|
#define RST_POWER_ON 1
|
|
|
|
#define RST_EXTERNAL 2
|
|
|
|
#define RST_BROWN_OUT 4
|
|
|
|
#define RST_WATCHDOG 8
|
|
|
|
#define RST_JTAG 16
|
|
|
|
#define RST_SOFTWARE 32
|
|
|
|
#define RST_BACKUP 64
|
|
|
|
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2017-09-27 00:30:23 -05:00
|
|
|
// Types
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2017-09-27 00:30:23 -05:00
|
|
|
|
2017-10-26 13:37:26 -05:00
|
|
|
typedef int8_t pin_t;
|
|
|
|
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2017-09-27 00:30:23 -05:00
|
|
|
// Public Variables
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2017-09-27 00:30:23 -05:00
|
|
|
|
2019-08-06 04:46:30 -05:00
|
|
|
// Result of last ADC conversion
|
2017-09-27 00:30:23 -05:00
|
|
|
extern uint16_t HAL_adc_result;
|
|
|
|
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2017-09-27 00:30:23 -05:00
|
|
|
// Public functions
|
2019-07-09 22:30:06 -05:00
|
|
|
// ------------------------
|
2017-09-27 00:30:23 -05:00
|
|
|
|
|
|
|
// Disable interrupts
|
|
|
|
#define cli() noInterrupts()
|
|
|
|
|
|
|
|
// Enable interrupts
|
|
|
|
#define sei() interrupts()
|
|
|
|
|
|
|
|
// Memory related
|
|
|
|
#define __bss_end __bss_end__
|
|
|
|
|
2019-08-06 04:46:30 -05:00
|
|
|
// Clear reset reason
|
2019-09-16 20:31:08 -05:00
|
|
|
void HAL_clear_reset_source();
|
2017-09-27 00:30:23 -05:00
|
|
|
|
2019-08-06 04:46:30 -05:00
|
|
|
// Reset reason
|
2019-09-16 20:31:08 -05:00
|
|
|
uint8_t HAL_get_reset_source();
|
2017-09-27 00:30:23 -05:00
|
|
|
|
2021-04-24 09:53:52 +02:00
|
|
|
void HAL_reboot();
|
2020-10-09 08:25:23 -03:00
|
|
|
|
2017-09-27 00:30:23 -05:00
|
|
|
void _delay_ms(const int delay);
|
|
|
|
|
2020-12-15 00:53:53 -06:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wunused-function"
|
2019-08-06 04:46:30 -05:00
|
|
|
|
2017-09-27 00:30:23 -05:00
|
|
|
/*
|
|
|
|
extern "C" {
|
2019-09-16 20:31:08 -05:00
|
|
|
int freeMemory();
|
2017-09-27 00:30:23 -05:00
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern "C" char* _sbrk(int incr);
|
2019-08-06 04:46:30 -05:00
|
|
|
|
2020-11-29 12:57:05 -08:00
|
|
|
static inline int freeMemory() {
|
2017-09-27 00:30:23 -05:00
|
|
|
volatile char top;
|
2020-11-29 12:57:05 -08:00
|
|
|
return &top - _sbrk(0);
|
2017-09-27 00:30:23 -05:00
|
|
|
}
|
|
|
|
|
2020-12-15 00:53:53 -06:00
|
|
|
#pragma GCC diagnostic pop
|
2019-02-25 22:51:14 -06:00
|
|
|
|
2019-02-20 06:13:07 -06:00
|
|
|
//
|
2017-09-27 00:30:23 -05:00
|
|
|
// ADC
|
2019-02-20 06:13:07 -06:00
|
|
|
//
|
2017-09-27 00:30:23 -05:00
|
|
|
|
|
|
|
#define HAL_ANALOG_SELECT(pin) pinMode(pin, INPUT_ANALOG);
|
|
|
|
|
2019-09-16 20:31:08 -05:00
|
|
|
void HAL_adc_init();
|
2017-09-27 00:30:23 -05:00
|
|
|
|
2020-06-18 15:23:03 -05:00
|
|
|
#define HAL_ADC_VREF 3.3
|
2019-11-07 02:49:17 +03:00
|
|
|
#define HAL_ADC_RESOLUTION 10
|
2020-06-18 15:23:03 -05:00
|
|
|
#define HAL_START_ADC(pin) HAL_adc_start_conversion(pin)
|
2018-07-26 09:59:19 +01:00
|
|
|
#define HAL_READ_ADC() HAL_adc_result
|
|
|
|
#define HAL_ADC_READY() true
|
2017-09-27 00:30:23 -05:00
|
|
|
|
|
|
|
void HAL_adc_start_conversion(const uint8_t adc_pin);
|
2019-09-16 20:31:08 -05:00
|
|
|
uint16_t HAL_adc_get_result();
|
2017-09-27 00:30:23 -05:00
|
|
|
|
2019-06-21 08:20:17 +02:00
|
|
|
uint16_t analogRead(pin_t pin); // need HAL_ANALOG_SELECT() first
|
|
|
|
void analogWrite(pin_t pin, int pwm_val8); // PWM only! mul by 257 in maple!?
|
|
|
|
|
2017-10-26 13:37:26 -05:00
|
|
|
#define GET_PIN_MAP_PIN(index) index
|
|
|
|
#define GET_PIN_MAP_INDEX(pin) pin
|
|
|
|
#define PARSED_PIN_INDEX(code, dval) parser.intval(code, dval)
|
|
|
|
|
2018-09-30 03:00:49 +03:00
|
|
|
#define JTAG_DISABLE() afio_cfg_debug_ports(AFIO_DEBUG_SW_ONLY)
|
|
|
|
#define JTAGSWD_DISABLE() afio_cfg_debug_ports(AFIO_DEBUG_NONE)
|
2019-09-11 19:12:58 +02:00
|
|
|
|
|
|
|
#define PLATFORM_M997_SUPPORT
|
2020-03-23 17:11:00 -05:00
|
|
|
void flashFirmware(const int16_t);
|
2020-10-30 00:17:04 +02:00
|
|
|
|
|
|
|
#define HAL_CAN_SET_PWM_FREQ // This HAL supports PWM Frequency adjustment
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set_pwm_frequency
|
|
|
|
* Set the frequency of the timer corresponding to the provided pin
|
|
|
|
* All Timer PWM pins run at the same frequency
|
|
|
|
*/
|
|
|
|
void set_pwm_frequency(const pin_t pin, int f_desired);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set_pwm_duty
|
|
|
|
* Set the PWM duty cycle of the provided pin to the provided value
|
|
|
|
* Optionally allows inverting the duty cycle [default = false]
|
|
|
|
* Optionally allows changing the maximum size of the provided value to enable finer PWM duty control [default = 255]
|
|
|
|
*/
|
|
|
|
void set_pwm_duty(const pin_t pin, const uint16_t v, const uint16_t v_size=255, const bool invert=false);
|