Feed aggregator

BluGlass boosts single-mode GaN laser chip output by 67% to record 1250mW

Semiconductor today - Tue, 03/11/2025 - 12:20
BluGlass Ltd of Silverwater, Australia has reported what is reckoned to be record single-spatial-mode power of 1250mW from a single gallium nitride (GaN) laser chip, an increase of more than 67% from the prior 750mW (reported as recently as January, at Photonics West 2025, demonstrating the rapid growth of the firm’s technology capabilities)...

Nichia wins German patent infringement lawsuits concerning Dominant LEDs

Semiconductor today - Tue, 03/11/2025 - 12:06
On 13 and 21 January, respectively, the Munich District Court of Germany ruled in favor of Nichia Corp of Tokushima, Japan — the world’s largest gallium nitride (GaN)-based light-emitting diode/laser diode (LED/LD) manufacturer and inventor of high-brightness blue and white LEDs — in two patent infringement lawsuits and issued two acknowledgment judgments in relation to Nichia’s claims for patent infringement by certain automotive LED products of Malaysia-based LED manufacturer Dominant Opto Technologies Sdn Bhd...

How controllers tackle storage challenges in AI security cameras

EDN Network - Tue, 03/11/2025 - 09:08

Visual security systems have evolved enormously since the days of infrared motion detectors and laser tripwires. Today, high-definition cameras stream video into local vision-processing systems. These AI-enabled surveillance cameras detect motion, isolate and identify objects, capture faces, expressions, and gestures, and may even infer the intent of people in their field of view. They record interesting videos and forward any significant events to a central security console.

Integrating AI capabilities transforms security cameras into intelligent tools to detect threats and enhance surveillance proactively. Intent inference, for example, allows security cameras to quickly predict suspicious behavior patterns in crowds, retail stores, and industrial facilities. Case in point: AI-enabled cameras can detect unattended packages, license plates, and people in real time and report them to security personnel.

According to a report from Grandview Research, due to the evolving use of AI technology and growing security concerns, the market for AI-enabled security cameras is projected to grow at a CAGR of over 18% between 2024 and 2032. This CAGR would propel the market from $7.55 billion in 2023 to $34.2 billion in 2032.

 

The need for compute power

Increasing sophistication demands growing computing power. While that antique motion sensor needed little more than a capacitor and a diode, real-time object and facial detection require a digital signal processor (DSP). Advanced inferences such as expression or gesture recognition need edge AI: compact, low-power neural-network accelerators.

Inferring intent may be a job for a small-language model with tens or hundreds of millions of parameters, demanding a significantly more powerful inference engine. Less obviously, this growth in functionality has profound implications for the security camera’s local non-volatile storage subsystem. Storage, capacity, performance, reliability, and security have all become essential issues.

Storage’s new role

In most embedded systems, the storage subsystem’s role is simple. It provides a non-volatile place to keep code and parameters. When the embedded system is initialized, the information is transferred to DRAM. In this use model, reading happens only on initialization and is not particularly speed sensitive. Writing occurs only when parameters are changed or code is updated and is, again, not performance sensitive.

The use case for advanced security cameras is entirely different. The storage subsystem will hold voluminous code for various tasks, the massive parameter files for neural network models, and the continuously streaming compressed video from the camera.

To manage energy consumption, designers may shut down some processors and much of the DRAM until the camera detects motion. This means the system will load code and parameter files on demand—in a hurry—just as it begins to stream video into storage. So, both latency and transfer rate are essential.

In some vast neural network models, the storage subsystem may also have to hold working data, such as the intermediate values stored in the network’s layers or parameters for layers not currently being processed. This will result in data being paged in and out of storage and parameters being loaded during execution—a very different use model from static code storage.

Storage meeting new needs

Except in scale, the storage use model in these advanced security cameras resembles less a typical embedded-system model than what goes on in an AI-tuned data center. This difference will impose new demands on the camera’s storage subsystem hardware and firmware.

The primary needs are increased capacity and speed. This responsibility falls first upon the NAND flash chips themselves. Storage designers use the latest multi-level and quad-level, stacked-cell NAND technology to get the capacity for these applications. And, of course, they choose chips with the highest speeds and lowest latencies.

However, fast NAND flash chips with terabit capacity can only meet the needs of security-camera applications if the storage controller can exploit their speed and capacity and provide the complex management and error correction these advanced chips require.

