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

RuntimeError: No Masks Available #23

Open
nikstp opened this issue Oct 18, 2023 · 1 comment
Open

RuntimeError: No Masks Available #23

nikstp opened this issue Oct 18, 2023 · 1 comment

Comments

@nikstp
Copy link

nikstp commented Oct 18, 2023

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

can_message_one = mcp.listen(matches=[canio.Match(0x18FF0AFB, extended=True)], timeout = 10)
can_message_two = mcp.listen(matches=[canio.Match(0x18FF00FB, extended=True)], timeout = 10)

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):

from adafruit_mcp2515 import canio
from adafruit_mcp2515 import MCP2515 as CAN

...

cs = digitalio.DigitalInOut(board.D5)
cs.switch_to_output()
spi = busio.SPI(board.SCK, board.MOSI, board.MISO)
mcp  = CAN(spi, cs, debug=True)
@nikstp
Copy link
Author

nikstp commented Oct 25, 2023

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])

Let me know if this could potentially be a PR.

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

1 participant