#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#define SAMPLERATE 22050
#define SAMPLESPERBUF (SAMPLERATE / 30)
#define BYTESPERSAMPLE 4
void fill_buffer(void *audioBuffer,size_t offset, size_t size, int frequency ) {
u32 *dest = (
u32*)audioBuffer;
for (int i=0; i<size; i++) {
s16 sample = INT16_MAX * sin(frequency*(2*M_PI)*(offset+i)/SAMPLERATE);
dest[i] = (sample<<16) | (sample & 0xffff);
}
}
int main(int argc, char **argv) {
ndspWaveBuf waveBuf[2];
printf("libctru streaming audio\n");
bool fillBlock = false;
float mix[12];
memset(mix, 0, sizeof(mix));
mix[0] = 1.0;
mix[1] = 1.0;
int notefreq[] = {
262, 294, 339, 349, 392, 440,
494, 440, 392, 349, 339, 294
};
int note = 4;
memset(waveBuf,0,sizeof(waveBuf));
waveBuf[0].data_vaddr = &audioBuffer[0];
waveBuf[0].nsamples = SAMPLESPERBUF;
waveBuf[1].data_vaddr = &audioBuffer[SAMPLESPERBUF];
waveBuf[1].nsamples = SAMPLESPERBUF;
size_t stream_offset = 0;
fill_buffer(audioBuffer,stream_offset, SAMPLESPERBUF * 2, notefreq[note]);
stream_offset += SAMPLESPERBUF;
printf("Press up/down to change tone\n");
break;
note -= 1;
if (note<0) note = sizeof(notefreq)/sizeof(notefreq[0])-1;
}
note += 1;
if (note > (sizeof(notefreq)/sizeof(notefreq[0])-1)) note = 0;
}
fill_buffer(waveBuf[fillBlock].data_pcm16, stream_offset, waveBuf[fillBlock].nsamples,notefreq[note]);
stream_offset += waveBuf[fillBlock].nsamples;
fillBlock = !fillBlock;
}
}
return 0;
}
bool aptMainLoop(void)
Main function which handles sleep mode and HOME/power buttons - call this at the beginning of every f...
@ NDSP_FORMAT_STEREO_PCM16
Buffer contains Stereo PCM16.
Definition: channel.h:29
void ndspChnSetMix(int id, float mix[12])
Sets the mix parameters (volumes) of a channel.
void ndspChnWaveBufAdd(int id, ndspWaveBuf *buf)
Adds a wave buffer to the wave buffer queue of a channel.
@ NDSP_INTERP_LINEAR
Linear interpolation.
Definition: channel.h:44
void ndspChnSetRate(int id, float rate)
Sets the sample rate of a channel.
void ndspChnSetFormat(int id, u16 format)
Sets the format of a channel.
void ndspChnSetInterp(int id, ndspInterpType type)
Sets the interpolation type of a channel.
PrintConsole * consoleInit(gfxScreen_t screen, PrintConsole *console)
Initialise the console.
PrintConsole * consoleSelect(PrintConsole *console)
Make the specified console the render target.
Result DSP_FlushDataCache(const void *address, u32 size)
Flushes the cache.
void gfxSwapBuffers(void)
Updates the configuration of both screens.
void gfxInitDefault(void)
Initializes the LCD framebuffers with default parameters This is equivalent to calling:
@ GFX_TOP
Top screen.
Definition: gfx.h:26
void gfxExit(void)
Deinitializes and frees the LCD framebuffers.
void gfxFlushBuffers(void)
Flushes the data cache for the current framebuffers.
#define gspWaitForVBlank()
Waits for VBlank.
Definition: gspgpu.h:151
@ KEY_UP
D-Pad Up or Circle Pad Up.
Definition: hid.h:37
@ KEY_START
Start.
Definition: hid.h:15
@ KEY_DOWN
D-Pad Down or Circle Pad Down.
Definition: hid.h:38
u32 hidKeysDown(void)
Returns a bitmask of newly pressed buttons, this frame.
void hidScanInput(void)
Scans HID for input data.
void * linearAlloc(size_t size)
Allocates a 0x80-byte aligned buffer.
void linearFree(void *mem)
Frees a buffer.
void ndspSetOutputMode(ndspOutputMode mode)
Sets the output mode.
@ NDSP_WBUF_DONE
The wave buffer has finished being played.
Definition: ndsp.h:53
void ndspExit(void)
Exits NDSP.
@ NDSP_OUTPUT_STEREO
Stereo sound.
Definition: ndsp.h:17
Result ndspInit(void)
Initializes NDSP.
Console structure used to store the state of a console render context.
Definition: console.h:77
int16_t s16
16-bit signed integer
Definition: types.h:27
uint32_t u32
32-bit unsigned integer
Definition: types.h:23