¿ªÔÆÌåÓý

Date

Re: KB6QVI: ozqrp.com VFO

 

Hi

I wonder if the tuning control might be less jittery if fed from Nano's AREF Pin 21 output rather than the 5V rail to the high end of the tuning control?

Randy, K7AGE


Inline image 1

On Thu, Feb 16, 2017 at 12:36 PM, Jack Purdum via Groups.Io <econjack@...> wrote:
But the function also calls?setFrequency(), which does call the Si5351 routines. The stability of the entire process seems to depend on the analogRead() that sets knob. Given the 10-bit resolution, there's room for some slop in the mapping process. Note how the analogRead() value is expected not to change at all between calls to doTuning() if the user is not changing the pot. The fact that I see -10 after every read tells me there's some slop in the measure. Personally, I'd feel better if we tested the knob using a range (+ or - X) before we say the user has actually changed the frequency.?

If the jitter is constantly moving, we might think it is VFO drift. Your description makes it sound like it's jumping around a central frequency that really isn't changing.

Jack, W8TEE



From: Joel Caulkins <caulktel@...>
To: [email protected]
Sent: Thursday, February 16, 2017 3:23 PM
Subject: Re: [BITX20] KB6QVI: VFO

Jack,

As the last digit jitters the frequency jitters also, so it's not the display I'm worried about. It sounds like the person is gargling:-)

Joel?
KB6QVI

On Feb 16, 2017, at 12:06 PM, Jack Purdum via Groups.Io <econjack@...> wrote:

Joel:

My B40 is apart, but try these while you wait:


void doTuning(){
?unsigned long newFreq; ? ? ? ?// Not used...remove??
?
?int knob = analogRead(ANALOG_TUNING)-10;
?unsigned long old_freq = frequency; ? ? ? ? ? ? ? ? ? ?// Not used...remove??

if (knob == old_knob) ? ? ? ? ? ? ? ?// New...add
? ? return;

? // the knob is fully on the low end, move down by 10 Khz and wait for 200 msec
?if (knob < 10 && frequency > LOWEST_FREQ) {
? ? ? baseTune = baseTune - 10000L;
? ? ? frequency = baseTune;
? ? ? updateDisplay();
? ? ? setFrequency(frequency);
? ? ? delay(200);
? }?
? // the knob is full on the high end, move up by 10 Khz and wait for 200 msec
? else if (knob > 1010 && frequency < HIGHEST_FREQ) {
? ? ?baseTune = baseTune + 10000L;?
? ? ?frequency = baseTune + 50000L;
? ? ?setFrequency(frequency);
? ? ?updateDisplay();
? ? ?delay(200);
? }
? // the tuning knob is at neither extremities, tune the signals as usual
? else if (knob != old_knob){
? ? ?frequency = baseTune + (50L * knob);
? ? ?old_knob = knob;
? ? ?setFrequency(frequency);
? ? ?updateDisplay();
? }
}

I have no idea if this will work, but essentially is says that if we haven't move the tuning knob, don't bother updating the display. Let me know what happens.

Jack, W8TEE


From: Joel Caulkins <caulktel@...>
To: [email protected]
Sent: Thursday, February 16, 2017 2:32 PM
Subject: [BITX20] KB6QVI: VFO

I just ordered one of these to use on my BitX40, the Raduino just isn't working out for me, too much last digit jitter.?
Joel,?KB6QVI






Re: KB6QVI: ozqrp.com VFO

Jack Purdum
 

But the function also calls?setFrequency(), which does call the Si5351 routines. The stability of the entire process seems to depend on the analogRead() that sets knob. Given the 10-bit resolution, there's room for some slop in the mapping process. Note how the analogRead() value is expected not to change at all between calls to doTuning() if the user is not changing the pot. The fact that I see -10 after every read tells me there's some slop in the measure. Personally, I'd feel better if we tested the knob using a range (+ or - X) before we say the user has actually changed the frequency.?

If the jitter is constantly moving, we might think it is VFO drift. Your description makes it sound like it's jumping around a central frequency that really isn't changing.

Jack, W8TEE



From: Joel Caulkins <caulktel@...>
To: [email protected]
Sent: Thursday, February 16, 2017 3:23 PM
Subject: Re: [BITX20] KB6QVI: ozqrp.com VFO

Jack,

As the last digit jitters the frequency jitters also, so it's not the display I'm worried about. It sounds like the person is gargling:-)

Joel?
KB6QVI

On Feb 16, 2017, at 12:06 PM, Jack Purdum via Groups.Io <econjack@...> wrote:

Joel:

My B40 is apart, but try these while you wait:


void doTuning(){
?unsigned long newFreq; ? ? ? ?// Not used...remove??
?
?int knob = analogRead(ANALOG_TUNING)-10;
?unsigned long old_freq = frequency; ? ? ? ? ? ? ? ? ? ?// Not used...remove??

if (knob == old_knob) ? ? ? ? ? ? ? ?// New...add
? ? return;

? // the knob is fully on the low end, move down by 10 Khz and wait for 200 msec
?if (knob < 10 && frequency > LOWEST_FREQ) {
? ? ? baseTune = baseTune - 10000L;
? ? ? frequency = baseTune;
? ? ? updateDisplay();
? ? ? setFrequency(frequency);
? ? ? delay(200);
? }?
? // the knob is full on the high end, move up by 10 Khz and wait for 200 msec
? else if (knob > 1010 && frequency < HIGHEST_FREQ) {
? ? ?baseTune = baseTune + 10000L;?
? ? ?frequency = baseTune + 50000L;
? ? ?setFrequency(frequency);
? ? ?updateDisplay();
? ? ?delay(200);
? }
? // the tuning knob is at neither extremities, tune the signals as usual
? else if (knob != old_knob){
? ? ?frequency = baseTune + (50L * knob);
? ? ?old_knob = knob;
? ? ?setFrequency(frequency);
? ? ?updateDisplay();
? }
}

I have no idea if this will work, but essentially is says that if we haven't move the tuning knob, don't bother updating the display. Let me know what happens.

Jack, W8TEE


From: Joel Caulkins <caulktel@...>
To: [email protected]
Sent: Thursday, February 16, 2017 2:32 PM
Subject: [BITX20] KB6QVI: VFO

I just ordered one of these to use on my BitX40, the Raduino just isn't working out for me, too much last digit jitter.?
Joel,?KB6QVI





Re: KB6QVI: ozqrp.com VFO

 

¿ªÔÆÌåÓý

Jack,

As the last digit jitters the frequency jitters also, so it's not the display I'm worried about. It sounds like the person is gargling:-)

Joel?
KB6QVI

On Feb 16, 2017, at 12:06 PM, Jack Purdum via Groups.Io <econjack@...> wrote:

Joel:

My B40 is apart, but try these while you wait:


void doTuning(){
?unsigned long newFreq; ? ? ? ?// Not used...remove??
?
?int knob = analogRead(ANALOG_TUNING)-10;
?unsigned long old_freq = frequency; ? ? ? ? ? ? ? ? ? ?// Not used...remove??

if (knob == old_knob) ? ? ? ? ? ? ? ?// New...add
? ? return;

? // the knob is fully on the low end, move down by 10 Khz and wait for 200 msec
?if (knob < 10 && frequency > LOWEST_FREQ) {
? ? ? baseTune = baseTune - 10000L;
? ? ? frequency = baseTune;
? ? ? updateDisplay();
? ? ? setFrequency(frequency);
? ? ? delay(200);
? }?
? // the knob is full on the high end, move up by 10 Khz and wait for 200 msec
? else if (knob > 1010 && frequency < HIGHEST_FREQ) {
? ? ?baseTune = baseTune + 10000L;?
? ? ?frequency = baseTune + 50000L;
? ? ?setFrequency(frequency);
? ? ?updateDisplay();
? ? ?delay(200);
? }
? // the tuning knob is at neither extremities, tune the signals as usual
? else if (knob != old_knob){
? ? ?frequency = baseTune + (50L * knob);
? ? ?old_knob = knob;
? ? ?setFrequency(frequency);
? ? ?updateDisplay();
? }
}

I have no idea if this will work, but essentially is says that if we haven't move the tuning knob, don't bother updating the display. Let me know what happens.

Jack, W8TEE


From: Joel Caulkins <caulktel@...>
To: [email protected]
Sent: Thursday, February 16, 2017 2:32 PM
Subject: [BITX20] KB6QVI: VFO

I just ordered one of these to use on my BitX40, the Raduino just isn't working out for me, too much last digit jitter.?
Joel,?KB6QVI



Re: Current limit for PA

