-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathVentilator.net
11503 lines (11503 loc) · 467 KB
/
Ventilator.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(export (version D)
(design
(source C:\Projects\Ventilator\pcb\Ventilator.sch)
(date "3/30/2021 12:39:34 AM")
(tool "Eeschema (5.1.9)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Ventilator Top-Level")
(company RespiraWorks)
(rev A)
(date)
(source Ventilator.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name "/Logic/Control Power Supplies/") (tstamps /5FCD4B8E/)
(title_block
(title "Logic/Control Power Supplies")
(company RespiraWorks)
(rev A)
(date)
(source power.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name "/Logic/Control Power Supplies/5V UI Supply/") (tstamps /5FCD4B8E/5FCD4BC5/)
(title_block
(title "5V Buck Converter")
(company RespiraWorks)
(rev A)
(date)
(source power_5V_buck.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name "/Logic/Control Power Supplies/3.3V Logic Supply/") (tstamps /5FCD4B8E/5FCD4BF6/)
(title_block
(title "3.3V LDO Regulator")
(company RespiraWorks)
(rev A)
(date)
(source power_3.3V_LDO.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name "/Logic/Control Power Supplies/5V Control Supply/") (tstamps /5FCD4B8E/5FE27F70/)
(title_block
(title "5V Buck Converter")
(company RespiraWorks)
(rev A)
(date)
(source power_5V_buck.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name "/Logic/Control Power Supplies/3.3V Sensor Supply/") (tstamps /5FCD4B8E/606EF10F/)
(title_block
(title "3.3V LDO Regulator")
(company RespiraWorks)
(rev A)
(date)
(source power_3.3V_LDO.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name "/Cycle Controller/") (tstamps /5FCD4D18/)
(title_block
(title "Cycle Controller")
(company RespiraWorks)
(rev A)
(date)
(source cycle_controller.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 8) (name "/UI Computer/") (tstamps /5FCD4D4C/)
(title_block
(title "UI Computer")
(company RespiraWorks)
(rev A)
(date)
(source ui_computer.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 9) (name "/Alarms and Power Monitoring/") (tstamps /5FCD4DF5/)
(title_block
(title "Alarms and Safety")
(company RespiraWorks)
(rev A)
(date)
(source alarms.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 10) (name /Indicators/) (tstamps /5FCD4E33/)
(title_block
(title Indicators)
(company RespiraWorks)
(rev A)
(date)
(source indicators.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 11) (name "/Safety FPGA/") (tstamps /5FCD4E6A/)
(title_block
(title "Safety FPGA")
(company RespiraWorks)
(rev A)
(date)
(source fpga.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 12) (name "/Pressure Sensors/") (tstamps /5FCD4E9D/)
(title_block
(title "Pressure Sensors")
(company RespiraWorks)
(rev A)
(date)
(source sensors_pressure.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 13) (name "/Pressure Sensors/Pressure sensor daughterboard (Inf_Flow)/") (tstamps /5FCD4E9D/600630A6/)
(title_block
(title "Pressure Sensor Daughterboard Connections, Analog")
(company RespiraWorks)
(rev A)
(date)
(source sensors_pressure_daughterboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 14) (name "/Pressure Sensors/Pressure sensor daughterboard (Exh_Flow)/") (tstamps /5FCD4E9D/60073FCF/)
(title_block
(title "Pressure Sensor Daughterboard Connections, Analog")
(company RespiraWorks)
(rev A)
(date)
(source sensors_pressure_daughterboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 15) (name "/Pressure Sensors/Pressure sensor daugherboard (Oxy_Flow)/") (tstamps /5FCD4E9D/6007AC3B/)
(title_block
(title "Pressure Sensor Daughterboard Connections, Analog")
(company RespiraWorks)
(rev A)
(date)
(source sensors_pressure_daughterboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 16) (name "/Pressure Sensors/Pressure sensor daughterboard (Mix_Tank_Pressure)/") (tstamps /5FCD4E9D/6007DA64/)
(title_block
(title "Pressure Sensor Daughterboard Connections, Analog")
(company RespiraWorks)
(rev A)
(date)
(source sensors_pressure_daughterboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 17) (name "/Pressure Sensors/Pressure sensor daughterboard (Patient_Pressure)/") (tstamps /5FCD4E9D/6007E2BB/)
(title_block
(title "Pressure Sensor Daughterboard Connections, Analog")
(company RespiraWorks)
(rev A)
(date)
(source sensors_pressure_daughterboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 18) (name "/Pressure Sensors/Pressure sensor daughterboard (Oxy_Pressure)/") (tstamps /5FCD4E9D/6007BD34/)
(title_block
(title "Pressure Sensor Daughterboard Connections, Analog")
(company RespiraWorks)
(rev A)
(date)
(source sensors_pressure_daughterboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 19) (name "/Pressure Sensors/Pressure sensor daughterboard (Ambient)/") (tstamps /5FCD4E9D/600CF516/)
(title_block
(title "Pressure Sensor Daughterboard Connections, Analog")
(company RespiraWorks)
(rev A)
(date)
(source sensors_pressure_daughterboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 20) (name "/Pressure Sensors/Pressure sensor daughterboard (??)/") (tstamps /5FCD4E9D/600D74A6/)
(title_block
(title "Pressure Sensor Daughterboard Connections, Analog")
(company RespiraWorks)
(rev A)
(date)
(source sensors_pressure_daughterboard.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 21) (name "/Oxygen and Temperature Sensors/") (tstamps /5FCD4EEA/)
(title_block
(title "Oxygen and Temperature Sensors")
(company RespiraWorks)
(rev A)
(date)
(source sensors_o2_temp.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 22) (name "/Oxygen and Temperature Sensors/NTC Temp. Sensor (Stepper 1)/") (tstamps /5FCD4EEA/600F5EF3/)
(title_block
(title "NTC Temperature Sensor Input")
(company RespiraWorks)
(rev A)
(date)
(source sensors_temp_ntc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 23) (name "/Oxygen and Temperature Sensors/NTC Temp. Sensor (Stepper 2)/") (tstamps /5FCD4EEA/600F7154/)
(title_block
(title "NTC Temperature Sensor Input")
(company RespiraWorks)
(rev A)
(date)
(source sensors_temp_ntc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 24) (name "/Oxygen and Temperature Sensors/NTC Temp. Sensor (Blower)/") (tstamps /5FCD4EEA/600F719E/)
(title_block
(title "NTC Temperature Sensor Input")
(company RespiraWorks)
(rev A)
(date)
(source sensors_temp_ntc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 25) (name "/Oxygen and Temperature Sensors/NTC Temp. Sensor (Battery)/") (tstamps /5FCD4EEA/600F71F1/)
(title_block
(title "NTC Temperature Sensor Input")
(company RespiraWorks)
(rev A)
(date)
(source sensors_temp_ntc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 26) (name "/Oxygen and Temperature Sensors/NTC Temp. Sensor (Spare)/") (tstamps /5FCD4EEA/600F723B/)
(title_block
(title "NTC Temperature Sensor Input")
(company RespiraWorks)
(rev A)
(date)
(source sensors_temp_ntc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 27) (name "/PSol Driver, Spare/") (tstamps /5FCD5082/)
(title_block
(title "Proportional Solenoid Driver")
(company RespiraWorks)
(rev A)
(date)
(source driver_solenoid.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 28) (name "/Stepper Motor Driver (...)/") (tstamps /5FCD50A5/)
(title_block
(title "Stepper Motor Driver")
(company RespiraWorks)
(rev A)
(date)
(source driver_stepper.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 29) (name "/System Monitor ADC/") (tstamps /603267F9/)
(title_block
(title "System Monitor ADC")
(company RespiraWorks)
(rev A)
(date)
(source system_monitor_adc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 30) (name "/Power Entry / Battery Handling/") (tstamps /6041384A/)
(title_block
(title "Power Entry / Battery Controller")
(company RespiraWorks)
(rev A)
(date)
(source battery_controller.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 31) (name "/Power Entry / Battery Handling/Battery Charger / Source Switching/") (tstamps /6041384A/60567144/)
(title_block
(title "Battery Charger / Power Source Switching")
(company RespiraWorks)
(rev A)
(date)
(source battery_charger.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 32) (name "/Power Entry / Battery Handling/Battery Balancer/") (tstamps /6041384A/60567757/)
(title_block
(title "Battery Balancer")
(company RespiraWorks)
(rev A)
(date)
(source battery_balancer.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 33) (name "/Power Entry / Battery Handling/12V System Buck Converter/") (tstamps /6041384A/60567D6E/)
(title_block
(title "12V System Power Supply")
(company RespiraWorks)
(rev A)
(date)
(source power_vsys.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 34) (name "/PSol Driver/") (tstamps /6042B5C5/)
(title_block
(title "Proportional Solenoid Driver")
(company RespiraWorks)
(rev A)
(date)
(source driver_solenoid.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 35) (name "/Stepper Motor Driver (..)/") (tstamps /6052CC9F/)
(title_block
(title "Stepper Motor Driver")
(company RespiraWorks)
(rev A)
(date)
(source driver_stepper.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 36) (name "/FPGA's ADC/") (tstamps /60EBB32E/)
(title_block
(title "System Monitor ADC")
(company RespiraWorks)
(rev A)
(date)
(source system_monitor_adc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 37) (name "/STM Programmer for cycle controller/") (tstamps /5FCD4D85/)
(title_block
(title "STM Programmer for Cycle Controller")
(company RespiraWorks)
(rev A)
(date)
(source stm_programmer.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 38) (name "/Add'l aux functions/") (tstamps /6017BD7E/)
(title_block
(title "Add'l aux. functions")
(company RespiraWorks)
(rev A)
(date)
(source misc.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref TP8)
(value PMon-IBat)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60791348))
(comp (ref TP9)
(value PMon-IAdp)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60794E5D))
(comp (ref TP7)
(value PG-12V)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60795041))
(comp (ref TP35)
(value PSol-CS1)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60CB2805))
(comp (ref TP43)
(value PSol-CS2)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60CB3297))
(comp (ref R10)
(value 100k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60EFD67C))
(comp (ref R11)
(value 100k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F11B43))
(comp (ref R12)
(value 100k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F12056))
(comp (ref R13)
(value 100k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F1229D))
(comp (ref R14)
(value 100k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F124C4))
(comp (ref R15)
(value 100k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F1267D))
(comp (ref R16)
(value 100k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F128F2))
(comp (ref R17)
(value 100k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60F12B47))
(comp (ref R5)
(value 1k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61017E98))
(comp (ref Q1)
(value MMBT3904)
(footprint RespiraWorks_Std:SOT-23)
(datasheet ~)
(fields
(field (name Manufacturer) "Diodes Inc.")
(field (name "Manufacturer PN") MMBT3904-7-F))
(libsource (lib Device) (part Q_NPN_BEC) (description "NPN transistor, base/emitter/collector"))
(sheetpath (names /) (tstamps /))
(tstamp 611270D9))
(comp (ref Q2)
(value MMBT3904)
(footprint RespiraWorks_Std:SOT-23)
(datasheet ~)
(fields
(field (name Manufacturer) "Diodes Inc.")
(field (name "Manufacturer PN") MMBT3904-7-F))
(libsource (lib Device) (part Q_NPN_BEC) (description "NPN transistor, base/emitter/collector"))
(sheetpath (names /) (tstamps /))
(tstamp 61134B86))
(comp (ref R4)
(value 1k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 61186307))
(comp (ref R6)
(value 1k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 611934F2))
(comp (ref JP2)
(value Jumper_NC_Small)
(footprint RespiraWorks_Std:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Device) (part Jumper_NC_Small) (description "Jumper, normally closed, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 606C2506))
(comp (ref JP1)
(value Jumper_NC_Small)
(footprint RespiraWorks_Std:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib Device) (part Jumper_NC_Small) (description "Jumper, normally closed, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 606C250C))
(comp (ref R9)
(value 4.7k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 607435A7))
(comp (ref TP10)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A17A42))
(comp (ref TP11)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A1C052))
(comp (ref TP12)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A1C211))
(comp (ref TP13)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A1C4A2))
(comp (ref TP14)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A1C72F))
(comp (ref TP15)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A1CA88))
(comp (ref TP16)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A1CEF8))
(comp (ref TP6)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A1D160))
(comp (ref TP1)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A1DF20))
(comp (ref TP2)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A1E2E3))
(comp (ref TP3)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A1E5FD))
(comp (ref TP4)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A1E947))
(comp (ref TP5)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A1EB66))
(comp (ref TP33)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A2ACA6))
(comp (ref TP34)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A2AE16))
(comp (ref TP23)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A2B06D))
(comp (ref TP24)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A2CB9E))
(comp (ref TP25)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A2CE08))
(comp (ref TP26)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A2D0A2))
(comp (ref TP27)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A2D371))
(comp (ref TP28)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A2D632))
(comp (ref TP29)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A2D911))
(comp (ref TP30)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A2DC00))
(comp (ref TP31)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A2E63C))
(comp (ref TP32)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60A2E883))
(comp (ref TP22)
(value FPGA-ADC-nInt)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60D1BAED))
(comp (ref TP41)
(value TestPoint_Flag)
(footprint RespiraWorks_Std:TestPoint_Keystone_5019_Minature)
(datasheet ~)
(fields
(field (name Manufacturer) Keystone)
(field (name "Manufacturer PN") 5019))
(libsource (lib Connector) (part TestPoint_Flag) (description "test point (alternative flag-style design)"))
(sheetpath (names /) (tstamps /))
(tstamp 60E50B1C))
(comp (ref TP46)
(value TestPoint_Flag)
(footprint RespiraWorks_Std:TestPoint_Keystone_5019_Minature)
(datasheet ~)
(fields
(field (name Manufacturer) Keystone)
(field (name "Manufacturer PN") 5019))
(libsource (lib Connector) (part TestPoint_Flag) (description "test point (alternative flag-style design)"))
(sheetpath (names /) (tstamps /))
(tstamp 60E66A0F))
(comp (ref TP52)
(value TestPoint_Flag)
(footprint RespiraWorks_Std:TestPoint_Keystone_5019_Minature)
(datasheet ~)
(fields
(field (name Manufacturer) Keystone)
(field (name "Manufacturer PN") 5019))
(libsource (lib Connector) (part TestPoint_Flag) (description "test point (alternative flag-style design)"))
(sheetpath (names /) (tstamps /))
(tstamp 60E795DF))
(comp (ref TP42)
(value TestPoint_Flag)
(footprint RespiraWorks_Std:TestPoint_Keystone_5019_Minature)
(datasheet ~)
(fields
(field (name Manufacturer) Keystone)
(field (name "Manufacturer PN") 5019))
(libsource (lib Connector) (part TestPoint_Flag) (description "test point (alternative flag-style design)"))
(sheetpath (names /) (tstamps /))
(tstamp 60E8C201))
(comp (ref TP47)
(value TestPoint_Flag)
(footprint RespiraWorks_Std:TestPoint_Keystone_5019_Minature)
(datasheet ~)
(fields
(field (name Manufacturer) Keystone)
(field (name "Manufacturer PN") 5019))
(libsource (lib Connector) (part TestPoint_Flag) (description "test point (alternative flag-style design)"))
(sheetpath (names /) (tstamps /))
(tstamp 60E9EF91))
(comp (ref TP53)
(value TestPoint_Flag)
(footprint RespiraWorks_Std:TestPoint_Keystone_5019_Minature)
(datasheet ~)
(fields
(field (name Manufacturer) Keystone)
(field (name "Manufacturer PN") 5019))
(libsource (lib Connector) (part TestPoint_Flag) (description "test point (alternative flag-style design)"))
(sheetpath (names /) (tstamps /))
(tstamp 60EB1DFD))
(comp (ref TP39)
(value TestPoint_Flag)
(footprint RespiraWorks_Std:TestPoint_Keystone_5019_Minature)
(datasheet ~)
(fields
(field (name Manufacturer) Keystone)
(field (name "Manufacturer PN") 5019))
(libsource (lib Connector) (part TestPoint_Flag) (description "test point (alternative flag-style design)"))
(sheetpath (names /) (tstamps /))
(tstamp 60EC7D7F))
(comp (ref TP44)
(value TestPoint_Flag)
(footprint RespiraWorks_Std:TestPoint_Keystone_5019_Minature)
(datasheet ~)
(fields
(field (name Manufacturer) Keystone)
(field (name "Manufacturer PN") 5019))
(libsource (lib Connector) (part TestPoint_Flag) (description "test point (alternative flag-style design)"))
(sheetpath (names /) (tstamps /))
(tstamp 60EC7D8B))
(comp (ref TP50)
(value TestPoint_Flag)
(footprint RespiraWorks_Std:TestPoint_Keystone_5019_Minature)
(datasheet ~)
(fields
(field (name Manufacturer) Keystone)
(field (name "Manufacturer PN") 5019))
(libsource (lib Connector) (part TestPoint_Flag) (description "test point (alternative flag-style design)"))
(sheetpath (names /) (tstamps /))
(tstamp 60EC7D97))
(comp (ref TP40)
(value TestPoint_Flag)
(footprint RespiraWorks_Std:TestPoint_Keystone_5019_Minature)
(datasheet ~)
(fields
(field (name Manufacturer) Keystone)
(field (name "Manufacturer PN") 5019))
(libsource (lib Connector) (part TestPoint_Flag) (description "test point (alternative flag-style design)"))
(sheetpath (names /) (tstamps /))
(tstamp 60EC7DA3))
(comp (ref TP45)
(value TestPoint_Flag)
(footprint RespiraWorks_Std:TestPoint_Keystone_5019_Minature)
(datasheet ~)
(fields
(field (name Manufacturer) Keystone)
(field (name "Manufacturer PN") 5019))
(libsource (lib Connector) (part TestPoint_Flag) (description "test point (alternative flag-style design)"))
(sheetpath (names /) (tstamps /))
(tstamp 60EC7DAF))
(comp (ref TP51)
(value TestPoint_Flag)
(footprint RespiraWorks_Std:TestPoint_Keystone_5019_Minature)
(datasheet ~)
(fields
(field (name Manufacturer) Keystone)
(field (name "Manufacturer PN") 5019))
(libsource (lib Connector) (part TestPoint_Flag) (description "test point (alternative flag-style design)"))
(sheetpath (names /) (tstamps /))
(tstamp 60EC7DBB))
(comp (ref TP38)
(value CC-SCL)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60F26022))
(comp (ref TP36)
(value CC-SDA)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60F389F6))
(comp (ref TP48)
(value UART-RTS-STM-CTS-RPi)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60F8526B))
(comp (ref TP49)
(value UART-CTS-STM-RTS-RPi)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60FAE764))
(comp (ref TP54)
(value UART-Tx-RPi-Rx-STM)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60FC22AD))
(comp (ref TP55)
(value UART-Rx-RPi-Tx-STM)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 60FD625A))
(comp (ref TP21)
(value UART-Tx-STM-Rx-STLink)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 6059BD56))
(comp (ref TP20)
(value UART-Rx-STM-Tx-STLink)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 6059E643))
(comp (ref R18)
(value 4.7k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60400556))
(comp (ref R19)
(value 4.7k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60413A39))
(comp (ref D1)
(value BAT54J)
(footprint RespiraWorks_Std:D_SOD-323F)
(datasheet https://assets.nexperia.com/documents/data-sheet/BAT54J.pdf)
(fields
(field (name Manufacturer) Nexperia)
(field (name "Manufacturer PN") BAT54J,115))
(libsource (lib Device) (part D_Schottky) (description "Schottky diode"))
(sheetpath (names /) (tstamps /))
(tstamp 6072681D))
(comp (ref TP17)
(value TP)
(footprint RespiraWorks_Std:TestPoint_Pad_2.0x2.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 6058513B))
(comp (ref R1)
(value 1k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 604B25BE))
(comp (ref R7)
(value 1k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60522AB9))
(comp (ref R8)
(value 1k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60576A26))
(comp (ref R2)
(value 1k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60617B29))
(comp (ref R3)
(value 1k)
(footprint RespiraWorks_Std:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))