My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

HAL_LCD_pin_routines.h 1.4KB

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016, 2017 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 <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * Low level pin manipulation routines - used by all the drivers.
  24. *
  25. * These are based on the LPC1768 pinMode, digitalRead & digitalWrite routines.
  26. *
  27. * Couldn't just call exact copies because the overhead killed the LCD update speed
  28. * With an intermediate level the softspi was running in the 10-20kHz range which
  29. * resulted in using about about 25% of the CPU's time.
  30. */
  31. void u8g_SetPinOutput(uint8_t internal_pin_number);
  32. void u8g_SetPinInput(uint8_t internal_pin_number);
  33. void u8g_SetPinLevel(uint8_t pin, uint8_t pin_status);
  34. uint8_t u8g_GetPinLevel(uint8_t pin);