You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was able to accommodate my code with the following changes to the listen function in init.py (since the firmware code isn't designed to support more than one listener):
def listen(self, matches=None, *, timeout: float = 10, set_unused_masks=True):
# if matches were made and there are unused masks
# set the unused masks to prevent them from leaking packets
if(set_unused_masks) is not False:
if len(matches) > 0 and used_masks < len(MASKS):
next_mask_index = used_masks
for idx in range(next_mask_index, len(MASKS)):
print("using unused mask index:", idx)
self._create_mask(matches[-1])
Hi,
I'm trying to re-use the code I've had with the M4 CAN Feather boards and it's just not working.
It seems that me having code such as
is causing this issue, but it wasn't an issue before. Doesn't MCP2515 have 2 masks available?
The init code which I'm using with the ESP32S3 Feather (which as I checked, lines up with CS = D5 when stacked):
The text was updated successfully, but these errors were encountered: