spi = spidev.SpiDev()
spi.open(0,0) #I tried both (1,0) and (0,0)
spi.max_speed_hz = 200000 # Set maximum SPI speed
spi.mode = 0 # Set SPI mode (0 or 3)
while True:
x = [1,7,0,2,1,69,5,6]
received_data = spi.readbytes(8)
print(“Received Data:”, received_data)
time.sleep(0.2)
master_mega.ino (504 Bytes)
Hi,
I am uploading script which I use to send messages from Arduino to Jetson. Does anyone know why I don’t receive SPI messages on Jetson?
There is no update from you for a period, assuming this is not an issue any more.
Hence we are closing this topic. If need further support, please open a new one.
Thanks
Do you short MISO and MOSI together?
Could you share the block diagram of your connection?