Announcement

Collapse
No announcement yet.

Modified sketch for improved timing precision.

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

  • #61
    Originally posted by Teleno View Post
    For the frequency it doesn't matter. If we mask then the frequency will move in a few large steps like a cheap videogame sound. Let's try it first like this.
    That's why shifting right twice, as also suggested, to give 8bit resolution is preferred over simple masking.

    Comment


    • #62
      Originally posted by Gunghouk View Post

      That's why shifting right twice, as also suggested, to give 8bit resolution is preferred over simple masking.
      Well, I just say try both and find out which sound appeals to you. Test instead of speculate.

      By the way, I recommend this Nano clone with LGT8F328P mcu. This chip has all the instructions and registers of the Atmega328P and much more (extra 16bit timer, 12 bit ADC, 8 bit DAC, power pins, configurable gain amplifier, 16bit arithmetic and it runs at 32MHz).

      https://www.aliexpress.com/i/1005005854795426.html

      Install the core libraries here https://github.com/dbuezas/lgt8fx

      Then edit the file "C:\Users\....\AppData\Local\Arduino15\package s\lg t8fx\hardware\avr\2.0.7\cores\lgt8f\Arduino.h

      and comment out these lines at the bottoom of the file:

      PHP Code:
       #ifndef nop
       #define  nop() __asm__ __volatile__ ("nop" ::)
       #endif​ 

      This will prevent compilation errors, in particular with the Tiny4kOLED library.

      Comment


      • #63
        Latest build.

        It includes all the code: PWM, FM+AM sound, OLED dislplay with current delay value

        Comment out unwanted features before building & uploading. Read carefully the instructions in the file. Links to the relevant posts regarding the PCB modifications are in the file.

        Arduino_PI_Teleno.zip
        Attached Files

        Comment


        • #64
          By the way, I recommend this Nano clone with LGT8F328P mcu. This chip has all the instructions and registers of the Atmega328P and much more (extra 16bit timer, 12 bit ADC, 8 bit DAC, power pins, configurable gain amplifier, 16bit arithmetic and it runs at 32MHz).
          Interesting, what onboard XTAL does it use 32MHz or 16MHz? Can it be a "drop in" replacement for this project, with tweaking for MHz?

          Comment


          • #65
            Originally posted by SaltyDog View Post

            Interesting, what onboard XTAL does it use 32MHz or 16MHz? Can it be a "drop in" replacement for this project, with tweaking for MHz?
            Mostly come with an external 16MHz crystal because they're sold as Arduino Nano's. Once the lgt8f boards are installed in Arduino IDE you can select the frequency in the menu: internal 32MHz, 16Mhz or external crystal 32Mhz or 16MHz.

            If you do a clock change you have to adjust the "#define US" in the sketch to the actual number of cycles per microsecond (32 or 16 for 32MHz or 16Mz respectively).
            Or better yet, replace "#define US 16" with "#define US ((byte) (F_CPU/1000000UL))" to adjust automatically.

            It's more that a drop in replacement, it has an extra 16bit TImer3 wth three independent PWM channels, so all three pulses (Tx, mainSample, efeSample) can be generated in hardware.

            PS: It's the one I've been using to develop this sketch

            Comment


            • #66
              Timer3 looks good for 3-phase motor control as well. Nice. Except, all 3 outputs are only available on the 40 pin Nano board, not the current 30 pin.

              Comment


              • #67
                Originally posted by SaltyDog View Post
                Timer3 looks good for 3-phase motor control as well. Nice. Except, all 3 outputs are only available on the 40 pin Nano board, not the current 30 pin.
                There's a workaround. T1 and T3 can be made to share the same prescaler, then they can be synchronized and we can get 3 PWM outputs in pace.

                See registers GTCCR and PSSR.

                Comment


                • #68
                  Originally posted by Teleno View Post

                  There's a workaround. T1 and T3 can be made to share the same prescaler, then they can be synchronized and we can get 3 PWM outputs in pace.

                  See registers GTCCR and PSSR.
                  Example code to sync 16 bit timers Timer1 and Timer3 in LGT8F328P.

                  PHP Code:
                  /**
                    * URL: https://dbuezas.github.io/arduino-web-timers/#mcu=LGT8F328P&timer=3&timerMode=PCPWM&clockPrescalerOrSource=256&FCPU_UI=16Mhz&OCnA_OutputPort=F1&CompareOutputModeA=clear-up%2C+set-down&OCR3A=85
                    * Mode     : PCPWM
                    * Period   : 31.875 us
                    * Frequency: 31.37255 kHz
                    * Outputs  :
                    *  - F1: 33.33%, clear-up, set-down
                    */
                  void setup(){
                    
                  DDRB =   << DDB1;                 // Timer1 output pin 9 (D9)
                    
                  DDRF =   << DDF1;                 // Timer3 output pin 1 (TX)

                    
                  GTCCR << TSM << PSRSYNC;     // Freeze Timer1 and TImer3

                    
                  TCNT1 0;                           // Clear timer counts
                    
                  TCNT3 0;

                    
                  TCCR1A << COM1A1 << WGM10;   // Timer1 configuration
                    
                  OCR1A 85;

                    
                  TCCR3A << COM3A1 << WGM30;   // Timer3 configuration identical to Timer1
                    
                  OCR3A 85;

                    
                  TCCR1B << CS10;                  // Start timers with prescaler 1
                    
                  TCCR3B << CS30;

                    
                  GTCCR 0;                          // Release timers
                  }
                  void loop() {
                    
                  // put your main code here, to run repeatedly:
                  }
                  ​​​ 
                  ​

                  Without syncing

                  Click image for larger version

Name:	20240212_114908.jpg
Views:	205
Size:	134.0 KB
ID:	420224


                  With sync (GTCCR statements commented out)

                  Click image for larger version

Name:	20240212_123124.jpg
Views:	163
Size:	134.1 KB
ID:	420225


                  The difference is negligible taking into account that the efeSample delay is not critical. As long as the delay is constant. So we could do without the syncing.

                  Comment


                  • #69
                    Above: Without syncing should be "With syncing", the screen shots are swapped.

                    Comment


                    • #70
                      Originally posted by Teleno View Post

                      Here's the display code.

                      Place this snippet at the beginning of the sketch

                      PHP Code:
                      #define USE_OLED

                      #ifdef USE_OLED
                      #include <Tiny4kOLED.h>
                      #include <font16x32digits.h>
                      const DCfont *largeFont FONT16X32DIGITS;
                      const 
                      DCfont *smallFont FONT8X16;
                      uint8_t width 128;
                      uint8_t height 32;
                      #endif​ 


                      This snippet at the beginning of setup()

                      PHP Code:
                      #ifdef USE_OLED
                      oled.begin(widthheightsizeof(tiny4koled_init_128x32br), tiny4koled_init_128x32br);
                      oled.setFont(smallFont);
                      if (
                      smallFont->width == 0) {
                      oled.setSpacing(1);
                      } else {
                      oled.setSpacing(smallFont->spacing 1);
                      }
                      oled.on();
                      oled.clear();
                      oled.setCursor(02);
                      oled.print("DELAY");
                      oled.setCursor(00);
                      oled.print("us");
                      oled.setFont(largeFont);
                      if (
                      smallFont->width == 0) {
                      oled.setSpacing(1);
                      } else {
                      oled.setSpacing(largeFont->spacing 1);
                      }
                      #endif​ 


                      and this snippet in the loop()

                      PHP Code:
                      #ifdef USE_OLED
                      oled.setCursor(700);
                      oled.print(mainDelay);
                      oled.print(" ");
                      #endif​ 


                      This is what you'll get

                      Click image for larger version Name:	20240210_215145.jpg Views:	0 Size:	57.1 KB ID:	420154

                      If you won't use the OLED comment out the "#define USE_OLED" line and rebuild. Otherwise Nano will wait forever for a display to be ready that doesn't exist.

                      Install the following libraries in Arduino (using search box)

                      Tiny4kOLED
                      TinyOLED-Fonts

                      The display is 0.91 inch OLED 128x32 based on controller SSD1306. Like this one: https://www.aliexpress.com/item/1005006431809403.html?
                      Hi, I have just added the display and can now report the following findings:

                      1. <= 20uS no targets found.
                      2. 25uS all target metals found
                      3. 70..75 uS Gold target disappears but other metals still found, Aluminium pull-tabs faint ...

                      I can also report a session down at the beach scored one gold ring and "no" rubbish dug. As I hunted at 25uS, then confirmed target at 75uS.
                      So I am a happy man.

                      Different coils and dampening may give different numbers for you. But the above discrimination is possible.

                      Comment


                      • #71
                        Now correct me if I'm wrong but C6 and R13 between TP6 and the input of the analog switches are totally wrong.

                        C6/R13 turn the EF signal (which is constant within one period) into a decaying exponential. After efeSampleDelay the signal being subtracted at the differential integrator is not the EF signal level that's riding on the main sample, but a decayed version at a lower level, breaking the EF compensation scheme.

                        In MOD3 (see /doc folder in the sketch distribution) I suggest removing C6 and shorting its pads, and removing R13. Then adjust the offset at TP6.

                        Comment


                        • #72
                          Originally posted by Teleno View Post
                          Now correct me if I'm wrong but C6 and R13 between TP6 and the input of the analog switches are totally wrong.

                          C6/R13 turn the EF signal (which is constant within one period) into a decaying exponential. After efeSampleDelay the signal being subtracted at the differential integrator is not the EF signal level that's riding on the main sample, but a decayed version at a lower level, breaking the EF compensation scheme.

                          In MOD3 (see /doc folder in the sketch distribution) I suggest removing C6 and shorting its pads, and removing R13. Then adjust the offset at TP6.
                          I don't think that will work. C6/R13 is a differentiator, and is a required high pass filter(Freq >34 Hz),
                          It also performs the task of getting rid of the DC component for the EFE stage.

                          In the field the EFE compensation must work, as I am not seeing any ground effect.

                          Comment


                          • #73
                            Originally posted by SaltyDog View Post

                            I don't think that will work. C6/R13 is a differentiator, and is a required high pass filter(Freq >34 Hz),
                            It also performs the task of getting rid of the DC component for the EFE stage.

                            In the field the EFE compensation must work, as I am not seeing any ground effect.
                            It's nor a ground effect, it's the voltage induced by the earth's magnetic field as you swing the coi.

                            EF is a DC offset within a period. If you pass it through an RC differentiator you get a decaying exponential. Just do the simulation.

                            Top: no differentiator. Bottom with differentiator.

                            Click image for larger version

Name:	Schermopname (371).png
Views:	142
Size:	149.5 KB
ID:	420546


                            To get rid of the EF component you wat till the target signal has vanished (that's what the long efeSample delay is for), sample it and subtract it from the (signal +EF) early component.

                            The differentiator is in the way. I would say the whole analog part is crappy, starting with the huge gain of the first op amp that kills any bandwidth.

                            Comment


                            • #74
                              Originally posted by SaltyDog View Post

                              Hi, I have just added the display and can now report the following findings:

                              1. <= 20uS no targets found.
                              2. 25uS all target metals found
                              3. 70..75 uS Gold target disappears but other metals still found, Aluminium pull-tabs faint ...

                              I can also report a session down at the beach scored one gold ring and "no" rubbish dug. As I hunted at 25uS, then confirmed target at 75uS.
                              So I am a happy man.

                              Different coils and dampening may give different numbers for you. But the above discrimination is possible.
                              Glad it worked for you. I appreciate your feedback but where's my share of the bounty?

                              Comment


                              • #75
                                Originally posted by Teleno View Post

                                To get rid of the EF component you wat till the target signal has vanished (that's what the long efeSample delay is for), sample it and subtract it from the (signal +EF) early component.

                                The differentiator is in the way. I would say the whole analog part is crappy, starting with the huge gain of the first op amp that kills any bandwidth.
                                Theory is one thing, where are all your results from field testing ...
                                The current design works very well. The op-amp has a very good gain/bandwidth product, and can easily do 1000 gain with little noise, so why not?
                                I have tried in the past lot's of dual op-amp designs and they have all performed worse than the single high gain solution.
                                Again theory is one thing, but you have to actually do the field testing ..

                                Comment

                                Working...
                                X