FastLED 3.9.3
|
Software SPI (aka bit-banging) support.
Definition in file fastspi_bitbang.h.
Go to the source code of this file.
Classes | |
class | AVRSoftwareSPIOutput< DATA_PIN, CLOCK_PIN, SPI_SPEED > |
Software SPI (aka bit-banging) support Includes aggressive optimizations for when the clock and data pin are on the same port. More... | |
Macros | |
#define | MIN_DELAY ((NS(35)>3) ? (NS(35) - 3) : 1) |
We want to make sure that the clock pulse is held high for a minimum of 35 ns. | |
#define | CLOCK_HI_DELAY do { delaycycles<MIN_DELAY>(); delaycycles<((SPI_SPEED > 10) ? (((SPI_SPEED-6) / 2) - MIN_DELAY) : (SPI_SPEED))>(); } while(0); |
Delay for the clock signal 'high' period. | |
#define | CLOCK_LO_DELAY do { delaycycles<((SPI_SPEED > 10) ? ((SPI_SPEED-6) / 2) : (SPI_SPEED))>(); } while(0); |
Delay for the clock signal 'low' period. | |
#define CLOCK_HI_DELAY do { delaycycles<MIN_DELAY>(); delaycycles<((SPI_SPEED > 10) ? (((SPI_SPEED-6) / 2) - MIN_DELAY) : (SPI_SPEED))>(); } while(0); |
Delay for the clock signal 'high' period.
Definition at line 143 of file fastspi_bitbang.h.
#define CLOCK_LO_DELAY do { delaycycles<((SPI_SPEED > 10) ? ((SPI_SPEED-6) / 2) : (SPI_SPEED))>(); } while(0); |
Delay for the clock signal 'low' period.
Definition at line 145 of file fastspi_bitbang.h.
We want to make sure that the clock pulse is held high for a minimum of 35 ns.
Definition at line 140 of file fastspi_bitbang.h.