Return-Path: X-Spam-DCC: paranoid 1233; Body=2 Fuz1=2 Fuz2=2 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on lipkowski.org X-Spam-Level: X-Spam-Status: No, score=-0.7 required=5.0 tests=BAYES_00,DNS_FROM_AHBL_RHSBL, RATWARE_GECKO_BUILD autolearn=no version=3.1.3 Received: from post.thorcom.com (post.thorcom.com [195.171.43.25]) by paranoid.lipkowski.org (8.13.7/8.13.7) with ESMTP id t31BpS7E011625 for ; Wed, 1 Apr 2015 13:51:28 +0200 Received: from majordom by post.thorcom.com with local (Exim 4.14) id 1YdH6T-0003E8-Gk for rs_out_1@blacksheep.org; Wed, 01 Apr 2015 12:46:37 +0100 Received: from [195.171.43.32] (helo=relay1.thorcom.net) by post.thorcom.com with esmtp (Exim 4.14) id 1YdH6T-0003Dz-7U for rsgb_lf_group@blacksheep.org; Wed, 01 Apr 2015 12:46:37 +0100 Received: from mail-wg0-f52.google.com ([74.125.82.52]) by relay1.thorcom.net with esmtps (TLSv1.2:AES128-GCM-SHA256:128) (Exim 4.85) (envelope-from <73dk7fc@googlemail.com>) id 1YdH6R-0004An-Dg for rsgb_lf_group@blacksheep.org; Wed, 01 Apr 2015 12:46:36 +0100 Received: by wgbdm7 with SMTP id dm7so50350118wgb.1 for ; Wed, 01 Apr 2015 04:46:34 -0700 (PDT) X-DKIM-Result: Domain=googlemail.com Result=Good and Known Domain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=from:message-id:date:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=eiOuy8DLhFOmp6JxHlSwuYWJFBXo8RO1e5jMTwobDmc=; b=Y+gntp8bZN/FPf2uofOhCCWXJpcaQ3jp1hl6oDJQeypCDO4W7/aarYMzeyUADf1HHJ HBSyJmqA+VJ47FJ/rhtVC1SBEU1FEFZem8hfoHtelK8xSaxMXP+D5D5OS33WXm8v9ghC Us4kWFjkKb2Cwg3PI8VzG1MASA9VcmXkoAdtcpOvxQQ6EM2PDgkNONX84fV1a6BXUYhq xi3bhAaMqtBQpG/OCD6NGD5LyqIOYqXZXDhzCcmB7UILTXFV9MbIwbnJyuklw+LrvRlO sDgqTtk6KFZ8OG+w2MGcAFaOPivyRf9l3f663yeyZO711TYwpG0jyUxKF9jSbfxxY9w/ pzag== X-Received: by 10.194.191.228 with SMTP id hb4mr84564448wjc.116.1427888794643; Wed, 01 Apr 2015 04:46:34 -0700 (PDT) Received: from [129.206.22.206] (pc206.iup.uni-heidelberg.de. [129.206.22.206]) by mx.google.com with ESMTPSA id bd1sm25104339wib.13.2015.04.01.04.46.33 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 01 Apr 2015 04:46:33 -0700 (PDT) From: DK7FC <73dk7fc@googlemail.com> X-Google-Original-From: DK7FC <73dk7fc@gmail.com> Message-ID: <551BDA98.1050504@gmail.com> Date: Wed, 01 Apr 2015 13:46:32 +0200 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.1.8) Gecko/20100227 Thunderbird/3.0.3 MIME-Version: 1.0 To: rsgb_lf_group@blacksheep.org References: <4698D0522AFD45F896A41F2D16A2D831@AGB> <19EEF7A6DD30462FA6ACC0F015DC9F52@AGB> <5509E3D5.90900@gmail.com> <55102D0C.8040405@gmail.com>,<55148587.3090101@gmail.com> <7E7DFBB4D102A04DB5ADC88D66628A4A234F1A25@ICTS-S-MBX1.luna.kuleuven.be> <520562D5C7694FF69C20E595E00B793D@F6CNIToshiba> <55155AD6.1090102@gmail.com> <551B07AA.5010900@gmail.com> In-Reply-To: X-Scan-Signature: 046f068074e745d5c60ca47deee9b503 Subject: Re: LF: WSPR at 4xf from a Raspberry Pi Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-SA-Exim-Scanned: Yes Sender: owner-rsgb_lf_group@blacksheep.org Precedence: bulk Reply-To: rsgb_lf_group@blacksheep.org X-Listname: rsgb_lf_group X-SA-Exim-Rcpt-To: rs_out_1@blacksheep.org X-SA-Exim-Scanned: No; SAEximRunCond expanded to false X-Scanned-By: MIMEDefang 2.56 on 10.1.3.10 Status: O X-Status: X-Keywords: X-UID: 2844 Hi Joe, Am 01.04.2015 00:42, schrieb jcraig@mun.ca: > Hi Stefan, > > That's very clever. It seems the code is quite complex; can you explain > how it generates a carrier to someone who is an ungifted programmer? Not really. There are some key-words that i know, like 'fractional divider'... but i don't understand the code. But that isn't necessary for the modification i wanted to realise. > My level is not much better than this: > > def beep13(t2): > i=0 > while i<500*t2: > i+=1 > GPIO.output(13,1) #GPIO.HIGH) > time.sleep(0.001) > GPIO.output(13,0) #GPIO.LOW) > time.sleep(0.001) > return > > I used this piece of python as a 500 Hz side tone for a pi keyer but > doubt it will work at 479 kHz. Yes, it would not work. I've also tested a similar program to drive a LED at high frequencies. The output-f is unstable, high jitter... If you want to use the WSPR function, you just need to read the informations on the links i recently sent. 2 weeks ago i have been in the same situation ;-) 73, Stefan > > 73 and thanks for the reports on your progress. > > Joe