Esp8266/spi_arch.h
Go to the documentation of this file.
1 /****
2  * Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
3  * Created 2015 by Skurydin Alexey
4  * http://github.com/SmingHub/Sming
5  * All files of the Sming Core are provided under the LGPL v3 license.
6  *
7  * spi_arch.h - Esp8266
8  *
9  */
10 
11 #pragma once
12 
19 enum class SpiBus {
20  INVALID = 0,
21  MIN = 1,
22  SPI1 = 1,
23  MAX = 1,
24  DEFAULT = SPI1,
25 };
SpiBus
Identifies bus selection.
Definition: Esp32/spi_arch.h:23