mirror of
https://github.com/eddyem/stm32samples.git
synced 2025-12-06 18:55:13 +03:00
60 lines
1.6 KiB
C
60 lines
1.6 KiB
C
/*
|
|
* This file is part of the fx3u project.
|
|
* Copyright 2024 Edward V. Emelianov <edward.emelianoff@gmail.com>.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
// min/max speeds in bps
|
|
#define CAN_MAX_SPEED ((uint32_t)3000000UL)
|
|
#define CAN_MIN_SPEED ((uint32_t)9600UL)
|
|
|
|
// wait to send not more tnah
|
|
#define SEND_TIMEOUT_MS (100)
|
|
|
|
// incoming message buffer size
|
|
#define CAN_INMESSAGE_SIZE (8)
|
|
|
|
// CAN message
|
|
typedef struct{
|
|
uint8_t data[8]; // up to 8 bytes of data
|
|
uint8_t length; // data length
|
|
uint16_t ID; // ID of receiver
|
|
} CAN_message;
|
|
|
|
typedef enum{
|
|
CAN_STOP,
|
|
CAN_READY,
|
|
CAN_BUSY,
|
|
CAN_OK,
|
|
CAN_ERR,
|
|
CAN_FIFO_OVERRUN
|
|
} CAN_status;
|
|
|
|
CAN_status CAN_get_status();
|
|
|
|
void CAN_reinit(uint32_t speed);
|
|
void CAN_setup(uint32_t speed);
|
|
|
|
CAN_status CAN_send(CAN_message *message);
|
|
void CAN_proc();
|
|
void CAN_printerr();
|
|
void CAN_sniffer(uint8_t issniffer);
|
|
|
|
CAN_message *CAN_messagebuf_pop();
|