M Garza
 

I have about ten 2sc1969s.? I was thinking of trying to fit one of these in, if the IRF510 goes south.? I have no idea how hard that will be, but it will be fun to try.

Maybe I should order a second Bitx...

Marco - KG5PRT?

On Feb 16, 2017 1:03 PM, "Jerry Gaffke via Groups.Io" <jgaffke=[email protected]> wrote:

Though Raj's resistor in the source lead could prove to be the best solution, gives an instantaneous response to excessive current.? The G0KCL circuit is slower (due to filter caps) and the PolySwitch much slower (has to heat up), but either might be adequate to prevent failure here in most cases.? I hope to try some of these schemes out someday soon, safety goggles on and a stash of spare IRF510's at hand. ?

Maybe we need to write up a hack to move this to an RD16HHF1 for those so inclined.? Perhaps a pair of them.? More robust and better behaved than the IRF510.? Popular with those willing to spend $5us on a transistor.


On Thu, Feb 16, 2017 at 10:31 am, Jerry Gaffke wrote:

The G0KLA circuit might be a better bet, it only drops out by around 0.6 or 0.7 volts. ?

?


Re: KB6QVI: ozqrp.com VFO

Jack Purdum
 

Joel:

My B40 is apart, but try these while you wait:


void doTuning(){
?unsigned long newFreq; ? ? ? ?// Not used...remove??
?
?int knob = analogRead(ANALOG_TUNING)-10;
?unsigned long old_freq = frequency; ? ? ? ? ? ? ? ? ? ?// Not used...remove??

if (knob == old_knob) ? ? ? ? ? ? ? ?// New...add
? ? return;

? // the knob is fully on the low end, move down by 10 Khz and wait for 200 msec
?if (knob < 10 && frequency > LOWEST_FREQ) {
? ? ? baseTune = baseTune - 10000L;
? ? ? frequency = baseTune;
? ? ? updateDisplay();
? ? ? setFrequency(frequency);
? ? ? delay(200);
? }?
? // the knob is full on the high end, move up by 10 Khz and wait for 200 msec
? else if (knob > 1010 && frequency < HIGHEST_FREQ) {
? ? ?baseTune = baseTune + 10000L;?
? ? ?frequency = baseTune + 50000L;
? ? ?setFrequency(frequency);
? ? ?updateDisplay();
? ? ?delay(200);
? }
? // the tuning knob is at neither extremities, tune the signals as usual
? else if (knob != old_knob){
? ? ?frequency = baseTune + (50L * knob);
? ? ?old_knob = knob;
? ? ?setFrequency(frequency);
? ? ?updateDisplay();
? }
}

I have no idea if this will work, but essentially is says that if we haven't move the tuning knob, don't bother updating the display. Let me know what happens.

Jack, W8TEE


From: Joel Caulkins <caulktel@...>
To: [email protected]
Sent: Thursday, February 16, 2017 2:32 PM
Subject: [BITX20] KB6QVI: ozqrp.com VFO

I just ordered one of these to use on my BitX40, the Raduino just isn't working out for me, too much last digit jitter.?
Joel,?KB6QVI



Re: possible good case

 

I uses a external case for a full size computer DVD drive that I had in my junk room. The width and height are about perfect and the length of mine is very comfortable for mounting everything with several inches to spare. They often come with suitable 12 and 5v power supply too.


Re: Purdum et al VFO and Kidder circuits

Jack Purdum
 

Yes. I hope to present everything at the FDIM conference this year. I will make everything and the software available at that time.

Jack, W8TEE



From: Craig Wadsworth <cwadsworth@...>
To: [email protected]
Sent: Thursday, February 16, 2017 2:27 PM
Subject: [BITX20] Purdum et al VFO and Kidder circuits

Are you planning a QST article or publishing anywhere else?? Many of us are excited about a CW circuit for the BitX. ?The nice lady at the USPS let me sign for my brand new shiny BitX40 yesterday. ?Woot!

----------
From: Jack Purdum
Date: Thu, 16 Feb 2017 08:19:20 CST?
. . . I'm replacing the Si5351 DDS with a modified version of our VFO board (Mar, 2016, QST) . . . Dennis (W6DQ) is working on the circuitry for an RF AGC, S meter, and CW mode . . .?



KB6QVI: ozqrp.com VFO

 

I just ordered one of these to use on my BitX40, the Raduino just isn't working out for me, too much last digit jitter.?

Joel,?KB6QVI


Purdum et al VFO and Kidder circuits

 

¿ªÔÆÌåÓý

Are you planning a QST article or publishing anywhere else?? Many of us are excited about a CW circuit for the BitX. ?The nice lady at the USPS let me sign for my brand new shiny BitX40 yesterday. ?Woot!


----------

From: Jack Purdum

Date: Thu, 16 Feb 2017 08:19:20 CST?

. . . I'm replacing the Si5351 DDS with a modified version of our VFO board (Mar, 2016, QST) . . . Dennis (W6DQ) is working on the circuitry for an RF AGC, S meter, and CW mode . . .?


Re: Raduino dead?

 

It's alive again. Just unsoldered the old Nano (what a pain) and soldered the new one in place. Now it works again, and I can finish this nice rig.

I have a question, just to be sure not to burn it again.

What is the recommended ground point where the red wire from the Raduino should be shortened to switch to calibration mode. As I killed the Nano during calibration, I just want to be safe not to make the same mistake again.

Could be, I just shortened something, as I did not solder a button but only held the blank wire to ground, while turning the VFO. So could also be a handling mistake and not that I used a wrong ground point, but who knows?


Re: Current limit for PA

 

Though Raj's resistor in the source lead could prove to be the best solution, gives an instantaneous response to excessive current. ?The G0KCL circuit is slower (due to filter caps) and the PolySwitch much slower (has to heat up), but either might be adequate to prevent failure here in most cases. ?I hope to try some of these schemes out someday soon, safety goggles on and a stash of spare IRF510's at hand. ?

Maybe we need to write up a hack to move this to an RD16HHF1 for those so inclined. ?Perhaps a pair of them. ?More robust and better behaved than the IRF510. ?Popular with those willing to spend $5us on a transistor.


On Thu, Feb 16, 2017 at 10:31 am, Jerry Gaffke wrote:

The G0KLA circuit might be a better bet, it only drops out by around 0.6 or 0.7 volts. ?

?


Re: Current limit for PA

 

Unfortunately, from fig 5 on page 6 of the TI datasheet, it has a roughly 2 volt dropout voltage across the LM338 when giving 1.5 amps. ?And you lose another 1.2 volts across that sense resistor. ? So the final would only get about 8.8 volts from a 12v battery. ? If you bump up that battery to 15 volts, then you get 11.8 volts into the final when transmitting at 7 watts, but the supply pops up to 15 volts when not speaking and current draw is low, likely blowing Q13 and the Q14 emitter resistor. ?The G0KLA circuit might be a better bet, it only drops out by around 0.6 or 0.7 volts. ?


On Thu, Feb 16, 2017 at 10:02 am, M Garza wrote:

Looking at the LM338, a 5 amp regulator, the app notes show a constant current regulator circuit.?

?


Re: Current limit for PA

M Garza
 

I am glad no-one said anything.? This circuit looks exactly like the original one I posted, but using a regulator....
Time to put the phone down...

Marco - KG5PRT?

On Feb 16, 2017 12:03 PM, "M Garza" <mgarza896@...> wrote:
Looking at the LM338, a 5 amp regulator, the app notes show a constant current regulator circuit.? It should work with a LM350, the 3 amp version.? This might be the easier solution to restrict the current to the IRF510.? It also could be created so that it just plugs into the PA power port.? It will need to be tested, to see if the output voltage varies much from the input voltage.

Inline image 1

Marco - KG5PRT



On Feb 16, 2017 11:25 AM, "Jerry Gaffke via Groups.Io" <jgaffke=[email protected]> wrote:

A fuse could be good enough to save the IRF510 in many cases, if it is being destroyed by heat rather than avalanche mode.? An alternative to a fuse might be a PolySwitch such as this: ?MINISMDC110F/24-2. ??It resets itself once it cools down, no need to replace it.?


> ? Raj vu2zap wrote: ? A fraction of an ohm resistor in the source lead?would provide a negative bias with increasing device current. There will be a small drop in output power I guess. The resister can be bypassed with a cap.

Well worth trying.? Doesn't take much change in Vgs to significantly cut back on drain current, as anybody who has twiddled VR1 well knows.? Wouldn't waste any more power than the shunt resistor that G0KLA uses to sense the drain current with his scheme.


For those figuring out blown IRF510's, or just puzzled about how that final amplifier works, here's a very quick tour:

L6,L7 form a low-pass filter, it's symmetrical so should be 50 ohms straight through at 7mhz.? C155,C156 are dc blocking caps to keep 12v off of the antenna.? The 2-to-1 winding ratio at T7 transforms that 50 ohms to 200 ohms as seen by the IRF510 drain. ? C153,C154,C157,L8 filter the incoming 12v power supply.? The RV1 gate bias of roughly 4 volts comes in through R150.? The incoming 7mhz signal comes in through the dc blocking cap C152 from the previous stage, driven from the same 2-to-1 winding ratio transformer as the IRF510 has. ? Current down through the IRF510 from drain to source is controlled by the gate voltage.? The gate is well insulated from both drain and source, but capacitance there (mostly from the Miller effect) can suck a lot of power from the previous stage when running at 7mhz. ? Simple enough.? But there are many ways this can all go wrong.

Figure 1 on page 3 of this datasheet gives some idea of how drain current varies with gate voltage: ?? ? But the Vgs(th) spec of 2 to 4 volts on page 2 suggests the gate voltages shown in figure 1 might vary by up to a couple volts between different IRF510's to give the same current.?


Regarding John Smith's constant current regulator: ?We would like a supply that gives a constant voltage, but only up to some maximum current.? There are two ways this can be implemented.? Could simply limit the current to that maximum level, allowing the voltage to drop as it may, John's "constant current".? Or could drop the voltage to near zero when the current limit is exceeded, rather like a circuit breaker, until the operator resets it somehow.? The latter case is called "foldback" current limiting.? Not many regulator IC's bother with providing any kind of easily configurable current limit, which is unfortunate.




Re: Current limit for PA

M Garza
 

Looking at the LM338, a 5 amp regulator, the app notes show a constant current regulator circuit.? It should work with a LM350, the 3 amp version.? This might be the easier solution to restrict the current to the IRF510.? It also could be created so that it just plugs into the PA power port.? It will need to be tested, to see if the output voltage varies much from the input voltage.

Inline image 1

Marco - KG5PRT



On Feb 16, 2017 11:25 AM, "Jerry Gaffke via Groups.Io" <jgaffke=[email protected]> wrote:

A fuse could be good enough to save the IRF510 in many cases, if it is being destroyed by heat rather than avalanche mode.? An alternative to a fuse might be a PolySwitch such as this: ?MINISMDC110F/24-2. ??It resets itself once it cools down, no need to replace it.?


> ? Raj vu2zap wrote: ? A fraction of an ohm resistor in the source lead?would provide a negative bias with increasing device current. There will be a small drop in output power I guess. The resister can be bypassed with a cap.

Well worth trying.? Doesn't take much change in Vgs to significantly cut back on drain current, as anybody who has twiddled VR1 well knows.? Wouldn't waste any more power than the shunt resistor that G0KLA uses to sense the drain current with his scheme.


For those figuring out blown IRF510's, or just puzzled about how that final amplifier works, here's a very quick tour:

L6,L7 form a low-pass filter, it's symmetrical so should be 50 ohms straight through at 7mhz.? C155,C156 are dc blocking caps to keep 12v off of the antenna.? The 2-to-1 winding ratio at T7 transforms that 50 ohms to 200 ohms as seen by the IRF510 drain. ? C153,C154,C157,L8 filter the incoming 12v power supply.? The RV1 gate bias of roughly 4 volts comes in through R150.? The incoming 7mhz signal comes in through the dc blocking cap C152 from the previous stage, driven from the same 2-to-1 winding ratio transformer as the IRF510 has. ? Current down through the IRF510 from drain to source is controlled by the gate voltage.? The gate is well insulated from both drain and source, but capacitance there (mostly from the Miller effect) can suck a lot of power from the previous stage when running at 7mhz. ? Simple enough.? But there are many ways this can all go wrong.

Figure 1 on page 3 of this datasheet gives some idea of how drain current varies with gate voltage: ?? ? But the Vgs(th) spec of 2 to 4 volts on page 2 suggests the gate voltages shown in figure 1 might vary by up to a couple volts between different IRF510's to give the same current.?


Regarding John Smith's constant current regulator: ?We would like a supply that gives a constant voltage, but only up to some maximum current.? There are two ways this can be implemented.? Could simply limit the current to that maximum level, allowing the voltage to drop as it may, John's "constant current".? Or could drop the voltage to near zero when the current limit is exceeded, rather like a circuit breaker, until the operator resets it somehow.? The latter case is called "foldback" current limiting.? Not many regulator IC's bother with providing any kind of easily configurable current limit, which is unfortunate.



tets

 



--
? 73 de Jorge PY2PVT
? Campinas SP
? GG67MD


Re: BITX40 - no RX, no TX

 

tom,

check that the bandpass filter's coils are intact. do a continuity check between their pads, it is possible that the coils' wiring got snapped as well.?

yes, every board is individually tested. First, by the women who solder the components, then by Uma who checks the receiver sensitivity and the output in a test jib.?

Unfortunately, the Indian Post is giving us all grief. The other courier options are about half the price of the board! We are thinking hard about this now...

- f

On Thu, Feb 16, 2017 at 10:56 PM, Tom Mysinski <tomasz@...> wrote:

Thank you Ron for your help, unfortunately desoldering dual diode and replaces two 1N4148 plus 100 ohm trimpot not solve the problem ..... I am looking for further solutions .....


Tom



Re: BITX40 - no RX, no TX

Tom Mysinski
 

Thank you Ron for your help, unfortunately desoldering dual diode and replaces two 1N4148 plus 100 ohm trimpot not solve the problem ..... I am looking for further solutions .....


Tom


Re: Current limit for PA

 

A fuse could be good enough to save the IRF510 in many cases, if it is being destroyed by heat rather than avalanche mode. ?An alternative to a fuse might be a PolySwitch such as this: ?MINISMDC110F/24-2. ??It resets itself once it cools down, no need to replace it.?


> ? Raj vu2zap wrote: ? A fraction of an ohm resistor in the source lead?would provide a negative bias with increasing device current. There will be a small drop in output power I guess. The resister can be bypassed with a cap.

Well worth trying. ?Doesn't take much change in Vgs to significantly cut back on drain current, as anybody who has twiddled VR1 well knows. ?Wouldn't waste any more power than the shunt resistor that G0KLA uses to sense the drain current with his scheme.


For those figuring out blown IRF510's, or just puzzled about how that final amplifier works, here's a very quick tour:

L6,L7 form a low-pass filter, it's symmetrical so should be 50 ohms straight through at 7mhz. ?C155,C156 are dc blocking caps to keep 12v off of the antenna. ?The 2-to-1 winding ratio at T7 transforms that 50 ohms to 200 ohms as seen by the IRF510 drain. ? C153,C154,C157,L8 filter the incoming 12v power supply. ?The RV1 gate bias of roughly 4 volts comes in through R150. ?The incoming 7mhz signal comes in through the dc blocking cap C152 from the previous stage, driven from the same 2-to-1 winding ratio transformer as the IRF510 has. ? Current down through the IRF510 from drain to source is controlled by the gate voltage. ?The gate is well insulated from both drain and source, but capacitance there (mostly from the Miller effect) can suck a lot of power from the previous stage when running at 7mhz. ? Simple enough. ?But there are many ways this can all go wrong.

Figure 1 on page 3 of this datasheet gives some idea of how drain current varies with gate voltage: ?? ? But the Vgs(th) spec of 2 to 4 volts on page 2 suggests the gate voltages shown in figure 1 might vary by up to a couple volts between different IRF510's to give the same current.?


Regarding John Smith's constant current regulator: ?We would like a supply that gives a constant voltage, but only up to some maximum current. ?There are two ways this can be implemented. ?Could simply limit the current to that maximum level, allowing the voltage to drop as it may, John's "constant current". ?Or could drop the voltage to near zero when the current limit is exceeded, rather like a circuit breaker, until the operator resets it somehow. ?The latter case is called "foldback" current limiting. ?Not many regulator IC's bother with providing any kind of easily configurable current limit, which is unfortunate.



Re: Ashhar, thank you

M Garza
 

I agree with with everyone.

Thank you for all your efforts.

Marco - KG5PRT?

On Feb 16, 2017 9:00 AM, "Ricardo Sagol" <ricsagol@...> wrote:

Perfectly said. I second Eddie Statement.? Thanks very much


Ric KM4LEN


Re: Ashhar, thank you

 

Perfectly said. I second Eddie Statement.? Thanks very much


Ric KM4LEN