Bare-Metal CAN Driver Implementation for S32K148
The S32K148 microcontroller supports three primary methods for CAN message transmission and reception: mailbox mode, FIFO mode, and DMA mode. Among these, mailbox mode offers simplest conceptual model and serves as a practical starting point for understanding CAN communication on this platform.
Key registers involved in mailbox-based CAN opera ...
Posted on Tue, 16 Jun 2026 16:34:56 +0000 by etones
Python CAN Library for Network Communication
Python CAN Library Overview
The can library in Python facilitates Controller Arrea Network (CAN) communication, a protocol widely used in automotive and industrial systems. It offers a uniform API for developing CAN-related applications without requiring a central host.
Basic Usage
Installation
Install the library using pip:
pip install python- ...
Posted on Sun, 10 May 2026 08:26:32 +0000 by ksteuber