12345678910111213141516171819202122232425 |
- /*!
- \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 */
|