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.h 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. * Copyright (c) 2016 Bob Cousins bobcousins42@googlemail.com
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #pragma once
  20. /**
  21. * Description: HAL for Espressif ESP32 WiFi
  22. */
  23. #define CPU_32_BIT
  24. // --------------------------------------------------------------------------
  25. // Includes
  26. // --------------------------------------------------------------------------
  27. #include <stdint.h>
  28. #undef DISABLED
  29. #undef M_PI
  30. #include <Arduino.h>
  31. #undef DISABLED
  32. #define DISABLED(b) (!_CAT(SWITCH_ENABLED_, b))
  33. #include "../shared/math_32bit.h"
  34. #include "../shared/HAL_SPI.h"
  35. #include "fastio_ESP32.h"
  36. #include "watchdog_ESP32.h"
  37. #include "i2s.h"
  38. #include "HAL_timers_ESP32.h"
  39. #include "WebSocketSerial.h"
  40. // --------------------------------------------------------------------------
  41. // Defines
  42. // --------------------------------------------------------------------------
  43. extern portMUX_TYPE spinlock;
  44. #define NUM_SERIAL 2
  45. #define MYSERIAL0 Serial
  46. #define MYSERIAL1 webSocketSerial
  47. #define CRITICAL_SECTION_START portENTER_CRITICAL(&spinlock)
  48. #define CRITICAL_SECTION_END portEXIT_CRITICAL(&spinlock)
  49. #define ISRS_ENABLED() (spinlock.owner == portMUX_FREE_VAL)
  50. #define ENABLE_ISRS() if (spinlock.owner != portMUX_FREE_VAL) portEXIT_CRITICAL(&spinlock)
  51. #define DISABLE_ISRS() portENTER_CRITICAL(&spinlock)
  52. // Fix bug in pgm_read_ptr
  53. #undef pgm_read_ptr
  54. #define pgm_read_ptr(addr) (*(addr))
  55. // --------------------------------------------------------------------------
  56. // Types
  57. // --------------------------------------------------------------------------
  58. typedef int16_t pin_t;
  59. // --------------------------------------------------------------------------
  60. // Public Variables
  61. // --------------------------------------------------------------------------
  62. /** result of last ADC conversion */
  63. extern uint16_t HAL_adc_result;
  64. // --------------------------------------------------------------------------
  65. // Public functions
  66. // --------------------------------------------------------------------------
  67. // clear reset reason
  68. void HAL_clear_reset_source (void);
  69. // reset reason
  70. uint8_t HAL_get_reset_source (void);
  71. void _delay_ms(int delay);
  72. int freeMemory(void);
  73. void analogWrite(int pin, int value);
  74. // EEPROM
  75. void eeprom_write_byte(uint8_t *pos, unsigned char value);
  76. uint8_t eeprom_read_byte(uint8_t *pos);
  77. void eeprom_read_block (void *__dst, const void *__src, size_t __n);
  78. void eeprom_update_block (const void *__src, void *__dst, size_t __n);
  79. // ADC
  80. #define HAL_ANALOG_SELECT(pin)
  81. void HAL_adc_init(void);
  82. #define HAL_START_ADC(pin) HAL_adc_start_conversion(pin)
  83. #define HAL_READ_ADC() HAL_adc_result
  84. #define HAL_ADC_READY() true
  85. void HAL_adc_start_conversion (uint8_t adc_pin);
  86. #define GET_PIN_MAP_PIN(index) index
  87. #define GET_PIN_MAP_INDEX(pin) pin
  88. #define PARSED_PIN_INDEX(code, dval) parser.intval(code, dval)
  89. // Enable hooks into idle and setup for HAL
  90. #define HAL_IDLETASK 1
  91. #define HAL_INIT 1
  92. void HAL_idletask(void);
  93. void HAL_init(void);