Replies: 1 comment 3 replies
-
None. You are just using another SPI port |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What is the difference in terms of speed, occupied RAM, and so on?
SPIClass * hspi = NULL;
void TaskSPI(void *pvParameters)
{
hspi = new SPIClass(HSPI);
hspi->begin(36, 35, 21, 47); //SCLK, MISO, MOSI, SS
}
#define VSPI 3
SPIClass vspi = SPIClass(VSPI);
void TaskSPI(void *pvParameters)
{
SPIClass vspi = SPIClass(VSPI);
vspi.begin(36, 35, 21, 47); //SCLK, MISO, MOSI, SS
}
Beta Was this translation helpful? Give feedback.
All reactions