Macros | |
#define | UDD_BULK_NB_BANK(ep) 2 |
#define | UDD_BULK_NB_BANK_ERROR |
#define | UDD_EP_BULK_NB_BANK_ERROR(ep) (UDD_EP_USED(ep) && UDD_EP_ISO_NBANK_ERROR(ep)) |
#define | UDD_EP_BULK_NBANK_ERROR(ep) ( (UDD_BULK_NB_BANK(ep) < 1) || (UDD_BULK_NB_BANK(ep) > 2) ) |
#define | UDD_EP_INT_NB_BANK_ERROR(ep) (UDD_EP_USED(ep) && UDD_EP_ISO_NBANK_ERROR(ep)) |
#define | UDD_EP_INT_NBANK_ERROR(ep) ( (UDD_INTERRUPT_NB_BANK(ep) < 1) || (UDD_INTERRUPT_NB_BANK(ep) > 2) ) |
#define | UDD_EP_ISO_NB_BANK_ERROR(ep) (UDD_EP_USED(ep) && UDD_EP_ISO_NBANK_ERROR(ep)) |
#define | UDD_EP_ISO_NBANK_ERROR(ep) |
#define | UDD_EP_NB_BANK_ERROR(ep, type) (ATPASTE3(UDD_EP_, type, _NB_BANK_ERROR(ep))) |
#define | UDD_INTERRUPT_NB_BANK(ep) 1 |
#define | UDD_INTERRUPT_NB_BANK_ERROR |
#define | UDD_ISO_NB_BANK_ERROR |
#define | UDD_ISOCHRONOUS_NB_BANK(ep) 2 |
#define | USBHS_DEVEPTCFG_EPDIR_Pos 8 |
Functions | |
if (udd_ctrl_interrupt()) | |
if (Is_udd_reset()) | |
if (Is_udd_suspend_interrupt_enabled() &&Is_udd_suspend()) | |
if (Is_udd_wake_up_interrupt_enabled() &&Is_udd_wake_up()) | |
void | udd_attach (void) |
Attach device to the bus when possible. More... | |
void | udd_detach (void) |
Detaches the device from the bus. More... | |
void | udd_disable (void) |
Disables the USB Device mode. More... | |
void | udd_enable (void) |
Enables the USB Device mode. More... | |
uint16_t | udd_get_frame_number (void) |
Returns the current start of frame number. More... | |
uint16_t | udd_get_micro_frame_number (void) |
Returns the current micro start of frame number. More... | |
uint8_t | udd_getaddress (void) |
Returns the USB address of device. More... | |
bool | udd_include_vbus_monitoring (void) |
Authorizes the VBUS event. More... | |
bool | udd_is_high_speed (void) |
Test whether the USB Device Controller is running at high speed or not. More... | |
void | udd_send_remotewakeup (void) |
The USB driver sends a resume signal called Upstream Resume. More... | |
void | udd_set_address (uint8_t address) |
Changes the USB address of device. More... | |
void | udd_set_setup_payload (uint8_t *payload, uint16_t payload_size) |
Load setup payload. More... | |
Variables | |
udd_interrupt_end | __pad0__ |
udd_interrupt_sof_end | __pad1__ |
Power management routine. | |
static bool | udd_b_idle |
State of USB line. More... | |
static bool | udd_b_sleep_initialized = false |
State of sleep manager. More... | |
static void | udd_sleep_mode (bool b_idle) |
Authorize or not the CPU powerdown mode. More... | |
#define | USBHS_SLEEP_MODE_USB_SUSPEND SLEEPMGR_WAIT_FAST |
Definition of sleep levels. More... | |
#define | USBHS_SLEEP_MODE_USB_IDLE SLEEPMGR_SLEEP_WFI |
VBus monitor routine | |
static void | udd_vbus_handler (uint32_t id, uint32_t mask) |
#define | udd_vbus_monitor_sleep_mode(lock) |
Control endpoint low level management routine. | |
This function performs control endpoint mangement. It handle the SETUP/DATA/HANDSHAKE phases of a control transaction. | |
enum | udd_ctrl_ep_state_t { UDD_EPCTRL_SETUP = 0, UDD_EPCTRL_DATA_OUT = 1, UDD_EPCTRL_DATA_IN = 2, UDD_EPCTRL_HANDSHAKE_WAIT_IN_ZLP = 3, UDD_EPCTRL_HANDSHAKE_WAIT_OUT_ZLP = 4, UDD_EPCTRL_STALL_REQ = 5 } |
Bit definitions about endpoint control state machine for udd_ep_control_state. More... | |
COMPILER_WORD_ALIGNED udd_ctrl_request_t | udd_g_ctrlreq |
Global variable to give and record information about setup request management. More... | |
static udd_ctrl_ep_state_t | udd_ep_control_state |
State of the endpoint control management. More... | |
static uint16_t | udd_ctrl_prev_payload_buf_cnt |
Total number of data received/sent during data packet phase with previous payload buffers. More... | |
static uint16_t | udd_ctrl_payload_buf_cnt |
Number of data received/sent to/from udd_g_ctrlreq.payload buffer. More... | |
static void | udd_reset_ep_ctrl (void) |
Reset control endpoint. More... | |
static void | udd_ctrl_init (void) |
Reset control endpoint management. More... | |
static void | udd_ctrl_setup_received (void) |
Managed reception of SETUP packet on control endpoint. More... | |
static void | udd_ctrl_in_sent (void) |
Managed reception of IN packet on control endpoint. More... | |
static void | udd_ctrl_out_received (void) |
Managed reception of OUT packet on control endpoint. More... | |
static void | udd_ctrl_underflow (void) |
Managed underflow event of IN packet on control endpoint. More... | |
static void | udd_ctrl_overflow (void) |
Managed overflow event of OUT packet on control endpoint. More... | |
static void | udd_ctrl_stall_data (void) |
Managed stall event of IN/OUT packet on control endpoint. More... | |
static void | udd_ctrl_send_zlp_in (void) |
Send a ZLP IN on control endpoint. More... | |
static void | udd_ctrl_send_zlp_out (void) |
Send a ZLP OUT on control endpoint. More... | |
static void | udd_ctrl_endofrequest (void) |
Call callback associated to setup request. More... | |
static bool | udd_ctrl_interrupt (void) |
Main interrupt routine for control endpoint. More... | |
USBHS Device IP properties | |
#define | udd_get_endpoint_max_nbr() (9) |
Get maximal number of endpoints. More... | |
#define | UDD_MAX_PEP_NB (udd_get_endpoint_max_nbr() + 1) |
#define | udd_get_endpoint_bank_max_nbr(ep) ((ep == 0) ? 1 : (( ep <= 2) ? 3 : 2)) |
Get maximal number of banks of endpoints. More... | |
#define | udd_get_endpoint_size_max(ep) (((ep) == 0) ? 64 : 1024) |
Get maximal size of endpoint (3X, 1024/64) More... | |
#define | Is_udd_endpoint_dma_supported(ep) ((((ep) >= 1) && ((ep) <= 7)) ? true : false) |
Get DMA support of endpoints. More... | |
#define | Is_udd_endpoint_high_bw_supported(ep) (((ep) >= 2) ? true : false) |
Get High Band Width support of endpoints. More... | |
USBHS Device speeds management | |
#define | udd_low_speed_enable() (Set_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_LS)) |
Enable/disable device low-speed mode. More... | |
#define | udd_low_speed_disable() (Clr_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_LS)) |
#define | Is_udd_low_speed_enable() (Tst_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_LS)) |
Test if device low-speed mode is forced. More... | |
#define | udd_high_speed_enable() do { } while (0) |
#define | udd_high_speed_disable() do { } while (0) |
#define | Is_udd_full_speed_mode() true |
USBHS device attach control | |
#define | udd_detach_device() (Set_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_DETACH)) |
Detaches from USB bus. More... | |
#define | udd_attach_device() (Clr_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_DETACH)) |
Attaches to USB bus. More... | |
#define | Is_udd_detached() (Tst_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_DETACH)) |
Test if the device is detached. More... | |
The following USBHS driver configuration must be included in the conf_usb.h file of the application.
UDD_USB_INT_LEVEL
Option to change the interrupt priority (0 to 15) by default 5 (recommended).
UDD_USB_INT_FUN
Option to fit interrupt function to what defined in exception table.
UDD_ISOCHRONOUS_NB_BANK(ep)
Feature to reduce or increase isochronous endpoints buffering (1 to 3). Default value 2.
UDD_BULK_NB_BANK(ep)
Feature to reduce or increase bulk endpoints buffering (1 to 2). Default value 2.
UDD_INTERRUPT_NB_BANK(ep)
Feature to reduce or increase interrupt endpoints buffering (1 to 2). Default value 1.
UDD_NO_SLEEP_MGR
Feature to work without sleep manager module. Default not defined. Note that with this feature defined sleep manager must not be used in application.
The USB driver is fully managed by interrupt and does not request periodique task. Thereby, the USB events use callbacks to transfer the information. The callbacks are declared in static during compilation or in variable during code execution.
Static declarations defined in conf_usb.h:
Dynamic callbacks, called "endpoint job" , are registered in udd_ep_job_t structure via the following functions:
The Sleep modes authorized :
USBHS low-level driver for USB device mode
#define Is_udd_detached | ( | ) | (Tst_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_DETACH)) |
Test if the device is detached.
Definition at line 123 of file usbhs_device.h.
Get DMA support of endpoints.
Definition at line 77 of file usbhs_device.h.
Get High Band Width support of endpoints.
Definition at line 79 of file usbhs_device.h.
#define Is_udd_frame_number_crc_error | ( | ) | (Tst_bits(USBHS->USBHS_DEVFNUM, USBHS_DEVFNUM_FNCERR)) |
Definition at line 190 of file usbhs_device.h.
#define Is_udd_full_speed_mode | ( | ) | true |
Definition at line 100 of file usbhs_device.h.
#define Is_udd_low_speed_enable | ( | ) | (Tst_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_LS)) |
Test if device low-speed mode is forced.
Definition at line 88 of file usbhs_device.h.
#define Is_udd_msof | ( | ) | (Tst_bits(USBHS->USBHS_DEVISR, USBHS_DEVISR_MSOF)) |
Definition at line 200 of file usbhs_device.h.
#define Is_udd_msof_interrupt_enabled | ( | ) | (Tst_bits(USBHS->USBHS_DEVIMR, USBHS_DEVIMR_MSOFE)) |
Definition at line 197 of file usbhs_device.h.
#define Is_udd_pending_remote_wake_up | ( | ) | (Tst_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_RMWKUP)) |
Definition at line 134 of file usbhs_device.h.
#define Is_udd_remote_wake_up_interrupt_enabled | ( | ) | (Tst_bits(USBHS->USBHS_DEVIMR, USBHS_DEVIMR_UPRSME)) |
Definition at line 142 of file usbhs_device.h.
#define Is_udd_remote_wake_up_start | ( | ) | (Tst_bits(USBHS->USBHS_DEVISR, USBHS_DEVISR_UPRSM)) |
Definition at line 145 of file usbhs_device.h.
#define Is_udd_reset | ( | ) | (Tst_bits(USBHS->USBHS_DEVISR, USBHS_DEVISR_EORST)) |
Definition at line 178 of file usbhs_device.h.
#define Is_udd_reset_interrupt_enabled | ( | ) | (Tst_bits(USBHS->USBHS_DEVIMR, USBHS_DEVIMR_EORSTE)) |
Definition at line 175 of file usbhs_device.h.
#define Is_udd_resume | ( | ) | (Tst_bits(USBHS->USBHS_DEVISR, USBHS_DEVISR_EORSM)) |
Definition at line 156 of file usbhs_device.h.
#define Is_udd_resume_interrupt_enabled | ( | ) | (Tst_bits(USBHS->USBHS_DEVIMR, USBHS_DEVIMR_EORSME)) |
Definition at line 153 of file usbhs_device.h.
#define Is_udd_sof | ( | ) | (Tst_bits(USBHS->USBHS_DEVISR, USBHS_DEVISR_SOF)) |
Definition at line 188 of file usbhs_device.h.
#define Is_udd_sof_interrupt_enabled | ( | ) | (Tst_bits(USBHS->USBHS_DEVIMR, USBHS_DEVIMR_SOFE)) |
Definition at line 185 of file usbhs_device.h.
#define Is_udd_suspend | ( | ) | (Tst_bits(USBHS->USBHS_DEVISR, USBHS_DEVISR_SUSP)) |
Definition at line 212 of file usbhs_device.h.
#define Is_udd_suspend_interrupt_enabled | ( | ) | (Tst_bits(USBHS->USBHS_DEVIMR, USBHS_DEVIMR_SUSPE)) |
Definition at line 209 of file usbhs_device.h.
#define Is_udd_wake_up | ( | ) | (Tst_bits(USBHS->USBHS_DEVISR, USBHS_DEVISR_WAKEUP)) |
Definition at line 167 of file usbhs_device.h.
#define Is_udd_wake_up_interrupt_enabled | ( | ) | (Tst_bits(USBHS->USBHS_DEVIMR, USBHS_DEVIMR_WAKEUPE)) |
Definition at line 164 of file usbhs_device.h.
#define udd_ack_msof | ( | ) | (USBHS->USBHS_DEVICR = USBHS_DEVIMR_MSOFE) |
Definition at line 198 of file usbhs_device.h.
#define udd_ack_remote_wake_up_start | ( | ) | (USBHS->USBHS_DEVICR = USBHS_DEVICR_UPRSMC) |
Definition at line 143 of file usbhs_device.h.
#define udd_ack_reset | ( | ) | (USBHS->USBHS_DEVICR = USBHS_DEVICR_EORSTC) |
Definition at line 176 of file usbhs_device.h.
#define udd_ack_resume | ( | ) | (USBHS->USBHS_DEVICR = USBHS_DEVICR_EORSMC) |
Definition at line 154 of file usbhs_device.h.
#define udd_ack_sof | ( | ) | (USBHS->USBHS_DEVICR = USBHS_DEVICR_SOFC) |
Definition at line 186 of file usbhs_device.h.
#define udd_ack_suspend | ( | ) | (USBHS->USBHS_DEVICR = USBHS_DEVICR_SUSPC) |
Definition at line 210 of file usbhs_device.h.
#define udd_ack_wake_up | ( | ) | (USBHS->USBHS_DEVICR = USBHS_DEVICR_WAKEUPC) |
Definition at line 165 of file usbhs_device.h.
#define udd_attach_device | ( | ) | (Clr_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_DETACH)) |
Attaches to USB bus.
Definition at line 121 of file usbhs_device.h.
#define UDD_BULK_NB_BANK | ( | ep | ) | 2 |
Definition at line 343 of file usbhs_device.c.
#define UDD_BULK_NB_BANK_ERROR |
Definition at line 301 of file usbhs_device.c.
#define udd_detach_device | ( | ) | (Set_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_DETACH)) |
Detaches from USB bus.
Definition at line 119 of file usbhs_device.h.
#define udd_disable_msof_interrupt | ( | ) | (USBHS->USBHS_DEVIDR = USBHS_DEVIDR_MSOFEC) |
Definition at line 196 of file usbhs_device.h.
#define udd_disable_remote_wake_up_interrupt | ( | ) | (USBHS->USBHS_DEVIDR = USBHS_DEVIDR_UPRSMEC) |
Definition at line 141 of file usbhs_device.h.
#define udd_disable_reset_interrupt | ( | ) | (USBHS->USBHS_DEVIDR = USBHS_DEVIDR_EORSTEC) |
Definition at line 174 of file usbhs_device.h.
#define udd_disable_resume_interrupt | ( | ) | (USBHS->USBHS_DEVIDR = USBHS_DEVIDR_EORSMEC) |
Definition at line 152 of file usbhs_device.h.
#define udd_disable_sof_interrupt | ( | ) | (USBHS->USBHS_DEVIDR = USBHS_DEVIDR_SOFEC) |
Definition at line 184 of file usbhs_device.h.
#define udd_disable_suspend_interrupt | ( | ) | (USBHS->USBHS_DEVIDR = USBHS_DEVIDR_SUSPEC) |
Definition at line 208 of file usbhs_device.h.
#define udd_disable_wake_up_interrupt | ( | ) | (USBHS->USBHS_DEVIDR = USBHS_DEVIDR_WAKEUPEC) |
Definition at line 163 of file usbhs_device.h.
#define udd_enable_msof_interrupt | ( | ) | (USBHS->USBHS_DEVIER = USBHS_DEVIER_MSOFES) |
Manage Micro start of frame event (High Speed Only)
Definition at line 195 of file usbhs_device.h.
#define udd_enable_remote_wake_up_interrupt | ( | ) | (USBHS->USBHS_DEVIER = USBHS_DEVIER_UPRSMES) |
Manage upstream resume event (=remote wakeup) The USB driver sends a resume signal called "Upstream Resume"
Definition at line 140 of file usbhs_device.h.
#define udd_enable_reset_interrupt | ( | ) | (USBHS->USBHS_DEVIER = USBHS_DEVIER_EORSTES) |
Manage reset event Set when a USB "End of Reset" has been detected
Definition at line 173 of file usbhs_device.h.
#define udd_enable_resume_interrupt | ( | ) | (USBHS->USBHS_DEVIER = USBHS_DEVIER_EORSMES) |
Manage downstream resume event (=remote wakeup from host) The USB controller detects a valid "End of Resume" signal initiated by the host
Definition at line 151 of file usbhs_device.h.
#define udd_enable_sof_interrupt | ( | ) | (USBHS->USBHS_DEVIER = USBHS_DEVIER_SOFES) |
Manage start of frame event
Definition at line 183 of file usbhs_device.h.
#define udd_enable_suspend_interrupt | ( | ) | (USBHS->USBHS_DEVIER = USBHS_DEVIER_SUSPES) |
Manage suspend event
Definition at line 207 of file usbhs_device.h.
#define udd_enable_wake_up_interrupt | ( | ) | (USBHS->USBHS_DEVIER = USBHS_DEVIER_WAKEUPES) |
Manage wake-up event (=usb line activity) The USB controller is reactivated by a filtered non-idle signal from the lines
Definition at line 162 of file usbhs_device.h.
#define UDD_EP_BULK_NB_BANK_ERROR | ( | ep | ) | (UDD_EP_USED(ep) && UDD_EP_ISO_NBANK_ERROR(ep)) |
Definition at line 277 of file usbhs_device.c.
#define UDD_EP_BULK_NBANK_ERROR | ( | ep | ) | ( (UDD_BULK_NB_BANK(ep) < 1) || (UDD_BULK_NB_BANK(ep) > 2) ) |
Definition at line 270 of file usbhs_device.c.
#define UDD_EP_INT_NB_BANK_ERROR | ( | ep | ) | (UDD_EP_USED(ep) && UDD_EP_ISO_NBANK_ERROR(ep)) |
Definition at line 279 of file usbhs_device.c.
#define UDD_EP_INT_NBANK_ERROR | ( | ep | ) | ( (UDD_INTERRUPT_NB_BANK(ep) < 1) || (UDD_INTERRUPT_NB_BANK(ep) > 2) ) |
Definition at line 272 of file usbhs_device.c.
#define UDD_EP_ISO_NB_BANK_ERROR | ( | ep | ) | (UDD_EP_USED(ep) && UDD_EP_ISO_NBANK_ERROR(ep)) |
Definition at line 275 of file usbhs_device.c.
#define UDD_EP_ISO_NBANK_ERROR | ( | ep | ) |
Definition at line 267 of file usbhs_device.c.
#define UDD_EP_NB_BANK_ERROR | ( | ep, | |
type | |||
) | (ATPASTE3(UDD_EP_, type, _NB_BANK_ERROR(ep))) |
Definition at line 282 of file usbhs_device.c.
#define udd_frame_number | ( | ) | (Rd_bitfield(USBHS->USBHS_DEVFNUM, USBHS_DEVFNUM_FNUM_Msk)) |
Definition at line 189 of file usbhs_device.h.
#define udd_get_endpoint_bank_max_nbr | ( | ep | ) | ((ep == 0) ? 1 : (( ep <= 2) ? 3 : 2)) |
Get maximal number of banks of endpoints.
Definition at line 73 of file usbhs_device.h.
#define udd_get_endpoint_max_nbr | ( | ) | (9) |
Get maximal number of endpoints.
Definition at line 70 of file usbhs_device.h.
#define udd_get_endpoint_size_max | ( | ep | ) | (((ep) == 0) ? 64 : 1024) |
Get maximal size of endpoint (3X, 1024/64)
Definition at line 75 of file usbhs_device.h.
#define udd_high_speed_disable | ( | ) | do { } while (0) |
Definition at line 99 of file usbhs_device.h.
#define udd_high_speed_enable | ( | ) | do { } while (0) |
Definition at line 98 of file usbhs_device.h.
#define udd_initiate_remote_wake_up | ( | ) | (Set_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_RMWKUP)) |
Initiates a remote wake-up event
Definition at line 133 of file usbhs_device.h.
#define UDD_INTERRUPT_NB_BANK | ( | ep | ) | 1 |
Definition at line 351 of file usbhs_device.c.
#define UDD_INTERRUPT_NB_BANK_ERROR |
Definition at line 317 of file usbhs_device.c.
#define UDD_ISO_NB_BANK_ERROR |
Definition at line 285 of file usbhs_device.c.
#define UDD_ISOCHRONOUS_NB_BANK | ( | ep | ) | 2 |
Definition at line 335 of file usbhs_device.c.
#define udd_low_speed_disable | ( | ) | (Clr_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_LS)) |
Definition at line 86 of file usbhs_device.h.
#define udd_low_speed_enable | ( | ) | (Set_bits(USBHS->USBHS_DEVCTRL, USBHS_DEVCTRL_LS)) |
Enable/disable device low-speed mode.
Definition at line 85 of file usbhs_device.h.
#define UDD_MAX_PEP_NB (udd_get_endpoint_max_nbr() + 1) |
Definition at line 71 of file usbhs_device.h.
#define udd_micro_frame_number | ( | ) | (Rd_bitfield(USBHS->USBHS_DEVFNUM, (USBHS_DEVFNUM_FNUM_Msk|USBHS_DEVFNUM_MFNUM_Msk))) |
Definition at line 201 of file usbhs_device.h.
#define udd_raise_msof | ( | ) | (USBHS->USBHS_DEVIFR = USBHS_DEVIFR_MSOFS) |
Definition at line 199 of file usbhs_device.h.
#define udd_raise_remote_wake_up_start | ( | ) | (USBHS->USBHS_DEVIFR = USBHS_DEVIFR_UPRSMS) |
Definition at line 144 of file usbhs_device.h.
#define udd_raise_reset | ( | ) | (USBHS->USBHS_DEVIFR = USBHS_DEVIFR_EORSTS) |
Definition at line 177 of file usbhs_device.h.
#define udd_raise_resume | ( | ) | (USBHS->USBHS_DEVIFR = USBHS_DEVIFR_EORSMS) |
Definition at line 155 of file usbhs_device.h.
#define udd_raise_sof | ( | ) | (USBHS->USBHS_DEVIFR = USBHS_DEVIFR_SOFS) |
Definition at line 187 of file usbhs_device.h.
#define udd_raise_suspend | ( | ) | (USBHS->USBHS_DEVIFR = USBHS_DEVIFR_SUSPS) |
Definition at line 211 of file usbhs_device.h.
#define udd_raise_wake_up | ( | ) | (USBHS->USBHS_DEVIFR = USBHS_DEVIFR_WAKEUPS) |
Definition at line 166 of file usbhs_device.h.
#define udd_vbus_monitor_sleep_mode | ( | lock | ) |
Definition at line 427 of file usbhs_device.c.
#define USBHS_DEVEPTCFG_EPDIR_Pos 8 |
Definition at line 63 of file usbhs_device.h.
#define USBHS_SLEEP_MODE_USB_IDLE SLEEPMGR_SLEEP_WFI |
Definition at line 368 of file usbhs_device.c.
#define USBHS_SLEEP_MODE_USB_SUSPEND SLEEPMGR_WAIT_FAST |
Definition of sleep levels.
Definition at line 367 of file usbhs_device.c.
enum udd_ctrl_ep_state_t |
Bit definitions about endpoint control state machine for udd_ep_control_state.
Definition at line 462 of file usbhs_device.c.
if | ( | udd_ctrl_interrupt() | ) |
Definition at line 688 of file usbhs_device.c.
if | ( | Is_udd_reset() | ) |
Definition at line 699 of file usbhs_device.c.
if | ( | Is_udd_suspend_interrupt_enabled() &&Is_udd_suspend() | ) |
Definition at line 715 of file usbhs_device.c.
if | ( | Is_udd_wake_up_interrupt_enabled() &&Is_udd_wake_up() | ) |
Definition at line 728 of file usbhs_device.c.
void udd_attach | ( | void | ) |
Attach device to the bus when possible.
Definition at line 898 of file usbhs_device.c.
|
static |
Call callback associated to setup request.
Definition at line 1802 of file usbhs_device.c.
|
static |
Managed reception of IN packet on control endpoint.
Definition at line 1549 of file usbhs_device.c.
|
static |
Reset control endpoint management.
Called after a USB line reset or at the end of SETUP request (after ZLP)
Definition at line 1462 of file usbhs_device.c.
|
static |
Main interrupt routine for control endpoint.
This switchs control endpoint events to correct sub function.
1
if an event about control endpoint is occured, otherwise 0
. Definition at line 1811 of file usbhs_device.c.
|
static |
Managed reception of OUT packet on control endpoint.
Definition at line 1636 of file usbhs_device.c.
|
static |
Managed overflow event of OUT packet on control endpoint.
Definition at line 1744 of file usbhs_device.c.
|
static |
Send a ZLP IN on control endpoint.
Definition at line 1768 of file usbhs_device.c.
|
static |
Send a ZLP OUT on control endpoint.
Definition at line 1786 of file usbhs_device.c.
|
static |
Managed reception of SETUP packet on control endpoint.
Definition at line 1485 of file usbhs_device.c.
|
static |
Managed stall event of IN/OUT packet on control endpoint.
Definition at line 1760 of file usbhs_device.c.
|
static |
Managed underflow event of IN packet on control endpoint.
Definition at line 1727 of file usbhs_device.c.
void udd_detach | ( | void | ) |
Detaches the device from the bus.
The driver must remove pull-up on USB line D- or D+.
Definition at line 939 of file usbhs_device.c.
void udd_disable | ( | void | ) |
Disables the USB Device mode.
Definition at line 858 of file usbhs_device.c.
void udd_enable | ( | void | ) |
Enables the USB Device mode.
Definition at line 764 of file usbhs_device.c.
uint16_t udd_get_frame_number | ( | void | ) |
Returns the current start of frame number.
Definition at line 974 of file usbhs_device.c.
uint16_t udd_get_micro_frame_number | ( | void | ) |
Returns the current micro start of frame number.
Definition at line 979 of file usbhs_device.c.
uint8_t udd_getaddress | ( | void | ) |
Returns the USB address of device.
Definition at line 968 of file usbhs_device.c.
bool udd_include_vbus_monitoring | ( | void | ) |
Authorizes the VBUS event.
Definition at line 754 of file usbhs_device.c.
bool udd_is_high_speed | ( | void | ) |
Test whether the USB Device Controller is running at high speed or not.
true
if the Device is running at high speed mode, otherwise false
. Definition at line 950 of file usbhs_device.c.
|
static |
Reset control endpoint.
Called after a USB line reset or when UDD is enabled
Definition at line 1438 of file usbhs_device.c.
void udd_send_remotewakeup | ( | void | ) |
The USB driver sends a resume signal called Upstream Resume.
Definition at line 984 of file usbhs_device.c.
void udd_set_address | ( | uint8_t | address | ) |
Changes the USB address of device.
address | New USB address |
Definition at line 960 of file usbhs_device.c.
void udd_set_setup_payload | ( | uint8_t * | payload, |
uint16_t | payload_size | ||
) |
Load setup payload.
payload | Pointer on payload |
payload_size | Size of payload |
Definition at line 997 of file usbhs_device.c.
|
static |
Authorize or not the CPU powerdown mode.
b_idle | true to authorize idle mode |
Definition at line 380 of file usbhs_device.c.
|
static |
USB VBus pin change handler
Definition at line 433 of file usbhs_device.c.
udd_interrupt_end __pad0__ |
Definition at line 748 of file usbhs_device.c.
udd_interrupt_sof_end __pad1__ |
Definition at line 750 of file usbhs_device.c.
|
static |
State of USB line.
Definition at line 371 of file usbhs_device.c.
State of sleep manager.
Definition at line 373 of file usbhs_device.c.
|
static |
Number of data received/sent to/from udd_g_ctrlreq.payload buffer.
Definition at line 478 of file usbhs_device.c.
|
static |
Total number of data received/sent during data packet phase with previous payload buffers.
Definition at line 475 of file usbhs_device.c.
|
static |
State of the endpoint control management.
Definition at line 472 of file usbhs_device.c.
COMPILER_WORD_ALIGNED udd_ctrl_request_t udd_g_ctrlreq |
Global variable to give and record information about setup request management.
Definition at line 459 of file usbhs_device.c.