-
Notifications
You must be signed in to change notification settings - Fork 10
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
library crash on xRingbufferReceive(_rb, &rx_size, RMT_RX_BUF_WAIT); #5
Comments
You can find the (huge) code that uses your lib here: I realize it will likely be hard for you to know what's wrong by just looking at it or trying to reproduce given how big the code, is, but maybe we can have a guess that it's a dual core issue and conflict with SmartMatrix? |
Well, is Neomatrix using the rmt peripheral? I would think the conflict is there. If both the IR and Neomatrix are trying to use the same device, it is going to have issues getting at the memory locations. |
FastLED does use RMT (single channel) on ESP32. I thought 2 different libraries could use RMT, but maybe they can't. |
I ran into the same problem using FastLED and another RMT module to control an IR LED. But I think the problem is not with this library here. It is possibly a problem in FastLED or in the build in RMT driver. Using FastLED with |
The example code works fine on my ESP32, but when I integrate your lib in a much bigger code base that uses DMA and probably one code to push to the RGBPanels (in the SmartMatrix library), your library crashes here:
Is there a way to make this compatible with SmartMatrix?
The text was updated successfully, but these errors were encountered: