micropython/ports/esp32/machine_can.h

79 wiersze
2.4 KiB
C

/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2019 Musumeci Salvatore
*
* 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.
*/
#ifndef MICROPY_INCLUDED_ESP32_CAN_H
#define MICROPY_INCLUDED_ESP32_CAN_H
#include "modmachine.h"
#include "freertos/task.h"
#include "py/obj.h"
#if MICROPY_HW_ENABLE_CAN
#define DEVICE_NAME "CAN"
typedef enum _filter_mode_t {
FILTER_RAW_SINGLE = 0,
FILTER_RAW_DUAL,
FILTER_ADDRESS
} filter_mode_t;
typedef struct _esp32_can_config_t {
twai_timing_config_t timing;
twai_filter_config_t filter;
twai_general_config_t general;
uint32_t baudrate; // bit/s
bool initialized;
} esp32_can_config_t;
typedef struct _esp32_can_obj_t {
mp_obj_base_t base;
esp32_can_config_t *config;
mp_obj_t rxcallback;
TaskHandle_t irq_handler;
byte rx_state;
bool extframe : 1;
bool loopback : 1;
byte last_tx_success : 1;
byte bus_recovery_success : 1;
uint16_t num_error_warning; //FIXME: populate this value somewhere
uint16_t num_error_passive;
uint16_t num_bus_off;
} esp32_can_obj_t;
typedef enum _rx_state_t {
RX_STATE_FIFO_EMPTY = 0,
RX_STATE_MESSAGE_PENDING,
RX_STATE_FIFO_FULL,
RX_STATE_FIFO_OVERFLOW,
} rx_state_t;
extern const mp_obj_type_t machine_can_type;
#endif // MICROPY_HW_ENABLE_CAN
#endif // MICROPY_INCLUDED_ESP32_CAN_H