You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
usb-firewall-fork/Downstream/Inc/downstream_statemachine.h

31 lines
489 B

/*
* downstream_statemachine.h
*
* Created on: 2/08/2015
* Author: Robert Fisk
*/
#ifndef INC_DOWNSTREAM_STATEMACHINE_H_
#define INC_DOWNSTREAM_STATEMACHINE_H_
#include "usbh_def.h"
typedef enum
{
STATE_NOT_READY,
STATE_WAIT_DEVICE_READY_CALLBACK,
STATE_DEVICE_READY,
STATE_ERROR
} DownstreamStateTypeDef;
void Downstream_InitStateMachine(void);
void Downstream_HostUserCallback(USBH_HandleTypeDef *phost, uint8_t id);
#endif /* INC_DOWNSTREAM_STATEMACHINE_H_ */