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.

SoftwareSPI.h 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 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. #ifndef _SOFTWARE_SPI_H_
  23. #define _SOFTWARE_SPI_H_
  24. #include <pinmapping.h>
  25. // --------------------------------------------------------------------------
  26. // Software SPI
  27. // --------------------------------------------------------------------------
  28. /**
  29. * This software SPI runs at multiple rates. The SD software provides an index
  30. * (spiRate) of 0-6. The mapping is:
  31. * 0 - about 5 MHz peak (6 MHz on LPC1769)
  32. * 1-2 - about 2 MHz peak
  33. * 3 - about 1 MHz peak
  34. * 4 - about 500 kHz peak
  35. * 5 - about 250 kHz peak
  36. * 6 - about 125 kHz peak
  37. */
  38. void swSpiBegin(const pin_t sck_pin, const pin_t miso_pin, const pin_t mosi_pin);
  39. // Returns the spi_speed value to be passed to swSpiTransfer
  40. uint8_t swSpiInit(const uint8_t spiRate, const pin_t sck_pin, const pin_t mosi_pin);
  41. uint8_t swSpiTransfer(uint8_t b, const uint8_t spi_speed, const pin_t sck_pin, const pin_t miso_pin, const pin_t mosi_pin);
  42. #endif // _SOFTWARE_SPI_H_