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-22 22:20:14 -05: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-12 20:25:08 -05:00
|
|
|
#define CPU_32_BIT
|
2017-09-27 00:30:23 -05:00
|
|
|
|
2019-05-05 22:06:30 -05:00
|
|
|
#include "../../core/macros.h"
|
2019-05-02 00:45:50 -05:00
|
|
|
#include "../shared/Marduino.h"
|
2018-08-14 03:28:52 -05:00
|
|
|
#include "../shared/math_32bit.h"
|
|
|
|
#include "../shared/HAL_SPI.h"
|
2018-04-12 20:25:08 -05: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 02:21:32 -06:00
|
|
|
#include "../../inc/MarlinConfigPre.h"
|
2019-09-12 18:35:27 -05:00
|
|
|
|
|
|
|
#ifdef USE_USB_COMPOSITE
|
|
|
|
#include "msc_sd.h"
|
|
|
|
#endif
|
2017-11-06 23:03:59 -06:00
|
|
|
|
2020-09-06 17:23:36 -05: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
|
|
|
|
2019-11-15 02:51:26 -06:00
|
|
|
#ifndef STM32_FLASH_SIZE
|
2020-09-23 19:45:33 -05:00
|
|
|
#if EITHER(MCU_STM32F103RE, MCU_STM32F103VE)
|
2019-11-15 02:51:26 -06:00
|
|
|
#define STM32_FLASH_SIZE 512
|
|
|
|
#else
|
|
|
|
#define STM32_FLASH_SIZE 256
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2019-03-08 02:21:32 -06:00
|
|
|
#ifdef SERIAL_USB
|
2019-09-08 02:27:23 -05:00
|
|
|
#ifndef USE_USB_COMPOSITE
|
|
|
|
#define UsbSerial Serial
|
|
|
|
#else
|
|
|
|
#define UsbSerial MarlinCompositeSerial
|
|
|
|
#endif
|
2019-03-08 02:21:32 -06:00
|
|
|
#endif
|
|
|
|
|
2020-09-24 20:28:48 -05: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
|
2019-03-08 02:21:32 -06:00
|
|
|
#define MYSERIAL0 UsbSerial
|
2020-09-24 20:28:48 -05:00
|
|
|
#elif WITHIN(SERIAL_PORT, 1, NUM_UARTS)
|
|
|
|
#define MYSERIAL0 MSERIAL(SERIAL_PORT)
|
|
|
|
#elif NUM_UARTS == 5
|
|
|
|
#error "SERIAL_PORT must be -1 or from 1 to 5. Please update your configuration."
|
2020-01-02 17:59:06 -06:00
|
|
|
#else
|
2020-09-24 20:28:48 -05:00
|
|
|
#error "SERIAL_PORT must be -1 or from 1 to 3. Please update your configuration."
|
2017-11-05 08:49:38 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SERIAL_PORT_2
|
2020-09-24 20:28:48 -05:00
|
|
|
#if SERIAL_PORT_2 == -1
|
2019-03-08 02:21:32 -06:00
|
|
|
#define MYSERIAL1 UsbSerial
|
2020-09-24 20:28:48 -05:00
|
|
|
#elif WITHIN(SERIAL_PORT_2, 1, NUM_UARTS)
|
|
|
|
#define MYSERIAL1 MSERIAL(SERIAL_PORT_2)
|
|
|
|
#elif NUM_UARTS == 5
|
|
|
|
#error "SERIAL_PORT_2 must be -1 or from 1 to 5. Please update your configuration."
|
2020-01-02 17:59:06 -06:00
|
|
|
#else
|
2020-09-24 20:28:48 -05:00
|
|
|
#error "SERIAL_PORT_2 must be -1 or from 1 to 3. Please update your configuration."
|
2017-11-05 08:49:38 -06:00
|
|
|
#endif
|
2017-09-27 00:30:23 -05:00
|
|
|
#endif
|
|
|
|
|
2020-09-24 20:28:48 -05: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)
|
|
|
|
#elif NUM_UARTS == 5
|
|
|
|
#error "LCD_SERIAL_PORT must be -1 or from 1 to 5. Please update your configuration."
|
2020-01-03 21:00:44 -06:00
|
|
|
#else
|
2020-09-24 20:28:48 -05:00
|
|
|
#error "LCD_SERIAL_PORT must be -1 or from 1 to 3. Please update your configuration."
|
2020-01-03 21:00:44 -06:00
|
|
|
#endif
|
|
|
|
#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-26 00:21:16 -05: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 12:40:24 -05: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 12:40:24 -05: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-11 20:00:56 -05: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))
|
|
|
|
|
|
|
|
#ifndef strncpy_P
|
|
|
|
#define strncpy_P(dest, src, num) strncpy((dest), (src), (num))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Fix bug in pgm_read_ptr
|
|
|
|
#undef pgm_read_ptr
|
|
|
|
#define pgm_read_ptr(addr) (*(addr))
|
|
|
|
|
|
|
|
#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
|
|
|
|
2020-10-09 06:25:23 -05:00
|
|
|
inline void HAL_reboot() {} // reboot the board or restart the bootloader
|
|
|
|
|
2017-09-27 00:30:23 -05:00
|
|
|
void _delay_ms(const int delay);
|
|
|
|
|
2019-08-06 04:46:30 -05:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wunused-function"
|
|
|
|
|
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
|
|
|
|
2017-09-27 00:30:23 -05:00
|
|
|
/*
|
|
|
|
static int freeMemory() {
|
|
|
|
volatile int top;
|
|
|
|
top = (int)((char*)&top - reinterpret_cast<char*>(_sbrk(0)));
|
|
|
|
return top;
|
|
|
|
}
|
|
|
|
*/
|
2019-02-25 22:51:14 -06:00
|
|
|
|
2017-09-27 00:30:23 -05:00
|
|
|
static int freeMemory() {
|
|
|
|
volatile char top;
|
|
|
|
return &top - reinterpret_cast<char*>(_sbrk(0));
|
|
|
|
}
|
|
|
|
|
2019-02-25 22:51:14 -06:00
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
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-06 17:49:17 -06: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 03:59:19 -05: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 01:20:17 -05: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-29 19:00:49 -05: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 12:12:58 -05:00
|
|
|
|
|
|
|
#define PLATFORM_M997_SUPPORT
|
2020-03-23 17:11:00 -05:00
|
|
|
void flashFirmware(const int16_t);
|