My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HAL.cpp 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #ifdef __AVR__
  23. #include "../../inc/MarlinConfig.h"
  24. #include "HAL.h"
  25. #ifdef USBCON
  26. DefaultSerial MSerial(false, Serial);
  27. #ifdef BLUETOOTH
  28. BTSerial btSerial(false, bluetoothSerial);
  29. #endif
  30. #endif
  31. // ------------------------
  32. // Public Variables
  33. // ------------------------
  34. //uint8_t MCUSR;
  35. // ------------------------
  36. // Public functions
  37. // ------------------------
  38. void HAL_init() {
  39. // Init Servo Pins
  40. #define INIT_SERVO(N) OUT_WRITE(SERVO##N##_PIN, LOW)
  41. #if HAS_SERVO_0
  42. INIT_SERVO(0);
  43. #endif
  44. #if HAS_SERVO_1
  45. INIT_SERVO(1);
  46. #endif
  47. #if HAS_SERVO_2
  48. INIT_SERVO(2);
  49. #endif
  50. #if HAS_SERVO_3
  51. INIT_SERVO(3);
  52. #endif
  53. }
  54. #if ENABLED(SDSUPPORT)
  55. #include "../../sd/SdFatUtil.h"
  56. int freeMemory() { return SdFatUtil::FreeRam(); }
  57. #else // !SDSUPPORT
  58. extern "C" {
  59. extern char __bss_end;
  60. extern char __heap_start;
  61. extern void* __brkval;
  62. int freeMemory() {
  63. int free_memory;
  64. if ((int)__brkval == 0)
  65. free_memory = ((int)&free_memory) - ((int)&__bss_end);
  66. else
  67. free_memory = ((int)&free_memory) - ((int)__brkval);
  68. return free_memory;
  69. }
  70. }
  71. #endif // !SDSUPPORT
  72. #endif // __AVR__