33 lines
545 B
C++
33 lines
545 B
C++
#ifndef LINUX_SPI_SPIDEFINITONS_H_
|
|
#define LINUX_SPI_SPIDEFINITONS_H_
|
|
|
|
#include "../../common/gpio/gpioDefinitions.h"
|
|
|
|
#include "fsfw/returnvalues/HasReturnvaluesIF.h"
|
|
#include <linux/spi/spidev.h>
|
|
|
|
#include <cstdint>
|
|
|
|
class SpiCookie;
|
|
|
|
namespace spi {
|
|
|
|
enum SpiModes: uint8_t {
|
|
MODE_0,
|
|
MODE_1,
|
|
MODE_2,
|
|
MODE_3
|
|
};
|
|
|
|
enum SpiComIfModes {
|
|
REGULAR,
|
|
CALLBACK
|
|
};
|
|
|
|
|
|
using send_callback_function_t = ReturnValue_t (*) (SpiCookie *cookie, const uint8_t *sendData, size_t sendLen, void* args);
|
|
|
|
}
|
|
|
|
#endif /* LINUX_SPI_SPIDEFINITONS_H_ */
|