Let’s look at the storage controller, then. The controller must support the read-and-write data rates the NAND chips can sustain. And it must handle the vast address spaces of these chips. But that is just the beginning.

Storage controller’s tasks

Error correction in NAND flash technology is vital. Soft error rates and the deterioration of the chips over time make it necessary to have powerful error correction code (ECC) algorithms to recover data reliably. Just how important, however, is application dependency? A wrong pixel or two in a recorded video may be inconsequential. Neural network models can be remarkably tolerant of minor errors.

But a bad bit in executable code can turn off a camera and force a reboot. A wrong most significant bit (MSB) in a parameter at a critical point in a neural network model, especially for small-language models, can result in an incorrect inference. So, a mission-critical security camera needs powerful, end-to-end error correction. The data arriving at the system DRAM must be precisely what was initially sent to the storage subsystem.

This requirement becomes particularly interesting for advanced NAND flash chips. Each type of chip—each vendor’s process, number of logic levels per cell, and number of cells in a stack—will have its error syndromes. Ideally, the controller’s ECC algorithms will be designed for the specific NAND chips.

Aging is another issue—flash cells wear out with continued reading and writing. However, as we have seen, security cameras may almost continuously read and write storage during the camera’s lifetime. That is the worst use case for ultra-dense flash chips.

To make matters more complex, cameras are often mounted in inaccessible locations and frequently concealed, so frequent service is expensive and sometimes counterproductive (Figure 1). The video they record may be vital for safety or law-enforcement authorities long after it is recorded, so degradation over time would be a problem.

Figure 1 Managing flash cell endurance is an essential issue since cameras are often mounted in inaccessible locations. Source: Silicon Motion

The controller’s ability to distribute wear evenly across the chips, scrub the memory for errors, and apply redundant array of independent disks (RAID)-like techniques to correct the mistakes translates into system reliability and lower total cost of ownership.

To counter these threats, the storage controller must be forearmed. Provisions should be made for fast checkpoint capture, read/write locking of the flash array, and a quick, secure erase facility in case of power loss or physical damage. To blunt cyberattacks, the storage subsystem must have a secure boot process, access control, and encryption.

A design example

To appreciate the level of detail involved in this storage application, we can focus on just one feature: the hybrid zone. Some cells in a multi-level or quad-level NAND storage can store only a single bit of data instead of two or four bits. The cells used as single level are called hybrid zones. They will have significantly shorter read and write latencies than if they were being used to store multiple bits per cell.

The storage controller can use this feature in many ways. It can store code here for fast loading, such as boot code. It can store parameters for a neural network model that must be paged into DRAM on demand. For security, the controller can use a hybrid zone to isolate sensitive data from the access method used in the rest of the storage array. Or the controller can reserve a hybrid zone for a fast dump of DRAM contents in case of system failure.

Figure 2 Here is how the FerriSSD controller offers a hybrid zone, the unique capability of partitioning a single NAND die into separate single-level cells (SLC) and multi-level cells/3D triple-level cells (MLC/TLC zones). Source: Silicon Motion

The hybrid zone’s flexibility ultimately supports diverse storage needs in multi-functional security systems, from high-speed data access for real-time applications such as authentic access to secure storage for critical archived footage.

Selecting storage for security cameras

Advanced AI security cameras require a robust storage solution for mission-critical AI video surveillance applications. Below is an example of how a storage controller delivers enterprise-grade data integrity and reliability using ECC technology.

Figure 3 This is how a storage controller optimizes the choice of ECC algorithms. Source: Silicon Motion

The storage needs of advanced security cameras go far beyond the simple code and parameter storage of simple embedded systems. They increasingly resemble the requirements in cloud storage systems and require SSD controllers with error correction, reliability, and security features.

This similarity also places great importance on the controller vendor’s experience—in power-conscious edge environments, high-end AI cloud environments, and intimate relationships with NAND flash vendors.

Lancelot Hu is director of product marketing for embedded and automotive storage at Silicon Motion.

Related Content

The post How controllers tackle storage challenges in AI security cameras appeared first on EDN.

MACOM demos RF and optical products at SATELLITE 2025

Semiconductor today - Mon, 03/10/2025 - 20:52
MACOM Technology Solutions Inc of Lowell, MA, USA (which designs and makes RF, microwave, analog and mixed-signal and optical semiconductor technologies) is showcasing its latest satellite communications products in booth 1333 at SATELLITE 2025 in the Walter E. Washington Convention Center, Washington DC, USA (11–13 March)...

