circuitpython/shared-bindings/wifi/Packet.h
2024-05-19 20:40:44 -04:00

18 lines
349 B
C

// This file is part of the CircuitPython project: https://circuitpython.org
//
// SPDX-FileCopyrightText: Copyright (c) 2021 microDev
//
// SPDX-License-Identifier: MIT
#pragma once
#include "py/enum.h"
typedef enum {
PACKET_CH,
PACKET_LEN,
PACKET_RAW,
PACKET_RSSI,
} wifi_packet_t;
extern const mp_obj_type_t wifi_packet_type;