J&J Power Failures, FDA Data Rules, and Top QMSR Hot Spots


J&J Power Failures, FDA Data Rules, and Top QMSR Hot Spots
Today's issue dives into the potential causes of power failures in robotic surgical systems following a Johnson & Johnson safety notice. We also break...
SYNAPTIC DIGEST
FRIDAY, MAY 15, 2026  |  15 MIN READ
At a Glance: Today's issue dives into the potential causes of power failures in robotic surgical systems following a Johnson & Johnson safety notice. We also break down new FDA guidance that opens the door for de-identified real world evidence in submissions and examine the top three gaps inspectors are finding in recent QMSR audits. Every story is packed with design checks you can use this week.
RECALL ANALYSIS
When the Robot Goes Dark: Deconstructing Surgical System Power Failures

A sudden power loss is bad. A power loss in a surgical robot, mid procedure, is a full blown crisis. Johnson & Johnson's recent safety notice for one of its robotic surgical systems, citing unexpected power shutdowns, is a reminder of just how critical robust power architecture is. For any engineer working on complex capital equipment, this is a scenario worth studying closely.

What the Public Information Reports

Details in the public domain are currently limited to the existence of a safety notice regarding 'unexpected power shutdowns.' The notice itself isn't a recall yet, but it puts a spotlight on the system's power management. Without access to the company's internal investigation, we can't know the specific root cause, but we can analyze the common failure modes for systems like this.

Events like this are rarely a simple component failure. They often point to more subtle issues in how a system handles power transitions, environmental variability, or manages its own internal state, especially in a device with multiple interconnected power domains for motors, sensors, and computing.

What Could Cause This Type of Failure

A likely area of investigation is the uninterruptible power supply (UPS) and battery backup system. The transition from wall power to battery power needs to be seamless. One common culprit is a flaw in the switchover logic. If the system's main processor takes too long to execute the switchover command, the onboard bulk capacitors can drain below the required voltage, causing a hard reboot instead of a smooth transition.

Another classic failure mode in robotics is cable management. A surgical robot has numerous moving arms, each with a harness carrying power and data. The constant flexing and articulation can lead to fatigue and intermittent connections in power lines. A momentary open circuit could be interpreted by the system as a total power loss, triggering a shutdown sequence. This is a subtle mechanical problem that presents as a catastrophic electrical failure.

Finally, there's firmware. A race condition or a state machine lockup in the power management microcontroller could prevent it from correctly identifying a power sag or activating the battery backup. It's the digital equivalent of a stuck relay, and it's a nightmare to debug because it might only happen under very specific timing conditions that are difficult to replicate in testing.

Regulatory & Standards Context

This is where IEC 60601-1, the foundational standard for medical electrical equipment, comes into play. Specifically, Clause 8 covers protection against electrical hazards, and the standard mandates that single fault conditions shouldn't create a safety hazard. A failure of the primary power source is a foreseeable event, and the system's response is a key part of its basic safety and essential performance.

Furthermore, ISO 14971, the standard for risk management, requires manufacturers to identify hazards associated with the device. Loss of function during a procedure due to a power shutdown is a very obvious and critical hazard. Your risk analysis must address the causes and mitigations for this, including failures of the mitigation itself (like the battery backup failing).

Design Playbook - Learning from the Event

Check: What is the actual, measured hold up time of your bulk capacitors?

Don't just rely on the datasheet calculation. You need to measure the time your power rails stay within regulation after AC is cut. Then, compare that number to the worst case execution time for your firmware's power fail interrupt service routine. If the hold up time is shorter than the code execution time, you have a hidden failure mode.

Audit: Does your FMEA cover intermittent power connections in moving cables?

Every cable that flexes is a potential point of failure. Your FMEA should include failure modes like 'intermittent power connection in manipulator arm harness.' Your verification testing needs to include running the system at its mechanical extremes for thousands of cycles and monitoring for power glitches. This is tedious, but it's how you find these problems before the field does.

Check: Have you tested your power switchover logic with a variable AC supply?

Don't just test by yanking the plug. Use a programmable power source to simulate slow brownouts, fast sags, and noisy AC lines. Many power supervisor ICs can get confused by a slow voltage droop if their hysteresis isn't set correctly, causing them to oscillate and prevent a clean switch to battery.

