Didn't know that there are some JFETs with an integrated flyback diode. I'll add that to the todo list. And I also need to investigate the impact on symmetrical JFETs.
And regarding to having the body diode or not by default, I and noticed it's present in some of the m-firmware bitmaps.
From what I see, for transistors he uses the standard symbols, and optionally takes the upward or downward diode from custom extra characters of the font, and prints it under the upper-right terminal number.
The latest solution is a refinement of an earlier idea.
Yes, everything is clear now, thank you. You draw an additional diode using 3 lines.
A perfectly reasonable approach, but it does require some work on the existing character sets we currently have.
/*
* Compare gate voltages to distinguish JFET from MOSFET
*/
/* set probes: probe-1 -- Vcc / probe-2 -- Rl -- Gnd / probe-3 -- Rh -- Gnd */
R_PORT = 0; /* pull down drain via Rl & gate via Rh */
...
/* consider intrinsic or optional flyback diode (causes low Diff_2) */
if (Diff_2 < (Offset / 2)) /* diode */
{
/* swap Diff_1 and Diff_2 */
/* to fix reversed D/S issue caused by diode */
U_1 = Diff_1;
Diff_1 = Diff_2;
Diff_2 = U_1;
}
/*
* Compare gate voltages to distinguish JFET from MOSFET
*/
/*
* check if we got a p-channel JFET or depletion-mode MOSFET
* - JFETs are depletion-mode only
*/
if (Flag != SIGNAL_FET) /* no n-ch dep-mode FET found */
...
Back to JFETs with an integrated flyback diode. Yuriy_K has such an n-ch JFET. But are there also p-ch JFETs with a diode?



Hello people, getting crazier and crazier, I am trying to update the firmware from version 1.40 to 1.52, since I had to return the programmer, since I have not been able to make it work, I set up the connection this way
Hello people, getting crazier and crazier, I am trying to update the firmware from version 1.40 to 1.52, since I had to return the programmer, since I have not been able to make it work, I set up the connection this way
You should have a 12-22pF a capacitor from pin 9 to ground and from pin 10 to ground. Oscillator may be unstable without them.
Also, putting a 0.1uF capacitor across pins 7 & 8 might be a good idea.