Українською
  In English
Збирач потоків
Circuit makes square deal

A classic nonlinear analog function is the squaring circuit. It’s useful in power sensing, frequency multiplication, RMS computation, and many other odd jobs around the lab bench.
The version in Figure 1 is straightforward, fast, temperature-compensated, calibration-free, and if the transistors are well matched, accurate. The final output is as follows:
Vout = R3 antilog(2log(Vin/R1) – log(Vgain/R2)) = R3 antilog(log((Vin/R1)2 /(Vgain/R2))
Vout = (R1-2 R2 R3)Vin2 /Vgain
Figure 1 The squaring amplifier that is fast, temperature-compensated, calibration-free, and accurate (if the transistors are well matched).
Wow the engineering world with your unique design: Design Ideas Submission Guide
Its input can accept either voltage or current. It gains a bit of extra versatility from a separate gain factor control input, which can also accept voltage or current. Another boost in versatility comes from a similarly flexible output with both voltage and (inverted) current output mode. If the current mode is chosen, A3 and R3 can be omitted and a dual op-amp (OPA2228) used instead of the quad (OPA4228) illustrated.
The series connection of Q1 and Q2 generates a signal proportional to 2log(Vin/R1) = (log(Vin/R1)2). This is applied to antilogger Q3 ,which subtracts log(Vgain/R2) from it to generate a current of:
-(antilog(log((Vin/R1)2 /(Vgain/R2))
This is inverted and scaled by R3 and A3 to yield the final:
Vout = (R1-2 R2 R3)Vin2 / Vgain
Note that if the three resistors are equal and Vin = Vgain, then:
Vout = (R-2 R R)Vin2 / Vin = Vin
And, the squarer circuit will have unity gain.
Which is kind of a “square deal,” although I doubt it’s what Teddy Roosevelt had in mind when he made that phrase his 1904 campaign slogan.
An interesting application happens when the squarer is combined with a full-wave precision rectifier (like the one in “New full-wave precision rectifier has versatile current mode output”). See Figure 2.
Figure 2 The cascading full-wave rectifier (black) with squarer makes low distortion frequency doubler (red).
Stephen Woodward’s relationship with EDN’s DI column goes back quite a long way. Over 100 submissions have been accepted since his first contribution back in 1974.
Related Content
- New full-wave precision rectifier has versatile current mode output
- Simple diff-amp extension creates a square-law characteristic
- Boost and modify square waves: More circuits
- Precision Full Wave Rectifier Circuit
The post Circuit makes square deal appeared first on EDN.
India’s Electronics Exports Jump 41.9%, Smartphones Lead
India’s electronics export sector continues its remarkable upward trajectory, recording a 41.9% jump to USD 22.2 billion during April–September 2025, compared to USD 15.6 billion in the same period last year. The surge was primarily driven by strong performance in the smartphone segment, which saw exports grow by 58%, reaching USD 13.38 billion, up from USD 8.47 billion a year ago.
Data from the Ministry of Commerce and Industry indicate that this robust growth is the reflection of India’s strengthening position in the global electronics supply chain, bolstered by the policy support extended under the Production Linked Incentive Scheme and rising investments from global players such as Apple, Foxconn, and Samsung.
The total value of India’s electronic exports reached USD 38.6 billion during the fiscal year 2024-25, with a year-on-year increase of 32.6%. This indicates continuous growth, reinforcing the country’s position as an emerging major electronic manufacturing hub and the third-largest smartphone exporter globally, after China and Vietnam.
According to industry experts, this momentum is driven by a better manufacturing ecosystem, diversified supply chains, and recent government initiatives towards “Make in India, Make for the World.”
With rising foreign investments and expanding production capacity, India is well on track to become a USD 100-billion electronics export powerhouse over the coming years.
The post India’s Electronics Exports Jump 41.9%, Smartphones Lead appeared first on ELE Times.
IVWorks implements mass production of 8-inch InGaN/GaN nanowire epiwafers
Skyworks and Qorvo announce above-guidance preliminary September-quarter results
"Промінь" Наталії Гмирі у Центрі культури та мистецтв
"Промінь" – це назва виставки художниці Наталії Гмирі, що відкрилася 16 жовтня в Картинній галереї Центру культури і мистецтв КПІ ім. Ігоря Сікорського. Назва глибоко символічна, бо промені надії на мир і відродження повноцінного та щасливого життя в Україні немов пронизують усі представлені на ній твори. Про це говорили майже всі, хто прийшов на цей вернісаж, щоб подивитися роботи і привітати їхню авторку.
How help are free AI tools for electronic design?

For the past couple of years, I’ve been using AI to assist in the design of my hardware and firmware projects. The experience has generally been good, even though the outcome isn’t always useful. So, I’m presenting a short summary of a few of the tasks I have attempted and providing my unscientific grade to the outcome. The grades will be averaged at the end. Note: I do not have any paid AI subscriptions—I only used free AI tools, mostly Microsoft Copilot and ChatGPT (although I have tried a few others). These are just a few of my experiences using online AI.
Do you have a memorable experience solving an engineering problem at work or in your spare time? Tell us your Tale
Converting voltage to percent chargeGrade: A
I wanted to show the charge remaining in a lithium polymer battery used to power a design. This is not straightforward as the function to convert voltage to percent charge for a lithium polymer battery is not a linear function. I asked Copilot to make a table of 20 voltages from 3.2 V to 4.2 V and their respective charge percentages. Then I asked it to create a C function to do this conversion. It created this nicely, including linear interpolation.
Finding the median without sortingGrade: D
A while back, I wrote a Design Idea (DI) article on non-linear filters. While doing this, I queried Copilot to create a C program that can find the median of 5 numbers and do this without sorting. (No sorting for a small number of points is useful for increasing speed.) It created a nice-looking program—nice formatting and good comments. It also compiled fine. The problem was that the program didn’t work—it found the wrong value for the median in some cases.
Initializing an ADCGrade: C+
Another project required me to write code for the SAMD51 MCU to initialize the ADC for high-speed sampling. As I was trying to get maximum speed from the ADC, it was a somewhat complex setup, especially the clocking system. I tried creating the code in both Copilot and ChatGPT multiple times.
Some code would not compile due to things like bad register names, and some code would just not work, giving no ADC readings. After some back and forth, those issues were corrected. A few of the comments in code were misleading or just plain wrong as it applied to clock frequencies. As the code got close to a working function, I took over the code and reworked parts of it to make it work.
Graphic designGrade: C+
I was doing some LCD graphics design for a project, and one part was a battery charge indicator. This symbol, for battery percent of charge, was to be displayed on an LCD with an ILI9321 controller. (This standard figure looks like an AA battery with a green interior representing the percent charge.)
I asked Copilot to write C code for this using the GFX graphics library. The length of the green fill worked well, but the battery figure looked nothing like a battery. It was a rectangle with two large circles on both ends. I had to rewrite portions of the code myself.
Grade: F
In the same project, I asked Copilot for a USB symbol written using the GFX graphics library, as above. This didn’t look like the trident-like, universal USB symbol. I was essentially three sticking out from a central point at various angles. It was unusable.
Enclosure designGrade: D-
Next, I tried to have Copilot and ChatGPT design an enclosure that would work on a workbench, allowing the user to see the LCD and to easily connect BNC cables. All I got were images of rectangular boxes. No matter how I asked for a more unique shape, it never went much beyond a rectangular enclosure. Then, even the rectangular box could not be delivered as a usable 3D file “step”, “stl” file without using other programs.
Filter designGrade: C-
I asked ChatGPT, “Can you design and display a circuit that takes in a signal, AC couples it to a gain stage of 5, and then filters it at 120 kHz before outputting it?” Instead of explaining the result, the image in Figure 1 will speak for itself.

Figure 1 ChatGPT’s output for a filter design that takes in a signal, AC couples it to a gain stage of 5, and then filters it at 120 kHz before outputting it.
It did include a nice explanation of how components were selected, but the schematic was mostly unreadable. Dedicated tools such as TI’s Webench filter design tool, Analog Devices’ Filter Wizard, and ST’s eDesign Suite are the right tools for filter circuit design and are actually easier to use.
Grade: Ungraded
I tried to create C code, in both Copilot and ChatGPT, for calculating coefficients for a digital Sallen-Key 2-pole high-pass, low-pass, band-pass, and band-stop filters. I tried many times and could not get a good working algorithm. The code was close, but the filters did not function correctly. Eventually, I found the code after an extensive Google search. It’s possible my testing may have been part of the problem—unsure.
Grade: B
Along the way, I tried lots of smaller queries, many of which were very helpful.
A lab notebookI’m sure some of the issues are my skill in creating the AI prompts. This certainly made my attempts take longer as I had to add more detail in follow-up prompts. I actually found this conversational style more engaging than using search engines. It’s not like a Google search, where you can’t typically do follow-ups to your query—you have to re-enter your original query with a modification.
The AI systems work much more like a conversation with a colleague. You can tell it that the code it gave you did not compile, as it didn’t recognize a register name. Or you can ask it to give you faster code, or change a resistor value in a circuit, and recalculate the remaining components.
One thing I learned when writing this article is that both ChatGPT and Copilot keep a complete history of conversations we had. It’s sort of like a lab notebook, showing your path to a certain design—very helpful.
A C ratingLooking at the average grade, it comes in between a C and a C-. I’ll give it the benefit of the doubt and call it a C. The C rating matches my gut feel also. The interaction is fairly easy—it feels like interacting with a coworker. The conversation goes on, attempting to fine-tune the final answer. The interaction process is much better than doing a Google search and getting a list of things to pick from, without an easy way to refine the search.
Does it save time? That’s hard to judge as I’m still learning how to create better prompts. Sometimes I get a useful answer right away. On more complex queries, I’ve gotten pulled down a rabbit hole and wasted time while the solution diverged from what I was looking for. There have been times when it had me trying to finetune the result, and I turned to Google and got an answer much faster.
You can easily be lulled into the feeling that you’re conversing with a savant, but it may be more like AI-splaining. Every answer exudes confidence, but it could be the confidence of ignorance. Remember that these answers have not been checked or tested.
Will I continue to use it? Certainly… I’ll get better at using it, and the tools will continue to improve. What I would like to see is an AI tool focused specifically on electrical engineering (hardware, firmware, and system design). This may focus its skills on finding or creating circuits, and being able to dig down deep into data sheets, etc. It would also be nice if it could test its results through simulation or by executing the code in a series of tests. Maybe in the future.
All in all, it’s worth using and everyone should give it a try, just check the answer closely.
Damian Bonicatto is a consulting engineer with decades of experience in embedded hardware, firmware, and system design. He holds over 30 patents.
Phoenix Bonicatto is a freelance writer.
Related Content
- Design platform simplifies electronics design with AI
- How generative AI puts the magic back in hardware design
- Understanding generative AI and its applications
- What can AI do for analog design?
- Increasing bit resolution with oversampling
- How AI is changing the game for high-performance SoC designs
The post How help are free AI tools for electronic design? appeared first on EDN.
Power Tips #146: Design functional safety power supplies with reduced complexity

Many industrial applications in the automotive, automation, appliance, or medical sectors require power supplies that comply with functional safety standards. If the input voltage of such a power supply is not within its specification, the system to which it is supplying power is potentially operating in an unsafe state. Monitoring input and output voltages for faults such as undervoltage, overvoltage, and overtemperature may require resetting and transitioning the system to a safe state.
Defining the protections needed to comply with functional safety standards depends on the safety level, which the design engineer must determine in cooperation with a safety inspection agency such as Technischer Überwachungsverein. The engineer must also work on a time-consuming risk assessment of failures that address both safe and dangerous failures as well as random and systematic failures.
Functional safety in power suppliesSafety standards such as IEC 61508 or ISO 13849A specify the maximum allowable probability of dangerous failures per hour.
The requirements for a safe power supply as specified in IEC 61508, which covers functional safety in industrial manufacturing, include overvoltage protection with safety shutoff, secondary-side voltage control with safety shutoff, and power-down with safety shutoff. These protections require significant additional external circuitry around the switched-mode power supply (SMPS).
A safe power supply must also fulfill random hardware fault requirements. Using an integrated PG pin as the safety mechanism to monitor failures can be insufficient, because this pin is typically not independent; it shares the same internal band gap with all safety and monitoring features. A drifting band gap will cause the PG pin to fail. This is known as a common-cause failure, which does not meet functional safety requirements.
As shown in Figure 1, detecting any fault will also require additional supply-voltage supervisors as well as a switch connected in series to the input; alternatively, the switch could connect to the output. This switch disconnects the system from the source or load in case of a failure. Redundant supply-voltage supervisors monitor the input and output voltages. Typically, an industrial power supply is limited to less than a 60-VDC input, even in the event of a fault, requiring an additional circuit with transient voltage suppression and a fuse, because not all devices are specified to 60 V.
Figure 1 An industrial safe power supply example block diagram. Source: Texas Instruments
The switch at the input, which is under the control of the monitor, can remove power in case of a failure. The input and output voltage are monitored continuously. As I mentioned earlier, to comply with functional safety standards, all parts must operate within a specified operating voltage. That is not an easy task, given the requirement to detect undervoltage and overvoltage events immediately.
Buck converterUsing a functional-safety-compliant buck converter with integrated safety features can greatly reduce the amount of external circuitry, as shown in Figure 2. An integrated redundant circuit, which replaces the external voltage supervisor, has a startup diagnostic check and can detect the failure of a FET. This implementation reduces the overall cost of designing a safe power supply.

Figure 2 Integrated functional safety features replace an external voltage supervisor, reducing circuit complexity. Source: Texas Instruments
The nFAULT pin in the converter is used for overvoltage protection and as a failure flag. Triggering the nFAULT pin disables a safety switch, which in this case is an ideal diode controller connected to the input. The Temp pin communicates the temperature to a microprocessor and forces a shutdown if the temperature is too high. The VSNS pin has feedback path failure detection, and there is another feedback divider for redundancy. During startup, the LM68645-Q1 buck converter checks the configuration on the RT, FB, and VSNS pins.
Figure 3 shows a block diagram of a universal board (configurable to meet different safety standards)—with an input voltage range of 19.2 V to 28.8 V and a maximum 60 V—for a safe power supply.
A synchronous buck converter generates a 5-V output with a maximum current of 3 A. Beside the buck converter is an ideal diode with back-to-back MOSFETs connected to the input. An ideal diode connects to the output. The nFAULT pin can control both switches. Two additional supervisors for redundant voltage monitoring on the input and output can disable both switches as well. The ideal diode controller has power-path control and overvoltage protection. The voltage supervisors also provide built-in self-test and overvoltage and undervoltage protection.

Figure 3 The TI Industrial 24 V to 5 V safe power supply reference design, where a number of redundant options on the board make it possible to comply with different functional safety standards. Source: Texas Instruments
A buck converter designed to help meet functional safety standards reduces the amount of necessary functional safety documentation, system cost, and time to market. Because all of the devices in the 24 V to 5 V safe power supply reference design are specified for ≥ 60 V, an input transient voltage suppressor or fuse is not necessary.
Upgrading a safe power supplyAlthough upgrading a safe power supply to a higher standard requires significant effort, it is possible to design a power supply that meets functional safety requirements but also decreases time to market and system cost. Using a buck converter with integrated safety features helps achieve systematic and random hardware metrics and reduces the needed external circuitry.
Florian Mueller, systems applications engineer, Texas Instruments
Related Content
- Attaining functional safety: Managing random failures
- Motor control for functional safety
- Enabling functional safety in automotive processors
- Designing power supplies for industrial functional safety, Part 1
- Approaches to functional safety in automotive design
The post Power Tips #146: Design functional safety power supplies with reduced complexity appeared first on EDN.
5N Plus’ CFO Richard Perron to become president & CEO
Infineon launches EasyPACK C package, with silicon carbide power module as first product
⭐ Стажування у ГО «Центр логістики розвитку громад»!
ГО «Центр логістики розвитку громад» запрошує студентів 3–5 курсів, які навчаються за напрямами перекладу, міжнародних комунікацій, технічних спеціальностей, публічного управління або суміжними спеціальностями, на стажування.
📣 2026 IEEE 8th International Conference on Smart Technologies in Power Engineering and Electronics (STEE)
Шановні колеги! Запрошуємо вас подати свої доповіді на 2026 IEEE 8th International Conference on Smart Technologies in Power Engineering and Electronics (STEE).
Power GaN device market growing at 42% CAGR to $3bn by 2030
The Sole and Original Show Focused on Core Technologies Pertaining to the Automotive Industry – Only 20 Days Away!
The 4th edition of AutoEV Bharat 2025 is set to occur from November 19 to 21, 2025, at the KTPO Convention Centre in Whitefield, Bengaluru. The event will provide an opportunity to witness and engage with cutting-edge technologies from prominent technology brands worldwide.
Featuring over 195 exhibitors and more than 1000 brands on display, the event has already attracted over 29,400 registered visitors eager to attend the show.
The major technologies on display at Auto EV Bharat 2025 provides end to end solutions for EV and automotive sector. The exhibition is designed for automotive manufacturers, Automotive OEMs, and tier 1 suppliers to source technologies, products, material and services implied to design, development and manufacturing the vehicles.
This years’ technology display in the motors related segment include – Mid-Drive Motor Winding Machine, Drone Motor Winding Machine, Wound stators, Linear Stator, Segmented Stator, Edge Winding Coil, Hub Motor Stator, Internal stator, External Stator, Mid-drive motor stator and Axial flux Stator.
Software is the integral part of the state-of-the-art vehicle of the future. You can interact with the software engineers, developers and solution providers and can have a firsthand information on the products like CAN interfaces, Dataloggers, Thermal and Analog Data Acquisition modules, Calibration software, CAN analysis software, IIoT Solution, PID Temperature Controller among others.
The Auto EV Bharat 2025 offers the opportunity to engineers and scientists engaged in research and development of the vehicle to know the latest technologies available in the area of semiconductor and power intricacies of the vehicle. The products on displays are: Power Supplies, Power & Energy Meter, Protection Relay, Process Instruments, Power Analyzer, Data Acquisition System, Brass Pins for Power Cord & EV Pins, Two Pin and Three Pin Moulded Plug inserts, International Plug Insert Connectors, Rewireable Plug, Brass Precision Components and more.
The use of semiconductors has increased to 30 to 35 percent of the total vehicle. Safety, security, efficiency and comfort are largely relied on automotive electronics. The products on display are: Custom and Standard Power Solutions including DC/DC Converters, AC/DC Converters, Automatic Transfer Switches, Oring Diodes, MOSFETs, Blocking Diodes, Power Subsystems, EMI/EMC & RF Shielding Solutions.
Battery is a sizable portion of the entire architecture of Electric Vehicle. Most of the discussions revolve around the battery of the vehicle. The entire battery paraphernalia is being showcased at Auto EV Bharat including: Battery Test Chamber, Environmental Test Chamber, Explosion Proof Chamber, Battery Crush Nail Penetrators, Battery Drop Testers, Short Circuit Testers, Battery Cell Cyclers, Battery Module Testers, Battery Pack Testers, Battery BMS Testing Solutions, Battery EOL Test Solutions, Battery Management System, Battery Assembly Lines and Battery Packaging Lines.
The entire process is marked by the strenuous testing at every stage from R&D to manufacturing. The testing solutions present at the show are: Test & Measuring Instruments, Battery Enclosure air leak tester, Sealed Battery Pack Air Leak Tester, Blockage Tester, Vacuum Tester, Flow Tester, Calibration of Testers, Air Leak Tester, Electro-dynamics Vibration Shaker Systems, Pneumatic Shock Testing Machine, Bump Testing Machine, Environmental Testing Chambers, Climatic, Dust, Rain, UV, Thermal Shock, Combined Climatic and Vibration Testing Systems.
Auto EV Bharat is known for displaying the entire technology ecosystem for automotive. The rest of the technologies display other than the above are: Thermoset Plastic, Resin and Compound, Polycarbonate Sheet, Polymer Optical WaveGuide, PTFE (Teflon), RTFE, Modified PTFE (TFM & NXT), PEEK, VESPEL, PFA, Nylon, MOS2 Devlon, HNBR, (VITON) FKM, FFKM, EPDM, DELRIN (POM), PU, fasteners and hardware, hand tools, insulated steel tools, non-sparking tools, stainless steel tools, toolkits, tool cabinets, tool trolleys, High Static Cooling Unit & Low Static Cooling Unit, Pressure Sensitive Adhesive Tapes, Portable Charger, Special Purpose Machines, EV Cables & Wiring Harness and Plastic Granules.
The post The Sole and Original Show Focused on Core Technologies Pertaining to the Automotive Industry – Only 20 Days Away! appeared first on ELE Times.
Keysight to Showcase Quantum-AI Collaboration at GTC 2025 with NVIDIA NVQLink
Keysight Technologies, Inc. announced that they support the development of the new NVIDIA NVQLink open architecture for the low latency of quantum processors and AI supercomputing. Keysight Technologies is working with NVIDIA to advance hybrid quantum–AI computing through high-performance control systems and AI-driven infrastructure.
Disaggregated computer architecture is redefining the future of high-performance computing (HPC), enabling organizations to meet rapidly evolving computational demands with greater agility and efficiency. By decoupling compute, memory, storage, and networking into composable resource pools, this approach allows on-demand configuration and precise resource allocation, maximizing performance while optimizing both scalability and cost.
As industries push toward increasingly complex and data-intensive workload spanning artificial intelligence, data analytics, large-scale simulations, and quantum computing—disaggregated systems deliver the flexible, future-proof foundation required to sustain innovation at scale. With seamless upgrades, improved utilization, and dynamic adaptability, these architectures are poised to become the cornerstone of next-generation HPC infrastructure, driving breakthroughs across science and industry.
With decades of experience designing and enabling large-scale systems, Keysight is advancing the integration of quantum and classical computing technologies to address evolving computational challenges. The company’s QCS enables precise, scalable quantum experimentation and plays a vital role in the emerging quantum ecosystem. Working with NVIDIA NVQLink and NVIDIA CUDA-Q, Keysight is exploring how quantum control systems and classical accelerators can be harnessed together, Keysight is helping organizations prepare for a new era of hybrid computing—one that enables quantum-enhanced AI, ultra-precise simulations, and advanced modeling, while remaining adaptable to future advancements across both quantum and classical domains.
This initiative marks a significant milestone for Keysight aimed at uniting high-performance control systems with AI-driven infrastructure to accelerate quantum research and hybrid compute development.
Dr. Eric Holland, General Manager, Keysight Quantum Engineer Solutions, said: “As the industry accelerates toward the next era of high-performance computing, leadership means more than building breakthrough technologies, it requires defining the standards that make these transformative technologies universally accessible. By working with NVIDIA to establish a framework for quantum–HPC hybrid compute, we are helping ensure that tomorrow’s heterogeneous engines, spanning quantum, AI, and classical HPC, operate seamlessly within modern data centers. Together, we’re shaping the future fabric of compute for scientific discovery and innovation at scale. ”
Tim Costa, General Manager for Quantum at NVIDIA, said: “Driving breakthroughs in quantum computing requires quantum processors to integrate within AI supercomputers to run complex control tasks and deploy hybrid applications. Keysight is playing an integral role in solving this challenge, and NVQLink is the open unified interface for developing what comes next.”
The post Keysight to Showcase Quantum-AI Collaboration at GTC 2025 with NVIDIA NVQLink appeared first on ELE Times.
Power supply under construction.
| | This is my ongoing build that is working now after i put a lm317/lm337 regulator in it untill i figure out how to build a series pass regulator. Going to add filters on the dc side aswell. Softstart/emi filter/transformer/rectifier, 15000uF + 10000uF + 5630uF with capacitance multiplier and ifcourse the regulator. [link] [comments] |
Some of you wanted to see what was in my jar of components so here you go.
| | I had to stop sorting at this point. My tweezer fingers started to hurt. [link] [comments] |
Photon Design updates PICWave simulator
Polyn delivers silicon-implementation of its NASP chip

Polyn Technology Ltd. announces the successful manufacturing and testing of its first silicon-implementation of its neuromorphic analog signal processing (NASP) technology. It includes the validation of both the NASP technology and design tools, which automatically convert trained digital neural network models into ultra-low-power analog neuromorphic cores ready for manufacturing in standard CMOS processes. The first product chip features an analog neuromorphic core of a voice activity detection (VAD) neural network model.
(Source: Polyn Technology Ltd.)
This platform uses trained neural networks in the analog domain to perform AI inference with much lower power consumption than conventional digital neural processors, according to the company. Application-specific NASP chips can be designed for a range of edge AI applications, including audio, vibration, wearable, robotics, industrial, and automotive sensing.
This is the first time that Polyn generated an asynchronous, fully analog neural-network core implementation in silicon directly from a digital model. This opens up a “new design paradigm— neural computation in the analog domain, with digital-class accuracy and microwatt-level energy use,” said Aleksandr Timofeev, Polyn’s CEO and founder, in a statement.
Targeting always-on edge devices, the NASP chips with AI cores process sensor signals in their native analog form in microseconds, using microwatt-level power, which eliminates all overhead associated with digital operations, Polyn explained.
Recommended Neuromorphic analog signal processor aids TinyML
The first neuromorphic analog processor contains a VAD core for real-time voice activity detection and offers fully asynchronous operation. Key specs of this NASP VAD chip include ultra-low-power consumption of about 34 µW during continuous operation and ultra-low latency at 50 microseconds per inference.
In addition to the VAD core, Polyn plans to develop other cores for speaker recognition and voice extraction, targeting home appliances, communications headsets, and other voice-controlled devices.
In April 2022, the company announced its first NASP test chip, implemented in 55-nm CMOS technology, demonstrating the technology’s brain-mimicking architecture. This was followed in October 2022 with the introduction of the NeuroVoice tiny AI chip, delivering on-chip voice extraction from any noisy background. In 2023, Polyn introduced VibroSense, a Tiny AI chip solution for vibration monitoring sensor nodes. (Polyn was ranked as an EE Times Silicon 100 company to watch in 2025.)
Customers who are developing products with ultra-low-power voice control can apply online for the NASP VAD chip evaluation kit. Polyn will demonstrate its first NASP chips, available for ordering, at CES 2026 in Las Vegas, Nevada, January 6-9, in Hall G, Booth #61701. A limited selection will be showcased at CES Unveiled Europe in Amsterdam, October 28, Booth HB143.
The post Polyn delivers silicon-implementation of its NASP chip appeared first on EDN.
Are rough surfaces on PCBs impacting high-frequency signals?

Printed-circuit boards (PCBs) are an integral part of most electronic devices today, and as PCBs become smaller, electronics engineers must remain aware of the tiny defects that can affect how these components function, especially when they involve high-frequency signals. Surface roughness may seem minor, but it can significantly affect PCB performance, including impedance and signal transmission. What should electronics engineers know about it, and how can they minimize this issue?
Path lengthRough PCB surfaces increase the signal’s path length. This is due to the skin effect, which occurs because high-frequency electrical signals are more likely to flow along a conductor’s outer surface instead of through its core. A longer path length can also increase resistance and cause energy loss.
(Source: Adobe Stock)
Engineers can reduce these issues by choosing the appropriate surface finishes for different PCB parts. Immersion silver is a good choice for balancing performance and affordability, although it must be handled carefully to prevent tarnishing.
Electroless nickel immersion gold offers a flat and smooth surface with a gold layer that promotes excellent solderability and conductivity and a nickel layer that offers oxidation protection. This surface finish minimizes signal distortion, making it a popular option for microwave and radio-frequency applications.
Although immersion tin features a smooth surface, it has lower corrosion resistance than other options, making it less frequently selected for high-frequency PCBs. Because hard gold has good conductivity and resists wear, engineers often use it in high-frequency applications, such as on contact points and connectors. This approach minimizes signal loss and increases overall durability.
If you plan to outsource finishing or other manufacturing steps to a specialty provider, consider choosing one with extensive experience and the equipment and expertise needed for your PCB design.
For example, in 2024, PCB company OKI Circuit Technology created an ultra-high, multilayer PCB line. This expansion boosted its capacity potential by approximately 1.4× while also helping the company cater to customers with smaller orders. The company has also invested in numerous enhancements that increase its precision and equip it to meet the needs of next-generation communications, robotics, and semiconductors.
Signal integrityRough surfaces compromise signal integrity and can cause parasitic capacitance. This issue can also increase crosstalk if it results in uneven electromagnetic field distribution. Smoother surfaces enable faster signal speeds while preventing distortion and delays.
Because surface roughness is one of many factors that can interfere with signal integrity, electronics engineers should scrutinize all design aspects to find other potential culprits. Some companies offer specialized tools to make the task easier.
One provider sells software that uses artificial intelligence to assess proposed designs. Users can also check trace path routing by studying cross-sectional diagrams that show various layers, identifying potential issues more quickly.
Component placement and PCB layout configurations can affect signal integrity, so designers should consider those aspects before assuming rough surfaces have degraded performance. Digital twins and similar tools allow engineers and product designers to experiment with various layouts before committing to a final PCB layout. Keeping a log of all design changes also allows engineers to revert to previous iterations if newer versions worsen signal integrity.
If companies notice ongoing signal integrity problems or other challenges, examining the individual industrial processes may highlight the causes. This usually starts with data collection because the information provides a baseline. Once companies begin tracking trends, they can discover the most effective ways to tighten quality control and meet other goals that improve PCB performance.
Tailored assistanceIf electronics engineers conclude that rough surfaces are among the primary contributors to signal issues in their high-frequency PCBs, they can then address the problem by partnering with third-party providers that understand the complexities of finishing small parts. These companies can detail the various finish types available and provide pricing and lead times, depending on the unit order of PCBs.
Companies that need PCB finishing for prototypes or small production runs may request manual processes. Skilled technicians use tools and magnification on parts with complex geometries or other characteristics that make them unsuitable for mechanical methods.
Controlled combustion, electrolytic action, and vibratory containers are some of the other options for finishing small parts through non-manual means. Specialist finishers can examine the PCB designs and recommend the best strategies to achieve consistent smoothness with maximum efficiency.
Because many manufacturers have high-volume finishing needs, some startups have emerged to fill the need while supporting producers’ automation efforts. Augmentus is one example, focusing on physical AI to scale automated surface finishing for high-mix environments. The company has built a fully autonomous system for today’s factory floors. In July 2025, the company secured $11 million in a Series A+ funding round to scale for high-mix, complex robotic surface finishing and welding.
Augmentus views surface finishing as one of the most challenging problems in automation, but the company believes its technology will break new ground. Although it is too early to know how this option and others like it may change PCB production, automated processes could offer better repeatability, making surface roughness less problematic.
Ongoing awarenessBecause surface roughness can negatively affect high-frequency PCB signals, engineers should explore numerous ways to address it effectively. Considering this issue early in the design process and selecting appropriate finishes are proactive steps for strengthening component quality control.
About the author
Emily Newton is a technical writer and the editor-in-chief of Revolutionized. She enjoys researching and writing about how technology is changing the industrial sector.
The post Are rough surfaces on PCBs impacting high-frequency signals? appeared first on EDN.
Wanted to change the micro usb port of a ps4 controller abd kinda fucked it up😅
| | Not my first time doing this but my second and for some reason the first tike was successful and this wasnt😂😂 [link] [comments] |



