spi com if almost finished

This commit is contained in:
2021-02-23 11:31:50 +01:00
parent a2e6634208
commit 3550fb6ca7
12 changed files with 649 additions and 11 deletions

View File

@ -0,0 +1,15 @@
#ifndef LINUX_SPI_SPIDEFINITONS_H_
#define LINUX_SPI_SPIDEFINITONS_H_
namespace spi {
enum SpiMode {
MODE_0,
MODE_1,
MODE_2,
MODE_3
};
}
#endif /* LINUX_SPI_SPIDEFINITONS_H_ */