zariiii9003

Results 154 comments of zariiii9003

> Apparently the setup for the CAN-FD is quite different from normal CAN. When using the following initialization > > the device works fine. I used [Kvaser calculator](https://www.kvaser.com/support/calculators/can-fd-bit-timing-calculator/) to calculate...

@felixdivo @hardbyte Can we use a [personal access token](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token) here? https://github.com/hardbyte/python-can/blob/84e1f36aee68a0a67c62c9602c1025dd871916b2/.github/workflows/format-code.yml#L28 If the commit is done with the GITHUB_TOKEN, then it does not trigger a new workflow run. But codecov,...

I don't see how it could be recursive. The workflow is only repeated when the black formatting is committed. This cannot happen more than once (unless we do something silly...

@hardbyte i see you approved this but personally i think bringing implementation details of the BlfWriter (`options["max_container_size"] = results.file_size # bytes`) into the logger script is not a pretty solution....

You need to install the optional dependency: `pip install python-can[nixnet]`

Here is a simple example for the notifier: ```python3 import random import asyncio import can async def print_message(msg: can.Message) -> None: print(msg) async def main() -> None: """The main function...

app_name refers to the application name that you defined in Vector Hardware Config. You cannot set multiple bitrates directly, the python-can API does not support that. But you can use...

You need init access, so you need to be the first application on the bus. Otherwise you don't have the right to change the bus settings. Look for the `Init`...

@cowo78, @fjburgos any objections to merging this?