Audit: Is your power management controller on an independent, isolated power rail?

The microcontroller responsible for managing power state transitions should not be susceptible to the very power dips it's supposed to be managing. Ideally, it should have its own small, dedicated LDO and capacitor to keep it alive long enough to make a decision, even if the main system rails are collapsing.

• • •
DIGITAL HEALTH
FDA's Green Light for De-Identified Data: A New Playbook for V&V

The FDA just made a subtle but massive change to its stance on real world evidence (RWE). In new guidance, the agency has officially given medical device manufacturers the green light to use de identified data from sources like electronic health records and insurance claims in regulatory submissions. This is a big deal if you're working on anything from post market surveillance to AI algorithms.

What the New Guidance Allows

For years, using large real world datasets was a logistical nightmare because of the requirement to submit identifiable patient level data. According to the updated guidance, that barrier is now gone for medical devices. You can now leverage huge, anonymized datasets to support your device's performance claims without the same privacy and access hurdles.

The catch? The FDA makes it clear that this isn't a relaxation of data quality standards. Your submission still needs to prove data provenance, document every preprocessing step, and rigorously address potential sources of bias. You're trading a data access problem for a data integrity challenge.

The Engineering Implications

This shift has immediate consequences for how you design and validate your products. For AI and machine learning devices, this opens up a much larger pool of data for training and testing algorithms. You could potentially use a de identified dataset from a hospital network as an external validation set for a new diagnostic algorithm, which is a powerful way to demonstrate generalizability.

It also changes the game for post market surveillance. Instead of relying solely on complaints or limited registries, you can now design systems to ingest and analyze de identified data from real world use to monitor performance and safety. But this means you need to think about data compatibility and standards from the very beginning of the design process. Your device's data output needs to be structured in a way that can be easily de identified and aggregated.

Regulatory & Standards Context

While this is new FDA guidance, it plugs directly into existing quality system requirements under 21 CFR Part 820. The need for robust data provenance and integrity falls under design controls and records management. You have to be able to trace your RWE from its source, through all your cleaning and analysis steps, to the final claim in your submission.

This also intersects with cybersecurity and privacy standards like the HIPAA Security Rule, even with de identified data. You must ensure your methods for de identification are robust and that there's no chance of re identifying individuals from the data you're using. The methods you use for this will almost certainly face regulatory scrutiny.

Design Playbook - Learning from the Event

Audit: Does your data governance plan specify how to validate the provenance of third party RWE?

You can't just download a dataset and use it. You need a formal process for qualifying data suppliers, just like you qualify component suppliers. This includes auditing their data collection methods, their de identification processes, and their quality checks. Document this in your quality system.

Check: Are you documenting every single data preprocessing step with version control?

When you use RWE, the steps you take to clean, normalize, and filter the data are part of your design process. These steps must be documented, validated, and placed under revision control. A regulator will want to see exactly how you transformed the raw data into the evidence you're presenting.

Audit: How are you addressing bias in your selected real world dataset?

All real world data has bias. For example, data from a single academic hospital may not represent the broader population. Your study protocol must explicitly identify potential biases (selection bias, observer bias, etc.) and detail the statistical methods you're using to mitigate them.

Check: If your device generates data, is it structured for easy and effective de identification?

Design for post market surveillance from the start. This means using standardized ontologies (like SNOMED or LOINC), avoiding free text fields where possible, and structuring the data logs so that the 18 HIPAA identifiers can be easily stripped out without destroying the data's utility.

• • •
RECALL ANALYSIS
The FDA's QMSR Hit List: What Inspectors Are Flagging Right Now

Ever wonder what FDA inspectors are focusing on with the new Quality Management System Regulation (QMSR)? Now we have a clearer picture. An FDA official recently detailed the top three areas where companies are getting tripped up: risk management, supplier controls, and complaint handling. If you're prepping for an audit, these are the areas to pressure test first.

What the FDA is Finding

According to the report, these three areas are the most common sources of Form 483 observations under the new QMSR, which harmonizes the old quality system regulation with the international standard ISO 13485:2016. These aren't new topics, but the emphasis is telling. The FDA is looking for mature, interconnected processes, not just paperwork that checks a box.

