summaryrefslogtreecommitdiff
path: root/arm9/lib/NitroSDK/include/SPI_mic.h
blob: 999aeba367268ef69b749be3b798118c5335cc22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef NITRO_SPI_MIC_H_
#define NITRO_SPI_MIC_H_

#include "global.h"


struct MIC_SamplingData
{
    u32 unk00;
    u8 *unk04;
    u32 unk08;
    u32 unk0c;
    u32 unk10;
    u32 unk14;
    u32 unk18;
};

void MIC_Init(void);
u32 MIC_StartAutoSampling(struct MIC_SamplingData *data);
u32 MIC_StopAutoSampling();
u32 MIC_DoSamplingAsync(u32 param0, u32 param1, u32 param2, u32 param3);

#endif //NITRO_SPI_MIC_H_