Announcement

Collapse
No announcement yet.

Modified sketch for improved timing precision.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #16
    This is an Arduino PI forum = and this is arduino program

    Comment


    • #17
      Originally posted by pito View Post
      This is an Arduino PI forum = and this is arduino program
      This thread is about Arduino Nano PI, a project based on Atmega328P.

      If you want to discuss other topics just open your own separate thread instead of derailing mine.

      Comment


      • #18
        In this version,
        - floating arithmetic replaced by integers.
        - timing parameters defined in microseconds
        - interrupt code minimized, parts moved to loop
        - mainSample delay can be as low as 1us

        Aduino_PI2.0.1.zip

        Click image for larger version  Name:	20240209_140733.jpg Views:	0 Size:	147.9 KB ID:	420076

        Comment


        • #19
          Teleno I had high hopes that your mods would improve the sensitivity, but in actual operation, was worse than the code I am using from Gunghouk
          Also, there is an annoying background whistle. My test gold ring was only found at 25cm, where as with the fast-write code from Gunghouk was 40cm.

          No idea why. I will investigate further when I have some time. I was using your version 2.0

          Comment


          • #20
            Originally posted by SaltyDog View Post
            Teleno I had high hopes that your mods would improve the sensitivity, but in actual operation, was worse than the code I am using from Gunghouk
            Also, there is an annoying background whistle. My test gold ring was only found at 25cm, where as with the fast-write code from Gunghouk was 40cm.

            No idea why. I will investigate further when I have some time. I was using your version 2.0
            If yiu post the sketch you're using I can look at the differences and maybe figure out the problem.

            I focused on the timing and I might inadvertently have broken other parts of the code.

            Is the timing of the pulses right? The delays and pulse widths? I mean on the scope.

            Comment


            • #21
              Originally posted by Teleno View Post

              If yiu post the sketch you're using I can look at the differences and maybe figure out the problem.

              I focused on the timing and I might inadvertently have broken other parts of the code.

              Is the timing of the pulses right? The delays and pulse widths? I mean on the scope.
              I don't have time at the moment, have my Daughters wedding ... will try after that with your latest code. I presume you have a full working unit that performs in the field, not just on the bench? Correct timing is one thing, but actual use is the best ..

              Comment


              • #22
                Originally posted by SaltyDog View Post

                I don't have time at the moment, have my Daughters wedding ... will try after that with your latest code. I presume you have a full working unit that performs in the field, not just on the bench? Correct timing is one thing, but actual use is the best ..
                My code is based on the original by George. I might have missed improvements by others, including delays and pulse widths. Would really like to see your code.

                Enjoy the wedding, and congrats I suppose.

                Comment


                • #23
                  Originally posted by Teleno View Post

                  My code is based on the original by George. I might have missed improvements by others, including delays and pulse widths. Would really like to see your code.

                  Enjoy the wedding, and congrats I suppose.
                  The code I was using is attached.
                  Attached Files

                  Comment


                  • #24
                    Originally posted by SaltyDog View Post

                    The code I was using is attached.
                    Actually I meant the code from Gounghouk.


                    These are the signals I get on my setup, including sound. They match the original sketch exactly. Audio 490 Hz, period 1000ms, delay 10us, etc.

                    Using this sketch Arduino_PI2.0.1.zip

                    Tx pulse and mainSample:

                    Click image for larger version  Name:	20240209_220325.jpg Views:	0 Size:	150.8 KB ID:	420094


                    Tx pulse and efeSample

                    Click image for larger version  Name:	20240209_220252.jpg Views:	0 Size:	158.5 KB ID:	420095


                    Sound on pin 11.


                    Click image for larger version  Name:	20240209_220354.jpg Views:	0 Size:	170.4 KB ID:	420096

                    I'm mystified about the whistle cause I haven't touched the sound.



                    Comment


                    • #25
                      Why is mainsample and efeSample inverted? They should be the same polarity as Tx Pulse.

                      Comment


                      • #26
                        Here is the code. You will need to swap the pins back of course.
                        Attached Files

                        Comment


                        • #27
                          Originally posted by SaltyDog View Post
                          Why is mainsample and efeSample inverted? They should be the same polarity as Tx Pulse.
                          Well, no.

                          Look at the schematic and see NPN transistors Q3 and Q4 and guess the polarity of the base signal to turn them on.

                          Also look at the original code:

                          PHP Code:
                          digitalWrite(mainSamplePinsyncDemodOn); // Turn on main sample gate
                          ...
                          digitalWrite(mainSamplePinsyncDemodOff); // Turn off main sample gate 
                          And what are the values of syncDemodOn and syncDemodOff?

                          PHP Code:
                          const byte syncDemodOn LOW// Sample gate turns on when input high
                          const byte syncDemodOff HIGH// Sample gate turns off when input low 
                          So that is not the issue.​

                          Comment


                          • #28
                            I expected to see the waveforms at TP5 and TP8, they should be positive, as is the original code and the fast code from Gunghouk.
                            Anyway, I have to go and sort out the wedding ... talk in a week.

                            Look at the schematic and see NPN transistors Q3 and Q4 and guess the polarity of the base signal to turn them on.
                            And please don't talk to me like an idiot, I am an Electronics Engineer of 50 yrs experience.

                            Comment


                            • #29
                              Originally posted by SaltyDog View Post
                              Here is the code. You will need to swap the pins back of course.
                              I belive the difference is in the pot reading code. The whistle could be jitter from the original pot reading code, which Gounghouk has improved.

                              Code in my file (original):

                              PHP Code:
                              void loop() {
                                  if (
                              readDelayPot == true) {
                                     
                              delayVal analogRead(delayPin); // Read the delay pot
                                     
                              mainDelay delayVal clockCycle defMainDelay// Offset main sample delay
                                     
                              calcTimerValues(); // Calculate new timer values
                                     
                              readDelayPot false// Set read delay pot flag to false
                                    
                              }

                              ​​

                              Improved code by Gounghouk:

                              PHP Code:
                              void loop() { // Read potentiometer,mask out the bottom 3 jittery bits and double the range if selected
                                  
                              MainDelay DefMainDelay + ((analogRead(delayPin) & 0x03F<<potRange); // new delay value
                                  
                              CalcTimerValues(); // Calculate new timer values
                              }​ 

                              Comment


                              • #30
                                Originally posted by SaltyDog View Post
                                I expected to see the waveforms at TP5 and TP8, they should be positive, as is the original code and the fast code from Gunghouk.
                                Anyway, I have to go and sort out the wedding ... talk in a week.


                                And please don't talk to me like an idiot, I am an Electronics Engineer of 50 yrs experience.
                                My scope images correspond to pins 8 and 10, not to TP5 and TP8 (which are inverted by Q3 and Q4).
                                So the scope refers to the polarities at the base of the transistors, not at their collectors.
                                So don't take offence because there was a misunderstanding, we were looking at different nodes.

                                I haven't changed the polarity in the code, so it won't change in the PCB either.

                                For future reference: I will always talk about the signals at the pins of tne Arduino Nano.

                                Comment

                                Working...
                                X