Originally posted by SaltyDog
View Post
Announcement
Collapse
No announcement yet.
Announcement
Collapse
No announcement yet.
Arduino Nano PI Main Discussion
Collapse
X
-
To answer your question the aim was to standardise the software loop time and ISR times to allow the ISR to complete without interrupting itself thus causing jitter. Most of the ISR time was spent bit banging the outputs, hence fast digital write instead. While attempting that it became obvious that other sections of code were adding to loop time, such as floating point maths in the pulse timing routine. So in for a penny.... I eliminated conditional statements as stated in the comments and used integer variables wherever possible. As stated by Teleno it is not about absolute accuracy but more about consistancy in pulse timing by hardware (preferred) and/or software.
-
I was asking a question of Gunghouk, different discussion, try not to be so sensitive ..Originally posted by Teleno View Post
You can make very precise calculations but at the end of the day if you toggle the pin by software (bit-banging with digitalWrite()), especially inside an interrupt, you have to add the latencies which are not constant. The actual pulses will vary in timing from one period to the other, depending on which instruction is being interrupted. These vatiations are called jitter, and result in higher noise and loss of sensitivity.
You want to control the pulses by hardware with the precision of the crystal clock, which is not a problem because Atmega328P has the right peripheral to do the job.
Why not take andvantage of it? It also results in cleaner code and you don't have to mess wth offsets.
But I'm not forcing you, just giving you a choice for FREE. No thanks!
Leave a comment:
-
You can make very precise calculations but at the end of the day if you toggle the pin by software (bit-banging with digitalWrite()), especially inside an interrupt, you have to add the latencies which are not constant. The actual pulses will vary in timing from one period to the other, depending on which instruction is being interrupted. These vatiations are called jitter, and result in higher noise and loss of sensitivity.Originally posted by SaltyDog View Post
So I did the calculations, why the such precise timing? I don't see the need?
You want to control the pulses by hardware with the precision of the crystal clock, which is not a problem because Atmega328P has the right peripheral to do the job.
Why not take andvantage of it? It also results in cleaner code and you don't have to mess wth offsets.
But I'm not forcing you, just giving you a choice for FREE. No thanks!
Leave a comment:
-
So I did the calculations, why the such precise timing? I don't see the need?Originally posted by Gunghouk View Post1 = 1/16 Mhz = 62.5 nS so multiply those offset values by 62.5nS to give uS.
word TxOnOffset = -40; // TX-on pulse width offset (2.5us)
word MainDelayOffset = -36; // Main sample pulse delay offset (2.25us)
word MainSampleOffset = -41; // Main sample pulse width offset (2.56us)
word EfeDelayOffset = -118; // EFE pulse delay offset (7.38us)
word EfeSampleOffset = -42; // EFE pulse width offset (2.63us)
word TxPeriodOffset = -241; // TX period offset (15.1us)
Leave a comment:
-
I've added a sketch that applies this more precise timing method.Originally posted by Teleno View Post
The way to generate precise pulses is to configure a timer to drive a PWM output.
https://www.geotech1.com/forums/foru...ming-precision
Leave a comment:
-
Nice. Mine is still bare bones awaiting the time and energy to actually test with the assortment of coils I've built or acquired.
Leave a comment:
-
Here is what my unit looks like. Also, I managed 40cm with my gold ring.
The case is a waterproof clam-shell with an over-center clamp, and an o-ring seal.
The handle is a cutdown walking stick ... just perfect ..
Leave a comment:
-
Yep, that was better, thanks.Originally posted by Gunghouk View PostdigitalWriteFast-1.2.0.zip
OK this is from the Arduino site.
https://www.arduino.cc/reference/en/...italwritefast/
Leave a comment:
-
This is the best tool I know of.Originally posted by Teleno View Post
The way to generate precise pulses is to configure a timer to drive a PWM output.
https://dbuezas.github.io/arduino-we...GA328P&timer=0
Leave a comment:

Leave a comment: