2012-10-25 19:49:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Samsung Electronics
|
|
|
|
* R. Chandrasekar <rcsekar@samsung.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2012-10-25 19:49:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <sound.h>
|
|
|
|
|
2014-02-27 20:26:20 +00:00
|
|
|
void sound_create_square_wave(unsigned short *data, int size, uint32_t freq)
|
2012-10-25 19:49:22 +00:00
|
|
|
{
|
|
|
|
const int sample = 48000;
|
|
|
|
const unsigned short amplitude = 16000; /* between 1 and 32767 */
|
|
|
|
const int period = freq ? sample / freq : 0;
|
|
|
|
const int half = period / 2;
|
|
|
|
|
|
|
|
assert(freq);
|
|
|
|
|
|
|
|
/* Make sure we don't overflow our buffer */
|
|
|
|
if (size % 2)
|
|
|
|
size--;
|
|
|
|
|
|
|
|
while (size) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; size && i < half; i++) {
|
|
|
|
size -= 2;
|
|
|
|
*data++ = amplitude;
|
|
|
|
*data++ = amplitude;
|
|
|
|
}
|
|
|
|
for (i = 0; size && i < period - half; i++) {
|
|
|
|
size -= 2;
|
|
|
|
*data++ = -amplitude;
|
|
|
|
*data++ = -amplitude;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|