Midnight Sun Firmware
Loading...
Searching...
No Matches
mcp2515.h
1#pragma once
2
3/************************************************************************************************
4 * @file mcp2515.h
5 *
6 * @brief Header file for MCP2515
7 *
8 * @date 2025-01-13
9 * @author Midnight Sun Team #24 - MSXVI
10 ************************************************************************************************/
11
12/* Standard library Headers */
13
14/* Inter-component Headers */
15#include "can.h"
16#include "mcp2515_defs.h"
17#include "mcp2515_hw.h"
18/* Intra-component Headers */
19
26// SPI commands: Table 12-1
27
28extern void (*mcp2515_rx_all)();
29
30extern void (*mcp2515_tx_all)();
31
32// Initializes the specified CAN configuration.
33StatusCode mcp2515_init(Mcp2515Storage *storage, const Mcp2515Settings *settings);
34
35// Adds a hardware filter in for the specified message ID.
36// StatusCode mcp2515_add_filter_in(CanMessageId msg_id);
37
38// Adds a hardware filter out for the specified message ID.
39// StatusCode mcp2515_add_filter_out(CanMessageId msg_id);
40
41StatusCode mcp2515_set_filter(CanMessageId *filters, bool loopback);
42
43// Attempts to transmit the CAN message as soon as possible.
44StatusCode mcp2515_transmit(const CanMessage *msg);
45
46// Attempts to receive the CAN message as soon as possible.
47StatusCode mcp2515_receive(const CanMessage *msg);
48
49// Run the can rx cycle
50StatusCode run_mcp2515_rx_cycle();
51
52// Run the can tx cycle
53StatusCode run_mcp2515_tx_cycle();
uint32_t CanMessageId
CAN message ID.
Definition: can_msg.h:35
StatusCode
StatusCodes for various errors.
Definition: status.h:27
CAN message structure.
Definition: can_msg.h:56
Definition: mcp2515_hw.h:36
Definition: mcp2515_hw.h:48