Oliver Hartkopp

Results 177 comments of Oliver Hartkopp

Hi @derek-will , usually these kind of discussions are better asked on the linux-can mailing list, as it hits the kernel implementation and not the tools. But I added @olerem...

Sure! Just take the two examples 1. `opcode=CAN_BCM_TX_DELETE` where `opcode` is an uint32 value and CAN_BCM_TX_DELETE = 2 2. `can_id=0x401` where `can_id` is an uint32 value ``` self.assertEqual( expected_result, build_bcm_header(...

Hi @Ipiano , we had a similar request and discussion here: https://github.com/linux-can/can-utils/pull/268#issuecomment-1133952186 But this did not go further, as it wasn't reworked and rebased as suggested. If possible I would...

Thanks! Looking forward to your updated patch. Have you ever tried the `-r ` option to increase the socket receive buffer size? The blocking file I/O of several seconds seems...

Please remove the old 2018.02.0 version from Ubuntu (apt remove --purge can-utils) and clone this repository to build and install the latest can-utils tools (just `make && make install`). Not...

> @hartkopp and @lumagi : What do you think about the socketcan part of this PR? Is that a viable solution to implement bit timing configuration for socketcan? The bitrate...

> It also seems like `libsocketcan` is not maintained anymore. The last commit is from 2020 and it does not support CAN FD. So it's probably not a good foundation...

Hi @willem445 , there is indeed a problem when mixing 32/64 bit kernels and user space (the integer values have different sizes in struct bcm_head). When both are identical 32...

Your two sent RTR frames are sent with nearly no time gap - definitely much faster than you can invoke the second cansend on the terminal. Is it possible that...

@marckleinebudde would it make sense for one of us to simply write this bug report and put Hartley and his e-mail in CC? The code in https://elixir.bootlin.com/linux/latest/source/drivers/net/can/xilinx_can.c#L633 really looks tricky...