mayhem-firmware/firmware/baseband/sd_over_usb/sd_over_usb.h

43 lines
1.4 KiB
C
Raw Normal View History

2023-03-29 15:05:11 +00:00
/*
2023-04-01 17:24:13 +00:00
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
* Copyright (C) 2023 Bernd Herzog
2023-03-29 15:05:11 +00:00
*
2023-04-01 17:24:13 +00:00
* This file is part of PortaPack.
2023-03-29 15:05:11 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifndef __USB_SD_OVER_USB_H__
#define __USB_SD_OVER_USB_H__
#include <stddef.h>
#include <common/usb.h>
#include <common/usb_request.h>
#include <common/usb_standard_request.h>
2023-04-01 16:36:57 +00:00
#include <hackrf_usb/usb_device.h>
#include <hackrf_usb/usb_endpoint.h>
2023-03-29 15:05:11 +00:00
#include <libopencm3/lpc43xx/m4/nvic.h>
2023-03-30 09:46:36 +00:00
#include <libopencm3/lpc43xx/cgu.h>
#include "platform_detect.h"
#include "hackrf_core.h"
2023-03-31 17:18:39 +00:00
#include "usb_bulk_buffer.h"
2023-03-29 15:05:11 +00:00
void start_usb(void);
void stop_usb(void);
2023-03-31 17:18:39 +00:00
void irq_usb(void);
void usb_transfer(void);
2023-03-29 15:05:11 +00:00
#endif /* __USB_SD_OVER_USB_H__ */