-
|
I'm working on a wearable pulse oximeter with BLE connectivity. The core Electrum workflow seems useful, but medical devices have regulatory requirements (FDA 510(k), IEC 62304 for software lifecycle, IEC 60601 for electrical safety) that go well beyond the current gate checklist. Specific questions:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Good question — this comes up often. Here's how I'd approach it: Run the standard phases first, then layer regulatoryThe 8-phase workflow is about product definition, not regulatory compliance. Run it as-is to get clarity on the HW/SW boundary, the architecture, and the hard problems. A pulse oximeter has genuine engineering questions that exist independent of the FDA: What's the SpO2 accuracy target? How do you handle motion artifacts? What's the power budget with continuous BLE streaming? Get those answers first. Regulatory requirements don't change the physics — they change the documentation and verification burden. What to modifyPhase 1 (Explore): Add regulatory classification to the exploration. For a Class II pulse oximeter, the predicate device analysis matters early — it tells you which performance standards you're measured against. Add a row to the HW/SW boundary table: Phase 4 (System Description): The current template has 10 sections. For a medical device, I'd add:
Phase 5 (Gate Checklist): The current 90 items cover about 60% of what a medical device needs. The missing categories:
I'd estimate you need ~30 additional checklist items for Class II. I've been thinking about publishing a medical device extension template — if there's interest, that could become a contributed template in The risk management questionKeep ISO 14971 as a separate document. The system description is an engineering artifact; the risk management file is a regulatory artifact. They reference each other, but they serve different audiences and have different lifecycle requirements. The system description changes when the design changes. The risk file changes when hazards change — which is a subset of design changes. That said, the gate checklist is the natural bridge. Every FAIL in the gate review should map to a line in the risk file: is this an accepted risk, a mitigated risk, or an open risk? That traceability is exactly what an FDA reviewer looks for. |
Beta Was this translation helpful? Give feedback.
Good question — this comes up often. Here's how I'd approach it:
Run the standard phases first, then layer regulatory
The 8-phase workflow is about product definition, not regulatory compliance. Run it as-is to get clarity on the HW/SW boundary, the architecture, and the hard problems. A pulse oximeter has genuine engineering questions that exist independent of the FDA: What's the SpO2 accuracy target? How do you handle motion artifacts? What's the power budget with continuous BLE streaming?
Get those answers first. Regulatory requirements don't change the physics — they change the documentation and verification burden.
What to modify
Phase 1 (Explore): Add regulatory classification to th…