Seeing these three together makes perfect sense. A weak supplier can introduce a new risk you didn't anticipate, and the first signal you get might be a wave of customer complaints. A failure in any one of these areas often exposes weaknesses in the other two. They form a critical triangle in any effective quality system.

Why These Are Common Pitfalls

Risk management is a classic stumbling block because it's often treated as a static document you create during development and then forget. The FDA expects your risk management file to be a living document. It should be updated based on data from production, feedback from suppliers, and, most importantly, post market complaints and trend analysis. A dusty FMEA is a major red flag.

Supplier controls, or 'outsourcing and purchasing,' get tricky in a world of complex global supply chains. It's not enough to have a certificate from your Tier 1 supplier. You're expected to understand the risks associated with their suppliers (Tier 2 and beyond), especially for critical components. A lack of deep supply chain visibility is a common gap.

And finally, complaint handling. The biggest failure here is an open loop system. Companies are often good at documenting complaints but fail to properly investigate them down to the root cause and, crucially, fail to feed the results back into the risk management file and the design and development process. If your complaint system doesn't drive corrective and preventive actions (CAPAs), it's just a filing cabinet.

Regulatory & Standards Context

The new QMSR directly incorporates ISO 13485:2016 by reference, so the clauses of the standard are now the law of the land. The observations map directly to key sections. Risk management is central to nearly the entire standard, but especially Clause 7.1 on planning of product realization and ISO 14971.

Supplier and purchasing controls are detailed in Clause 7.4. This section requires you to establish criteria for the evaluation and selection of suppliers based on their ability to provide product that meets your requirements. The feedback and complaint handling observations tie directly to Clause 8.2, which requires a documented procedure for feedback and complaint handling, and Clause 8.5 on improvement.

Design Playbook - Learning from the Event

Audit: When was the last time your risk management file was updated with data from production and complaints?

Pull up your main risk document, like your system FMEA. Find the section on post market information. If the last entry is from two years ago, you have a problem. This should be a living document, reviewed and updated on a regular cadence, and especially when new information (like a trend in complaints) comes to light.

Check: Does your supplier scorecard include metrics for on time delivery of documentation?

A great way to monitor supplier health is to track their administrative performance. Late or incomplete documentation for incoming material lots is often a leading indicator of deeper quality issues. If a supplier can't get the paperwork right, it's a warning sign about their process control.

Audit: Can you trace a specific customer complaint all the way to a change in a design spec or process instruction?

Pick a recent, significant complaint. You should be able to follow the paper trail from the initial report to a root cause investigation, to a CAPA, and finally to a tangible change. This could be an update to a component drawing, a new test procedure, or a clarification in the user manual. If that chain is broken, your feedback loop is broken.

Check: Do you risk classify your suppliers?

Not all suppliers are created equal. You should have a documented system for classifying suppliers based on the risk of the component or service they provide. A supplier of a critical custom ASIC requires a much higher level of scrutiny and auditing than a supplier of standard screws. Your audit schedule and qualification process should reflect this risk based approach.

• • •
DIGITAL HEALTH
The End of the Paper IFU? A Look at the E-Labeling Bill

We've all seen them, the phonebook sized Instructions for Use (IFU) that come with even simple medical devices, translated into two dozen languages. A bipartisan bill recently introduced in the Senate aims to replace that paper with pixels, proposing a significant expansion of electronic labeling for medical devices. This isn't just about saving trees; it's about making instructions more effective and timely.

What the Proposed Bill Changes

The goal of the bill is to give manufacturers the option to provide instructions for use in an electronic format instead of on paper for a wider range of medical devices. While the FDA already has guidance that allows for e-labeling for certain devices (primarily those used by professionals in healthcare facilities), this legislation would broaden that authority.

The logic is straightforward. Electronic IFUs can be updated almost instantly to reflect new safety information or use instructions. Paper IFUs can be outdated the moment they are printed. Plus, a digital format opens the door to richer content, like instructional videos, searchable text, and accessibility features for users with disabilities.

The Design Opportunities & Challenges

