13 lines
345 B
C
13 lines
345 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"
|
|
|
|
#include "shared-bindings/canio/Message.h"
|
|
|
|
typedef canio_message_obj_t canio_remote_transmission_request_obj_t;
|