2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2012-10-25 19:49:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Samsung Electronics
|
|
|
|
* R. Chandrasekar <rcsekar@samsung.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2012-10-25 19:49:22 +00:00
|
|
|
#include <sound.h>
|
|
|
|
|
2018-11-16 02:56:13 +00:00
|
|
|
void sound_create_square_wave(uint sample_rate, unsigned short *data, int size,
|
2018-12-10 17:37:51 +00:00
|
|
|
uint freq, uint channels)
|
2012-10-25 19:49:22 +00:00
|
|
|
{
|
|
|
|
const unsigned short amplitude = 16000; /* between 1 and 32767 */
|
2018-11-16 02:56:13 +00:00
|
|
|
const int period = freq ? sample_rate / freq : 0;
|
2012-10-25 19:49:22 +00:00
|
|
|
const int half = period / 2;
|
|
|
|
|
|
|
|
assert(freq);
|
|
|
|
|
|
|
|
/* Make sure we don't overflow our buffer */
|
|
|
|
if (size % 2)
|
|
|
|
size--;
|
|
|
|
|
|
|
|
while (size) {
|
2018-12-10 17:37:51 +00:00
|
|
|
int i, j;
|
|
|
|
|
2012-10-25 19:49:22 +00:00
|
|
|
for (i = 0; size && i < half; i++) {
|
|
|
|
size -= 2;
|
2018-12-10 17:37:51 +00:00
|
|
|
for (j = 0; j < channels; j++)
|
|
|
|
*data++ = amplitude;
|
2012-10-25 19:49:22 +00:00
|
|
|
}
|
|
|
|
for (i = 0; size && i < period - half; i++) {
|
|
|
|
size -= 2;
|
2018-12-10 17:37:51 +00:00
|
|
|
for (j = 0; j < channels; j++)
|
|
|
|
*data++ = -amplitude;
|
2012-10-25 19:49:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|