Originally posted by Teleno
View Post
Announcement
Collapse
No announcement yet.
Modified sketch for improved timing precision.
Collapse
X
-
Originally posted by Gunghouk View Post
That's why shifting right twice, as also suggested, to give 8bit resolution is preferred over simple masking.
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.
- Likes 1
Comment
-
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.zipAttached Files
- Likes 1
Comment
-
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).
- Likes 1
Comment
-
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?
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
- Likes 3
Comment
-
Originally posted by SaltyDog View PostTimer3 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.
See registers GTCCR and PSSR.
Comment
-
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.
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 = 1 << DDB1; // Timer1 output pin 9 (D9)
DDRF = 1 << DDF1; // Timer3 output pin 1 (TX)
GTCCR = 1 << TSM | 1 << PSRSYNC; // Freeze Timer1 and TImer3
TCNT1 = 0; // Clear timer counts
TCNT3 = 0;
TCCR1A = 1 << COM1A1 | 1 << WGM10; // Timer1 configuration
OCR1A = 85;
TCCR3A = 1 << COM3A1 | 1 << WGM30; // Timer3 configuration identical to Timer1
OCR3A = 85;
TCCR1B = 1 << CS10; // Start timers with prescaler 1
TCCR3B = 1 << CS30;
GTCCR = 0; // Release timers
}
void loop() {
// put your main code here, to run repeatedly:
}
​​​
Without syncing
With sync (GTCCR statements commented out)
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.
- Likes 1
Comment
-
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(width, height, sizeof(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(0, 2);
oled.print("DELAY");
oled.setCursor(0, 0);
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(70, 0);
oled.print(mainDelay);
oled.print(" ");
#endif​
This is what you'll get
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?
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.
- Likes 1
Comment
-
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
-
Originally posted by Teleno View PostNow 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.
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
-
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.
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.
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
-
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.
Comment
-
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.
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
Comment