26 lines
501 B
C
26 lines
501 B
C
/*!
|
|
\file usbd_pwr.h
|
|
\brief USB device power management functions prototype
|
|
*/
|
|
|
|
/*
|
|
Copyright (C) 2017 GigaDevice
|
|
|
|
2017-02-10, V1.0.0, firmware for GD32F30x
|
|
*/
|
|
|
|
#ifndef USBD_PWR_H
|
|
#define USBD_PWR_H
|
|
|
|
#include "usbd_core.h"
|
|
|
|
/* function declarations */
|
|
/* USB wakeup first operation is to wakeup mcu */
|
|
void resume_mcu (void);
|
|
/* set USB device to suspend mode */
|
|
void usbd_suspend (void);
|
|
/* start to remote wakeup */
|
|
void usbd_remote_wakeup_active (void);
|
|
|
|
#endif /* USBD_PWR_H */
|