mirror of
https://github.com/eddyem/IR-controller.git
synced 2025-12-06 10:45:15 +03:00
47 lines
1.3 KiB
C
47 lines
1.3 KiB
C
/*
|
|
* usb_istr.h
|
|
*
|
|
* 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 of the License, 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; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301, USA.
|
|
*/
|
|
|
|
#pragma once
|
|
#ifndef __USB_ISTR_H__
|
|
#define __USB_ISTR_H__
|
|
|
|
#include "usb_conf.h"
|
|
|
|
void USB_Istr(void);
|
|
|
|
|
|
void EP1_IN_Callback(void);
|
|
void EP2_IN_Callback(void);
|
|
void EP3_IN_Callback(void);
|
|
void EP4_IN_Callback(void);
|
|
void EP5_IN_Callback(void);
|
|
void EP6_IN_Callback(void);
|
|
void EP7_IN_Callback(void);
|
|
|
|
void EP1_OUT_Callback(void);
|
|
void EP2_OUT_Callback(void);
|
|
void EP3_OUT_Callback(void);
|
|
void EP4_OUT_Callback(void);
|
|
void EP5_OUT_Callback(void);
|
|
void EP6_OUT_Callback(void);
|
|
void EP7_OUT_Callback(void);
|
|
|
|
void SOF_Callback(void);
|
|
#endif // __USB_ISTR_H__
|