SpaceTeddy / CC1101

driver library for Ti CC1100 / CC1101. For Arduino and Raspberry Pi

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Will the TX_Demo and RX_Demo work on one raspberry pi at the same time?

ole1986 opened this issue · comments

commented

While I am struggling to get a signal I was asking myself if its even possible to use both commands, the TX_Demo and RX_Demo at the same time on a single raspberry pi (v1 Mod B+)

The only thing I am sometimes receiving on RX_Demo side is:
no bytes in RX buffer or RX Overflow!: 0x00

Thank you in advanced for any response

well, as I remember right, the PI has two SPI chip select pins, means you can theoretically use two SPI devices with one pi. But I guess in reality it needs effort do write a driver, which checks that the bus is free. If you want to transfer many bytes, you have to take care about the timings, therefore I guess that it is more effective to setup a second rPi.

commented

@SpaceTeddy thank you for your answer. Highly appreciated