Marlin/Marlin/src/HAL/DUE/HAL.cpp

108 lines
2.5 KiB
C++
Raw Normal View History

/**
* Marlin 3D Printer Firmware
2020-02-03 14:00:57 +00:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
* Copyright (c) 2016 Bob Cousins bobcousins42@googlemail.com
*
* 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 03:20:14 +00:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2020-07-28 06:04:44 +00:00
*
*/
2017-07-18 23:29:06 +00:00
/**
* Description: HAL for Arduino Due and compatible (SAM3X8E)
*
* For ARDUINO_ARCH_SAM
*/
#ifdef ARDUINO_ARCH_SAM
#include "../../inc/MarlinConfig.h"
#include "HAL.h"
2017-07-18 23:29:06 +00:00
#include <Wire.h>
#include "usb/usb_task.h"
2017-07-18 23:29:06 +00:00
2019-07-10 03:30:06 +00:00
// ------------------------
2017-07-18 23:29:06 +00:00
// Public Variables
2019-07-10 03:30:06 +00:00
// ------------------------
2017-07-18 23:29:06 +00:00
uint16_t HAL_adc_result;
2019-07-10 03:30:06 +00:00
// ------------------------
2017-07-18 23:29:06 +00:00
// Public functions
2019-07-10 03:30:06 +00:00
// ------------------------
2017-07-18 23:29:06 +00:00
// HAL initialization task
2019-09-17 01:31:08 +00:00
void HAL_init() {
// Initialize the USB stack
#if ENABLED(SDSUPPORT)
OUT_WRITE(SDSS, HIGH); // Try to set SDSS inactive before any other SPI users start up
#endif
usb_task_init();
}
// HAL idle task
2019-09-17 01:31:08 +00:00
void HAL_idletask() {
// Perform USB stack housekeeping
usb_task_idle();
}
// Disable interrupts
2019-09-17 01:31:08 +00:00
void cli() { noInterrupts(); }
2017-07-18 23:29:06 +00:00
// Enable interrupts
2019-09-17 01:31:08 +00:00
void sei() { interrupts(); }
2017-07-18 23:29:06 +00:00
2019-09-17 01:31:08 +00:00
void HAL_clear_reset_source() { }
2017-07-18 23:29:06 +00:00
2019-09-17 01:31:08 +00:00
uint8_t HAL_get_reset_source() {
switch ((RSTC->RSTC_SR >> 8) & 0x07) {
case 0: return RST_POWER_ON;
case 1: return RST_BACKUP;
case 2: return RST_WATCHDOG;
case 3: return RST_SOFTWARE;
case 4: return RST_EXTERNAL;
default: return 0;
2017-07-18 23:29:06 +00:00
}
}
2017-09-27 09:57:33 +00:00
void _delay_ms(const int delay_ms) {
// Todo: port for Due?
2017-08-31 22:30:43 +00:00
delay(delay_ms);
2017-07-18 23:29:06 +00:00
}
extern "C" {
extern unsigned int _ebss; // end of bss section
}
// Return free memory between end of heap (or end bss) and whatever is current
2017-07-18 23:29:06 +00:00
int freeMemory() {
int free_memory, heap_end = (int)_sbrk(0);
return (int)&free_memory - (heap_end ?: (int)&_ebss);
2017-07-18 23:29:06 +00:00
}
2019-07-10 03:30:06 +00:00
// ------------------------
2017-07-18 23:29:06 +00:00
// ADC
2019-07-10 03:30:06 +00:00
// ------------------------
2017-07-18 23:29:06 +00:00
2020-01-17 08:39:22 +00:00
void HAL_adc_start_conversion(const uint8_t ch) {
HAL_adc_result = analogRead(ch);
2017-07-18 23:29:06 +00:00
}
2019-09-17 01:31:08 +00:00
uint16_t HAL_adc_get_result() {
2017-07-18 23:29:06 +00:00
// nop
return HAL_adc_result;
}
#endif // ARDUINO_ARCH_SAM