CGD’s Combo ICeGaN combines ICeGaN HEMT ICs and IGBTs in parallel

Semiconductor today - Mon, 03/10/2025 - 20:40
Fabless firm Cambridge GaN Devices Ltd (CGD) — which was spun out of the University of Cambridge in 2016 to design, develop and commercialize power transistors and ICs that use GaN-on-silicon substrates — has revealed more details about a solution that will enable it to address electric vehicle (EV) powertrain applications over 100kW (a market worth over $10bn) with its ICeGaN gallium nitride technology. Combo ICeGaN combines smart ICeGaN HEMT ICs and IGBTs (insulated-gate bipolar transistors) in the same module or IPM, maximizing efficiency and offering a cost-effective alternative to expensive silicon carbide (SiC) solutions...

I put together another Freeform Nixie Clock

Reddit:Electronics - Mon, 03/10/2025 - 18:58
I put together another Freeform Nixie Clock

So, I tried to free form a similar clock I free formed earlier this year, except it includes the hours, minutes, and seconds. I wanted to see if I could possibly improve my free forming builds compared with the first clock I built, but honestly, it still came out ugly to me.

At any rate, I kinda like the scraggly look of Freeform/dead bug electronics assembly. I'll never be as good as Mohit Bhoite, Eirik Brandal, etc. However, I noticed that building stuff like this is calming to me. It's difficult and stressful, although I find that when my job is pissing me off, I spent 15 minutes working on this clock to calm me down.

The awesome part was after I assembled everything onto the base, I decided to just power it up and see if it worked. At first, I set my power supply to 12v and limited the current to 100mA. It powered up and hit the 100mA limit. I slowly increased the current, and when I hit 250mA, all the nixies counted down from 9 to 0, then counted up from 0 to 9, and displayed the time. Sort of. I had to 'reset' the DS1302 RTC, installed the button cell battery, and cycled the power...and it just worked. I set the time, and there it was, a working nixie Freeform clock! At first I was excited, then thought, "but now I have nothing to troubleshoot..."

Where do I go from here? I don't know; I may be seriously thinking about free forming Keith Bayern's design, a discreet component nixie clock. That kit contains over 1,000 components, but it might be doable and pretty impressive

submitted by /u/Asuntofantunatu
[link] [comments]

Dead Lead-acid Batteries: Desulfation-resurrection opportunities?

EDN Network - Mon, 03/10/2025 - 18:04

Back in November 2023, I told you about how my 2006 Jeep Wrangler Unlimited Rubicon:

had failed (more accurately, not completed) its initial emissions testing the year before (October 2022) because it hadn’t been driven substantively in the prior two years and its onboard diagnostic system therefore hadn’t completed a self-evaluation prior to the emissions test attempt. Thankfully, after driving the vehicle around for a while, aided by mechanics’ insights, online info and data sourced from my OBD-II scanner, the last stubborn self-test (“oxygen sensor heater”) ran and completed successfully, as did my subsequent second emissions test attempt.

The battery, which I’d just replaced two years earlier in September 2020, had been disconnected for the in-between two-year period, not that keeping it connected would have notably affected the complications-rife outcome; even with the onboard diagnostic system powered up, the vehicle still needed to be driven in order for self-evaluation tests to run. This time, I vowed, I’d be better. I’d go down to the outdoor storage lot, where the Jeep was parked, every few weeks and start and drive it some. And purely for convenience reasons, I kept the battery connected this time, so I wouldn’t need to pop the hood both before and after each driving iteration.

I bet you know what happened next, don’t you? How’s that saying go…”the road to hell is paved with good intentions”? Weeks turned into months, months turned into years, and two years later (October 2024) to be exact, I ended up with not only a Jeep whose onboard diagnostics system tests had expired again, but one whose battery looked like this:

Here it is in the cart at Costco, after my removal of it from the engine compartment and right before I replaced it with another brand-new successor:

I immediately replaced it primarily for expediency reasons; it’s somewhat inconvenient to get to the storage lot (therefore why my prior aspirations had been for naught) and given that I already knew I had some driving to do before it’d pass emissions (not to mention that my deadline for passing emissions was drawing near) I didn’t want to waste time messing around with trying to revive this one. But I was nagged afterwards by curiosity; could I have revived it? I decided to do some research, and although in my case the answer was likely still no (given just how drained it was, and for how long it’d been in this degraded condition), I learned a few things that I thought I’d pass along.

