From 109a23b70f67552a9ce27f682bb2b1bdbb2bb4f3 Mon Sep 17 00:00:00 2001 From: zautrix Date: Mon, 30 Aug 2004 20:21:20 +0000 Subject: sine fix --- (limited to 'gammu/emb') diff --git a/gammu/emb/common/common.pro b/gammu/emb/common/common.pro index 9342cb7..0e719ee 100644 --- a/gammu/emb/common/common.pro +++ b/gammu/emb/common/common.pro @@ -172,6 +172,7 @@ phone/nokia/nfuncold.c \ phone/obex/obexgen.c \ phone/symbian/mroutgen.c +DEFINES += DESKTOP_VERSION TARGET = microgammu CONFIG = warn_off release console DESTDIR = ../../../bin diff --git a/gammu/emb/common/service/gsmring.c b/gammu/emb/common/service/gsmring.c index f7f7082..7df46f1 100644 --- a/gammu/emb/common/service/gsmring.c +++ b/gammu/emb/common/service/gsmring.c @@ -104,8 +104,12 @@ GSM_Error savewav(FILE *file, GSM_Ringtone *ringtone) Note = &ringtone->NoteTone.Commands[i].Note; phase_step = GSM_RingNoteGetFrequency(*Note)*WAV_SAMPLE_RATE*1.5; for (j=0;j<((long)(GSM_RingNoteGetFullDuration(*Note)*WAV_SAMPLE_RATE/70));j++) { - /*DATA_Buffer[j] = ((int)(sin(phase*PI)*50000));*/ +#ifdef DESKTOP_VERSION + DATA_Buffer[j] = ((int)(sin(phase*PI)*50000)); +#else + // we have no sin on Zaurus DATA_Buffer[j] = ((int)(0.5*50000)); +#endif phase = phase + phase_step; length++; } -- cgit v0.9.0.2