Definition of the SPIController class. More...
#include "ISPIController.hpp"
#include <cstdint>
#include <fcntl.h>
#include <string>
#include <sys/ioctl.h>
#include <unistd.h>
Go to the source code of this file.
Data Structures | |
class | SPIController |
Class that controls the SPI communication. ISPIController. More... | |
Typedefs | |
using | IoctlFunc = int (*)(int, unsigned long, ...) |
using | OpenFunc = int (*)(const char *, int, ...) |
using | CloseFunc = int (*)(int) |
Definition of the SPIController class.
This file contains the definition of the SPIController class, which is responsible for controlling the SPI communication.
Definition in file SPIController.hpp.
using CloseFunc = int (*)(int) |
Definition at line 29 of file SPIController.hpp.
using IoctlFunc = int (*)(int, unsigned long, ...) |
Definition at line 27 of file SPIController.hpp.
using OpenFunc = int (*)(const char *, int, ...) |
Definition at line 28 of file SPIController.hpp.