2019-05-22 23:50:52 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2019-05-22 23:50:52 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2019-05-22 23:50:52 +02:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
2017-06-18 01:36:10 +02:00
|
|
|
|
2017-09-24 06:25:28 +02:00
|
|
|
#ifdef __AVR__
|
2017-06-18 01:36:10 +02:00
|
|
|
|
2017-11-05 15:49:38 +01:00
|
|
|
#include "../../inc/MarlinConfig.h"
|
2018-06-03 08:43:00 +02:00
|
|
|
#include "HAL.h"
|
2017-06-18 01:36:10 +02:00
|
|
|
|
2019-07-10 05:30:06 +02:00
|
|
|
// ------------------------
|
2017-06-18 01:36:10 +02:00
|
|
|
// Public Variables
|
2019-07-10 05:30:06 +02:00
|
|
|
// ------------------------
|
2017-06-18 01:36:10 +02:00
|
|
|
|
|
|
|
//uint8_t MCUSR;
|
|
|
|
|
2019-07-10 05:30:06 +02:00
|
|
|
// ------------------------
|
2017-06-18 01:36:10 +02:00
|
|
|
// Public functions
|
2019-07-10 05:30:06 +02:00
|
|
|
// ------------------------
|
2017-06-18 01:36:10 +02:00
|
|
|
|
2019-06-27 23:29:17 +02:00
|
|
|
void HAL_init(void) {
|
|
|
|
// Init Servo Pins
|
2019-07-12 11:30:15 +02:00
|
|
|
#if HAS_SERVO_0
|
2019-06-27 23:29:17 +02:00
|
|
|
OUT_WRITE(SERVO0_PIN, LOW);
|
|
|
|
#endif
|
2019-07-12 11:30:15 +02:00
|
|
|
#if HAS_SERVO_1
|
2019-06-27 23:29:17 +02:00
|
|
|
OUT_WRITE(SERVO1_PIN, LOW);
|
|
|
|
#endif
|
2019-07-12 11:30:15 +02:00
|
|
|
#if HAS_SERVO_2
|
2019-06-27 23:29:17 +02:00
|
|
|
OUT_WRITE(SERVO2_PIN, LOW);
|
|
|
|
#endif
|
2019-07-12 11:30:15 +02:00
|
|
|
#if HAS_SERVO_3
|
2019-06-27 23:29:17 +02:00
|
|
|
OUT_WRITE(SERVO3_PIN, LOW);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-06-18 01:36:10 +02:00
|
|
|
#if ENABLED(SDSUPPORT)
|
2018-06-03 08:43:00 +02:00
|
|
|
|
2017-09-06 13:28:32 +02:00
|
|
|
#include "../../sd/SdFatUtil.h"
|
2017-06-18 01:36:10 +02:00
|
|
|
int freeMemory() { return SdFatUtil::FreeRam(); }
|
2018-06-03 08:43:00 +02:00
|
|
|
|
|
|
|
#else // !SDSUPPORT
|
2017-06-18 01:36:10 +02:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
extern char __bss_end;
|
|
|
|
extern char __heap_start;
|
|
|
|
extern void* __brkval;
|
|
|
|
|
|
|
|
int freeMemory() {
|
|
|
|
int free_memory;
|
|
|
|
if ((int)__brkval == 0)
|
|
|
|
free_memory = ((int)&free_memory) - ((int)&__bss_end);
|
|
|
|
else
|
|
|
|
free_memory = ((int)&free_memory) - ((int)__brkval);
|
|
|
|
return free_memory;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-03 08:43:00 +02:00
|
|
|
#endif // !SDSUPPORT
|
2017-06-18 01:36:10 +02:00
|
|
|
|
2018-06-03 08:43:00 +02:00
|
|
|
#endif // __AVR__
|