2017-09-27 00:30:23 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
*
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2019 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
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-09-02 19:49:58 -05:00
|
|
|
#include "timers.h"
|
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
|
|
|
|
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-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
|
|
|
#define MSerial1 Serial1
|
|
|
|
#define MSerial2 Serial2
|
|
|
|
#define MSerial3 Serial3
|
|
|
|
#define MSerial4 Serial4
|
|
|
|
#define MSerial5 Serial5
|
|
|
|
#else
|
|
|
|
#define MSerial1 Serial
|
|
|
|
#define MSerial2 Serial1
|
|
|
|
#define MSerial3 Serial2
|
|
|
|
#define MSerial4 Serial3
|
|
|
|
#define MSerial5 Serial4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !WITHIN(SERIAL_PORT, -1, 5)
|
|
|
|
#error "SERIAL_PORT must be from -1 to 5"
|
2017-11-05 08:49:38 -06:00
|
|
|
#endif
|
2017-09-27 00:30:23 -05:00
|
|
|
#if SERIAL_PORT == -1
|
2019-03-08 02:21:32 -06:00
|
|
|
#define MYSERIAL0 UsbSerial
|
2017-09-27 00:30:23 -05:00
|
|
|
#elif SERIAL_PORT == 0
|
2019-03-08 02:21:32 -06:00
|
|
|
#error "Serial port 0 does not exist"
|
2017-09-27 00:30:23 -05:00
|
|
|
#elif SERIAL_PORT == 1
|
2019-03-08 02:21:32 -06:00
|
|
|
#define MYSERIAL0 MSerial1
|
2017-09-27 00:30:23 -05:00
|
|
|
#elif SERIAL_PORT == 2
|
2019-03-08 02:21:32 -06:00
|
|
|
#define MYSERIAL0 MSerial2
|
2017-09-27 00:30:23 -05:00
|
|
|
#elif SERIAL_PORT == 3
|
2019-03-08 02:21:32 -06:00
|
|
|
#define MYSERIAL0 MSerial3
|
|
|
|
#elif SERIAL_PORT == 4
|
|
|
|
#define MYSERIAL0 MSerial4
|
|
|
|
#elif SERIAL_PORT == 5
|
|
|
|
#define MYSERIAL0 MSerial5
|
2017-11-05 08:49:38 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SERIAL_PORT_2
|
2019-03-08 02:21:32 -06:00
|
|
|
#if !WITHIN(SERIAL_PORT_2, -1, 5)
|
|
|
|
#error "SERIAL_PORT_2 must be from -1 to 5"
|
2017-11-05 08:49:38 -06:00
|
|
|
#elif SERIAL_PORT_2 == SERIAL_PORT
|
|
|
|
#error "SERIAL_PORT_2 must be different than SERIAL_PORT"
|
|
|
|
#endif
|
|
|
|
#define NUM_SERIAL 2
|
|
|
|
#if SERIAL_PORT_2 == -1
|
2019-03-08 02:21:32 -06:00
|
|
|
#define MYSERIAL1 UsbSerial
|
2017-11-05 08:49:38 -06:00
|
|
|
#elif SERIAL_PORT_2 == 0
|
2019-03-08 02:21:32 -06:00
|
|
|
#error "Serial port 0 does not exist"
|
2017-11-05 08:49:38 -06:00
|
|
|
#elif SERIAL_PORT_2 == 1
|
2019-03-08 02:21:32 -06:00
|
|
|
#define MYSERIAL1 MSerial1
|
2017-11-05 08:49:38 -06:00
|
|
|
#elif SERIAL_PORT_2 == 2
|
2019-03-08 02:21:32 -06:00
|
|
|
#define MYSERIAL1 MSerial2
|
2017-11-05 08:49:38 -06:00
|
|
|
#elif SERIAL_PORT_2 == 3
|
2019-03-08 02:21:32 -06:00
|
|
|
#define MYSERIAL1 MSerial3
|
|
|
|
#elif SERIAL_PORT_2 == 4
|
|
|
|
#define MYSERIAL1 MSerial4
|
|
|
|
#elif SERIAL_PORT_2 == 5
|
|
|
|
#define MYSERIAL1 MSerial5
|
2017-11-05 08:49:38 -06:00
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#define NUM_SERIAL 1
|
2017-09-27 00:30:23 -05: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-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
|
2019-05-09 11:45:55 -05:00
|
|
|
#define digitalPinHasPWM(P) (PIN_MAP[P].timer_device != nullptr)
|
2019-03-29 12:40:24 -05:00
|
|
|
#endif
|
|
|
|
|
2018-06-11 20:00:56 -05: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
|
|
|
|
|
|
|
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
|
|
|
// EEPROM
|
2019-02-20 06:13:07 -06:00
|
|
|
//
|
2017-09-27 00:30:23 -05:00
|
|
|
|
|
|
|
/**
|
2019-02-20 06:13:07 -06:00
|
|
|
* TODO: Write all this EEPROM stuff. Can emulate EEPROM in flash as last resort.
|
|
|
|
* Wire library should work for i2c EEPROMs.
|
2017-09-27 00:30:23 -05:00
|
|
|
*/
|
2018-10-09 18:59:49 -05:00
|
|
|
void eeprom_write_byte(uint8_t *pos, unsigned char value);
|
|
|
|
uint8_t eeprom_read_byte(uint8_t *pos);
|
2019-02-25 22:51:14 -06:00
|
|
|
void eeprom_read_block(void *__dst, const void *__src, size_t __n);
|
|
|
|
void eeprom_update_block(const void *__src, void *__dst, size_t __n);
|
2017-09-27 00:30:23 -05: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
|
|
|
|
|
|
|
#define HAL_START_ADC(pin) HAL_adc_start_conversion(pin)
|
2019-11-06 17:49:17 -06:00
|
|
|
#define HAL_ADC_RESOLUTION 10
|
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
|
|
|
|
void flashFirmware(int16_t value);
|