You've already forked dspico-usb-examples
mirror of
https://github.com/LNH-team/dspico-usb-examples.git
synced 2026-01-09 16:27:56 -08:00
16 lines
242 B
C
16 lines
242 B
C
#pragma once
|
|
|
|
typedef enum
|
|
{
|
|
DLDI_IPC_CMD_SETUP,
|
|
DLDI_IPC_CMD_READ_SECTORS,
|
|
DLDI_IPC_CMD_WRITE_SECTORS
|
|
} DldiIpcCommand;
|
|
|
|
typedef struct alignas(32)
|
|
{
|
|
u32 cmd;
|
|
void* buffer;
|
|
u32 sector;
|
|
u32 count;
|
|
} dldi_ipc_cmd_t; |