mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 13:02:38 +02:00
btdrv: Added support for the new 12.0.0 cmds.
This commit is contained in:
parent
c9e9ea9c21
commit
7b82bde9b1
@ -138,6 +138,23 @@ typedef enum {
|
|||||||
BtdrvBleEventType_Unknown13 = 13, ///< Unknown.
|
BtdrvBleEventType_Unknown13 = 13, ///< Unknown.
|
||||||
} BtdrvBleEventType;
|
} BtdrvBleEventType;
|
||||||
|
|
||||||
|
/// AudioEventType
|
||||||
|
typedef enum {
|
||||||
|
BtdrvAudioEventType_None = 0, ///< None
|
||||||
|
BtdrvAudioEventType_Connection = 1, ///< Connection
|
||||||
|
} BtdrvAudioEventType;
|
||||||
|
|
||||||
|
/// AudioOutState
|
||||||
|
typedef enum {
|
||||||
|
BtdrvAudioOutState_Stopped = 0, ///< Stopped
|
||||||
|
BtdrvAudioOutState_Started = 1, ///< Started
|
||||||
|
} BtdrvAudioOutState;
|
||||||
|
|
||||||
|
/// AudioCodec
|
||||||
|
typedef enum {
|
||||||
|
BtdrvAudioCodec_Pcm = 0, ///< Raw PCM
|
||||||
|
} BtdrvAudioCodec;
|
||||||
|
|
||||||
/// Address
|
/// Address
|
||||||
typedef struct {
|
typedef struct {
|
||||||
u8 address[0x6]; ///< Address
|
u8 address[0x6]; ///< Address
|
||||||
|
Loading…
Reference in New Issue
Block a user