circuitpython/shared-module/canio/Match.h
2024-05-17 14:56:28 -04:00

16 lines
339 B
C

// This file is part of the CircuitPython project: https://circuitpython.org
//
// SPDX-FileCopyrightText: Copyright (c) 2020 Jeff Epler for Adafruit Industries
//
// SPDX-License-Identifier: MIT
#pragma once
#include "py/obj.h"
typedef struct {
mp_obj_base_t base;
int id;
int mask;
bool extended;
} canio_match_obj_t;