First off: what causes a (sealed, in my particular) lead-acid (SLA) battery to fail in the first place? Numerous reasons exist, but for the purposes of this particular post topic, I’m going to focus on just one, sulfication. With as-usual upfront thanks to Wikipedia for the concise but comprehensive summary that follows:

Lead–acid batteries lose the ability to accept a charge when discharged for too long due to sulfation, the crystallization of lead sulfate. They generate electricity through a double sulfate chemical reaction. Lead and lead dioxide, the active materials on the battery’s plates, react with sulfuric acid in the electrolyte to form lead sulfate. The lead sulfate first forms in a finely divided, amorphous state and easily reverts to lead, lead dioxide, and sulfuric acid when the battery recharges. As batteries cycle through numerous discharges and charges, some lead sulfate does not recombine into electrolyte and slowly converts into a stable crystalline form that no longer dissolves on recharging. Thus, not all the lead is returned to the battery plates, and the amount of usable active material necessary for electricity generation declines over time.

And specific to my rarely used vehicle situation:

Sulfation occurs in lead–acid batteries when they are subjected to insufficient charging during normal operation, it also occurs when lead–acid batteries left unused with incomplete charge for an extended time. It impedes recharging; sulfate deposits ultimately expand, cracking the plates and destroying the battery. Eventually, so much of the battery plate area is unable to supply current that the battery capacity is greatly reduced. In addition, the sulfate portion (of the lead sulfate) is not returned to the electrolyte as sulfuric acid. It is believed that large crystals physically block the electrolyte from entering the pores of the plates. A white coating on the plates may be visible in batteries with clear cases or after dismantling the battery. Batteries that are sulfated show a high internal resistance and can deliver only a small fraction of normal discharge current. Sulfation also affects the charging cycle, resulting in longer charging times, less-efficient and incomplete charging, and higher battery temperatures.

Okay, but what if I just kept the battery disconnected, as I’d been doing previously? That should be enough to prevent sulfication-related degradation, since there’d then be no resulting current flow through the battery, right? Nope:

Batteries also have a small amount of internal resistance that will discharge the battery even when it is disconnected. If a battery is left disconnected, any internal charge will drain away slowly and eventually reach the critical point. From then on the film will develop and thicken. This is the reason batteries will be found to charge poorly or not at all if left in storage for a long period of time.

I also found this bit, both on how battery chargers operate and how sulfication adversely affects this process, interesting:

Conventional battery chargers use a one-, two-, or three-stage process to recharge the battery, with a switched-mode power supply including more stages in order to fill the battery more rapidly and completely. Common to almost all chargers, including non-switched models, is the middle stage, normally known as “absorption”. In this mode the charger holds a steady voltage slightly above that of a full battery, in order to push current into the cells. As the battery fills, its internal voltage rises towards the fixed voltage being supplied to it, and the rate of current flow slows. Eventually the charger will turn off when the current drops below a pre-set threshold.

A sulfated battery has higher electrical resistance than an unsulfated battery of identical construction. As related by Ohm’s law, current is the ratio of voltage to resistance, so a sulfated battery will have lower current flow. As the charging process continues, such a battery will reach the charger’s preset cut-off more rapidly, long before it has had time to accept a complete charge. In this case the battery charger indicates the charge cycle is complete, but the battery actually holds very little energy. To the user, it appears that the battery is dying.

My longstanding-use battery charger is a DieHard model 28.71222:

It’s fairly old-school in design, although “modern” enough that it enables the owner to front panel switch-differentiate between conventional SLA and newer absorbed glass mat (AGM) battery technologies from a charging-process standpoint (speaking of which, in the process of researching this piece I also learned that old-school vehicles like mine are also often, albeit not always, able to use both legacy SLA and newer AGM batteries). And it conveniently supports not only 10A charging but also 2A “trickle” (i.e., “maintain”) and 50A “engine start” modes.

That said, we’re storing the Volkswagen Eurovan Camper in the garage nowadays, with my Volvo perpetually parked in the driveway instead (and the Jeep still “down the hill” at the storage lot). I recently did some shopping for a more modern “trickle” charger for the van’s battery, and in the process discovered that newer chargers are not only much more compact than my ancient “beast” but also offer integrated desulfation support (claimed, at least). Before you get too excited, there’s this Wikipedia qualifier to start:

Sulfation can be avoided if the battery is fully recharged immediately after a discharge cycle. There are no known independently-verified ways to reverse sulfation. There are commercial products claiming to achieve desulfation through various techniques such as pulse charging, but there are no peer-reviewed publications verifying their claims. Sulfation prevention remains the best course of action, by periodically fully charging the lead–acid batteries.

