Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addition SPI device #3

Open
w-i-n-s opened this issue Nov 28, 2014 · 2 comments
Open

Addition SPI device #3

w-i-n-s opened this issue Nov 28, 2014 · 2 comments

Comments

@w-i-n-s
Copy link

w-i-n-s commented Nov 28, 2014

Hi,
I try to use RFM73 transceiver (good description https://www.tindie.com/products/Heye/arduino-clone-with-24ghz-wireless) that have SPI interface and work perfectly. But wit Blend Micro not working at all (ble module eats everything from SPI).

Can you implement bit-banging SPI or advice me how I can reach it? repo https://github.com/heye/rfm73

@XuGuohui
Copy link
Contributor

There is an API named ble_busy(), which return 1 if the BLE module is occupying the SPI for transmission and return 0 if the BLE Module is idle. You should put your code for other SPI device in a condition like:

if(!ble_busy)
{
// other SPI device code
}

@w-i-n-s
Copy link
Author

w-i-n-s commented Dec 4, 2014

It not working. But I have 2 possibilities - BLE or RFM73. But I need both.
What I need to do?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants