Firmware2/Marlin/src/libs/private_spi.h

55 lines
1.8 KiB
C
Raw Normal View History

2017-01-08 17:08:50 +01:00
/**
* Marlin 3D Printer Firmware
2020-02-03 15:00:57 +01:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
2017-01-08 17:08:50 +01:00
*
* Based on Sprinter and grbl.
2019-06-28 06:57:50 +02:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
2017-01-08 17:08:50 +01: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
2020-07-23 05:20:14 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2017-01-08 17:08:50 +01:00
*
*/
#pragma once
2017-01-08 17:08:50 +01:00
#include "softspi.h"
2017-09-06 13:28:32 +02:00
#include <stdint.h>
2017-01-08 17:08:50 +01:00
template<uint8_t MisoPin, uint8_t MosiPin, uint8_t SckPin>
class SPIclass {
static SoftSPI<MisoPin, MosiPin, SckPin> softSPI;
2017-01-08 17:08:50 +01:00
public:
FORCE_INLINE static void init() { softSPI.begin(); }
FORCE_INLINE static void send(uint8_t data) { softSPI.send(data); }
FORCE_INLINE static uint8_t receive() { return softSPI.receive(); }
2017-01-08 17:08:50 +01:00
};
// Hardware SPI
2017-01-08 17:08:50 +01:00
template<>
class SPIclass<MISO_PIN, MOSI_PIN, SCK_PIN> {
2017-01-08 17:08:50 +01:00
public:
FORCE_INLINE static void init() {
OUT_WRITE(SCK_PIN, LOW);
OUT_WRITE(MOSI_PIN, HIGH);
SET_INPUT_PULLUP(MISO_PIN);
2017-01-08 17:08:50 +01:00
}
FORCE_INLINE static uint8_t receive() {
2020-09-10 01:57:20 +02:00
#if defined(__AVR__) || defined(__MK20DX256__) || defined(__MK64FX512__) || defined(__MK66FX1M0__) || defined(__IMXRT1062__)
SPDR = 0;
for (;!TEST(SPSR, SPIF););
return SPDR;
#else
return spiRec();
#endif
2017-01-08 17:08:50 +01:00
}
};