This is a huge opportunity for design engineers. Imagine replacing a 100 page static PDF with an interactive, guided tutorial on your website or in an app. You could embed videos showing a tricky maintenance procedure or use animations to explain a complex workflow. This could significantly reduce use errors and improve the user experience.

But it also introduces new challenges. The biggest is ensuring access for all users. What about a hospital with spotty Wi Fi or a user who isn't tech savvy? Your design will need to account for these scenarios, perhaps by providing an easy way to request a paper copy. There's also the challenge of validation. You now have to validate the website or platform delivering the IFU, ensuring its reliability, security, and usability.

Regulatory & Standards Context

This legislative push builds on the FDA's existing final guidance, 'Use of Electronic Records and Electronic Signatures in Clinical Investigations Under 21 CFR Part 11.' However, this bill would provide clearer and broader statutory authority. From a design perspective, this ties directly into usability engineering and IEC 62366 1.

Your usability testing would need to expand to cover the electronic IFU. Can users find the information they need easily? Is the text readable on various screen sizes? If there's a video, is it clear and understandable? The IFU is considered part of the user interface, and making it electronic just means the interface is now on a screen instead of on paper.

Design Playbook - Learning from the Event

Check: Does your product roadmap account for the infrastructure needed for e-labeling?

Don't underestimate the backend work. You'll need a secure, version controlled content management system (CMS) to host your electronic IFUs. This system needs to be validated to ensure you can't accidentally deploy a draft version and that you maintain a full audit trail of all changes.

Audit: Have you defined the 'worst case' user for your electronic IFU?

Your usability plan should include users who are older, have visual impairments, or are unfamiliar with digital technology. You need to prove that your electronic system doesn't create a barrier to accessing critical safety information for any intended user. This might mean incorporating features like adjustable text size and screen reader compatibility.

Check: Is your cybersecurity risk assessment updated to include the IFU delivery platform?

If your IFU is hosted on your website, that website is now part of your medical device's labeling. A denial of service attack or a malicious hack that defaces the instructions becomes a safety issue. The website's security and reliability are now subject to the same scrutiny as the device itself.

Audit: How will you manage version control between the device software and the electronic IFU?

When you update the software on your device, you often need to update the IFU. You must have a robust process that links the released version of the software to the correct, approved version of the electronic IFU. A mismatch could lead to a user following outdated instructions, which is a significant patient risk.

"That's it for this week. Go pull up your power FMEA and add 'intermittent cable failure.' Trust me on this one."

Synaptic Digest

Synaptic Digest is the daily intelligence stream for medical device engineers who value precision over hype. We track the collision of AI, biology, and compliance, delivering a fluff-free analysis of the industry's technical wins, supply chain realities, and regulatory hurdles.

Read more from Synaptic Digest

FDA Changed the Rules for Wellness Apps. Are You Still a Device? Today's issue dives deep into the FDA's new guidance for wellness and clinical decision support software, clarifying the blurry line between a regulat... SYNAPTIC DIGEST THURSDAY, JANUARY 29, 2026 | 10 MIN READ At a Glance: Today's issue dives deep into the FDA's new guidance for wellness and clinical decision support software, clarifying the blurry line between a regulated device and a low risk tool. We'll analyze what this...

Synaptic Digest: When Control Algorithms Fail, Patients Are at Risk Today's issue digs into an Olympus insufflator recall caused by a software algorithm's overpressure failure, a new FDA draft guidance that's raising t... SYNAPTIC DIGEST TUESDAY, JANUARY 27, 2026 | 15 MIN READ At a Glance: Today's issue digs into an Olympus insufflator recall caused by a software algorithm's overpressure failure, a new FDA draft guidance that's raising the bar for cuffless blood pressure monitors, and...

Synaptic Digest: A Stent Deployment Failure, FDA's New Cyber Mandate, and Lessons from WHOOP Today's issue digs into a critical stent deployment failure leading to a major recall, breaks down the FDA's new non-negotiable cybersecurity rules th... SYNAPTIC DIGEST THURSDAY, JANUARY 22, 2026 | 15 MIN READ At a Glance: Today's issue digs into a critical stent deployment failure leading to a major recall, breaks down the FDA's new non-negotiable cybersecurity rules that can get your submission...