2016-04-16 22:13:47 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2016 Hubert Denkmair
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-04-08 22:57:28 +02:00
|
|
|
#pragma once
|
|
|
|
|
2016-04-16 21:49:46 +02:00
|
|
|
#include <stdint.h>
|
2016-04-08 22:57:28 +02:00
|
|
|
#include <stdbool.h>
|
2022-01-05 14:04:59 -08:00
|
|
|
|
|
|
|
#include "hal_include.h"
|
|
|
|
|
2016-04-12 22:32:37 +02:00
|
|
|
#include <gs_usb.h>
|
2016-04-08 22:57:28 +02:00
|
|
|
|
2016-04-20 22:18:23 +02:00
|
|
|
typedef struct {
|
|
|
|
CAN_TypeDef *instance;
|
|
|
|
uint16_t brp;
|
|
|
|
uint8_t phase_seg1;
|
|
|
|
uint8_t phase_seg2;
|
|
|
|
uint8_t sjw;
|
|
|
|
} can_data_t;
|
2016-04-10 11:19:10 +02:00
|
|
|
|
2016-04-20 22:18:23 +02:00
|
|
|
void can_init(can_data_t *hcan, CAN_TypeDef *instance);
|
|
|
|
bool can_set_bittiming(can_data_t *hcan, uint16_t brp, uint8_t phase_seg1, uint8_t phase_seg2, uint8_t sjw);
|
|
|
|
void can_enable(can_data_t *hcan, bool loop_back, bool listen_only, bool one_shot);
|
|
|
|
void can_disable(can_data_t *hcan);
|
2016-06-03 15:02:24 +02:00
|
|
|
bool can_is_enabled(can_data_t *hcan);
|
2016-04-12 22:32:37 +02:00
|
|
|
|
2016-04-20 22:18:23 +02:00
|
|
|
bool can_receive(can_data_t *hcan, struct gs_host_frame *rx_frame);
|
|
|
|
bool can_is_rx_pending(can_data_t *hcan);
|
2016-04-16 21:49:46 +02:00
|
|
|
|
2016-04-20 22:18:23 +02:00
|
|
|
bool can_send(can_data_t *hcan, struct gs_host_frame *frame);
|
|
|
|
|
2020-12-06 11:58:45 -05:00
|
|
|
/** return CAN->ESR register which contains tx/rx error counters and
|
|
|
|
* LEC (last error code).
|
|
|
|
*/
|
2016-04-20 22:18:23 +02:00
|
|
|
uint32_t can_get_error_status(can_data_t *hcan);
|
2020-12-06 11:58:45 -05:00
|
|
|
|
|
|
|
#define CAN_ERRCOUNT_THRESHOLD 15 /* send an error frame if tx/rx counters increase by more than this amount */
|
|
|
|
|
|
|
|
/** parse status value returned by can_get_error_status().
|
|
|
|
* @param frame : will hold the generated error frame
|
|
|
|
* @return 1 when status changes (if any) need a new error frame sent
|
|
|
|
*/
|
2020-11-30 15:17:23 -08:00
|
|
|
bool can_parse_error_status(uint32_t err, uint32_t last_err, can_data_t *hcan, struct gs_host_frame *frame);
|