With that said, there’s this excerpt from the linked-to ”Battery regenerator” Wikipedia entry:

The lead sulfate layer can be dissolved back into solution by applying much higher voltages. Normally, running high voltage into a battery will cause it to rapidly heat and potentially cause thermal runaway, which may cause it to explode. Some battery conditioners use short pulses of high voltage, too short to cause significant heating, but long enough to reverse the crystallization process. 

Any metal structure, such as a battery, will have some parasitic inductance and some parasitic capacitance. These will resonate with each other, and something the size of a battery will usually resonate at a few megahertz. This process is sometimes called “ringing”. However, the electrochemical processes found in batteries have time constants on the order of seconds and will not be affected by megahertz frequencies. There are some websites which advertise “battery desulfators” running at megahertz frequencies.

Depending on the size of the battery, the desulfation process can take from 48 hours to weeks to complete. During this period the battery is also trickle charged to continue reducing the amount of lead sulfur in solution.

Courtesy of a recent Amazon Prime Big Deal Days promotion, I ended up picking up three different charger models at discounted prices, with the intention of tearing down at least one in the future in comparative contrast to my buzzing DieHard beast. For trickle-only charging purposes, I got two ~$20 1A 6V/12V GENIUS 1s from NOCO, a well-known brand:

Among its feature set bullet points are these:

  • Charge dead batteries – Charges batteries as low as 1-volt. Or use the all-new force mode that allows you to take control and manually begin charging dead batteries down to zero volts.
  • Restore your battery – An advanced battery repair mode uses slow pulse reconditioner technology to detect battery sulfation and acid stratification to restore lost battery performance for stronger engine starts and extended battery life.

Then there were two from NEXPEAK, a lesser known but still highly rated (on Amazon, at least) brand, the ~$21 6A 12V model NC101:

  • [HIGH-EFFICIENCY PULSE REPAIR] battery charger automotive detects battery sulfation and acid stratification, take newest pulse repair function to restore lost battery performance for stronger engine starts and extended battery life. NOTE: can not activate or charging totally dead batteries.

And the also-$21 10A 12V/24V NC201 PRO:

with similarly worded desulfation-support prose:

  • [HIGH-EFFICIENCY PULSE REPAIR]Automatically detects battery sulfation and acid stratification, take newest pulse repair function to restore lost battery performance for stronger engine starts and extended battery life. Note: can not activate or charging totally dead batteries.

In fact, with this model and as the front panel graphic shows, the default recharging sequence always begins with a desulfation step.

Do the desulfation claims bear out in real life? Read through the Amazon user comments for the NC101 and NC201 PRO and you’ll likely come away with a mixed conclusion. Cynically speaking, perhaps, the hype is reminiscent of the “peak” cranking amp claims of lithium battery-based battery jump starters. And I also wonder for what percentage of the positive reviewers the battery resurrection ended up being only partial and temporary. That said, I suppose it’s better than nothing, especially considering how cost-effective these chargers are nowadays.

And that said, my ultimate future aspiration is to not need to try to resurrect my Jeep’s battery at all. To wit, given that as previously noted, “I don’t have AC outlet access for [editor note: conventional] trickle chargers” at the outdoor storage facility, I’ve also picked up a portable solar panel with integrated trickle charger for ~$18 during that same promotion (two, actually, in case I end up moving the van back down there, too):

which, next time I’m down there, I intend to mate to a SAE extension cable I also bought:

bungee-strap the solar panel to the Jeep’s windshield (or maybe the hood, depending on vehicle and sun orientations), on top of the car cover intermediary, and route the charging cable from underneath the vehicle to the battery in the engine compartment above. I’ll report back my results in a future post. Until then, I welcome your comments on what I’ve written so far!

Brian Dipert is the Editor-in-Chief of the Edge AI and Vision Alliance, and a Senior Analyst at BDTI and Editor-in-Chief of InsideDSP, the company’s online newsletter.

Related Content

googletag.cmd.push(function() { googletag.display('div-gpt-ad-inread'); });
googletag.cmd.push(function() { googletag.display('div-gpt-ad-native'); }); -->

The post Dead Lead-acid Batteries: Desulfation-resurrection opportunities? appeared first on EDN.

Pages

Subscribe to Кафедра Електронної Інженерії aggregator