WIP
This commit is contained in:
parent
7afac30aab
commit
8e93d7f7a9
4 changed files with 1928 additions and 13578 deletions
84
micro-ihsm-hw/Electrooptics.ipynb
Normal file
84
micro-ihsm-hw/Electrooptics.ipynb
Normal file
|
|
@ -0,0 +1,84 @@
|
||||||
|
{
|
||||||
|
"cells": [
|
||||||
|
{
|
||||||
|
"cell_type": "code",
|
||||||
|
"execution_count": 1,
|
||||||
|
"id": "191cdc91-de49-41a5-87f3-3283d939d150",
|
||||||
|
"metadata": {},
|
||||||
|
"outputs": [],
|
||||||
|
"source": [
|
||||||
|
"import numpy as np\n",
|
||||||
|
"from matplotlib import pyplot as plt\n",
|
||||||
|
"from scipy import signal as sig\n",
|
||||||
|
"\n",
|
||||||
|
"%matplotlib inline"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cell_type": "code",
|
||||||
|
"execution_count": 11,
|
||||||
|
"id": "c0ea3fcc-aaae-4dbf-a637-f3f1e122d12b",
|
||||||
|
"metadata": {},
|
||||||
|
"outputs": [
|
||||||
|
{
|
||||||
|
"name": "stdout",
|
||||||
|
"output_type": "stream",
|
||||||
|
"text": [
|
||||||
|
"LED optical power: 24.000 mW\n",
|
||||||
|
"LED power density at photodiode surface: 0.007 mW/cm^2\n",
|
||||||
|
"Photodiode reverse current: 14.106 nA\n",
|
||||||
|
"Photodiode background reverse current: 2.000 µA\n",
|
||||||
|
"voltage bit depth: 7.148 bit\n"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source": [
|
||||||
|
"light_current_efficiency = 2 # worst case, µA @ 1mW/cm^2, @950 nm, @V_R = 5V\n",
|
||||||
|
"light_current_efficiency *= 1e-6 * 1e3 / (100**2) # normalize units -> A * m^2 / W\n",
|
||||||
|
"\n",
|
||||||
|
"led_voltage = 1.2 # infrared LED\n",
|
||||||
|
"led_current = 0.05 # ampere\n",
|
||||||
|
"led_power = led_voltage * led_current\n",
|
||||||
|
"led_efficiency = 0.4 # guess\n",
|
||||||
|
"led_optical_power = led_power * led_efficiency\n",
|
||||||
|
"print(f'LED optical power: {led_optical_power*1e3:.3f} mW')\n",
|
||||||
|
"\n",
|
||||||
|
"led_distance = 0.03 # meter\n",
|
||||||
|
"led_angle = 160 # degree, full angle\n",
|
||||||
|
"led_irradiated_area = led_distance * np.tan(np.radians(led_angle/2)) * 2\n",
|
||||||
|
"led_power_density = led_optical_power / led_irradiated_area # led power at receiver photodiode plane, W/m^2\n",
|
||||||
|
"print(f'LED power density at photodiode surface: {led_power_density * 1e3 / 1e4:.3f} mW/cm^2')\n",
|
||||||
|
"\n",
|
||||||
|
"pd_current = led_power_density * light_current_efficiency\n",
|
||||||
|
"print(f'Photodiode reverse current: {pd_current*1e9:.3f} nA')\n",
|
||||||
|
"\n",
|
||||||
|
"indoor_light = 10 # W / m^2\n",
|
||||||
|
"pd_background_current = indoor_light * light_current_efficiency\n",
|
||||||
|
"print(f'Photodiode background reverse current: {pd_background_current*1e6:.3f} µA')\n",
|
||||||
|
"\n",
|
||||||
|
"print(f'Equivalent voltage bit depth: {np.log2(pd_background_current/pd_current):.3f} bit')"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"metadata": {
|
||||||
|
"kernelspec": {
|
||||||
|
"display_name": "Python 3 (ipykernel)",
|
||||||
|
"language": "python",
|
||||||
|
"name": "python3"
|
||||||
|
},
|
||||||
|
"language_info": {
|
||||||
|
"codemirror_mode": {
|
||||||
|
"name": "ipython",
|
||||||
|
"version": 3
|
||||||
|
},
|
||||||
|
"file_extension": ".py",
|
||||||
|
"mimetype": "text/x-python",
|
||||||
|
"name": "python",
|
||||||
|
"nbconvert_exporter": "python",
|
||||||
|
"pygments_lexer": "ipython3",
|
||||||
|
"version": "3.13.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"nbformat": 4,
|
||||||
|
"nbformat_minor": 5
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"board": {
|
"board": {
|
||||||
"active_layer": 0,
|
"active_layer": 2,
|
||||||
"active_layer_preset": "All Layers",
|
"active_layer_preset": "All Layers",
|
||||||
"auto_track_width": true,
|
"auto_track_width": true,
|
||||||
"hidden_netclasses": [],
|
"hidden_netclasses": [],
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
},
|
},
|
||||||
"selection_filter": {
|
"selection_filter": {
|
||||||
"dimensions": false,
|
"dimensions": false,
|
||||||
"footprints": false,
|
"footprints": true,
|
||||||
"graphics": false,
|
"graphics": false,
|
||||||
"keepouts": false,
|
"keepouts": false,
|
||||||
"lockedItems": false,
|
"lockedItems": false,
|
||||||
|
|
|
||||||
|
|
@ -7541,6 +7541,17 @@
|
||||||
)
|
)
|
||||||
(uuid "018cc315-e0e9-409e-8aa2-1b74b74101ad")
|
(uuid "018cc315-e0e9-409e-8aa2-1b74b74101ad")
|
||||||
)
|
)
|
||||||
|
(text "Note: LINK_LED_OUT is on PB9\nto use I2C FM+ 20mA sink\ndriver for increased current"
|
||||||
|
(exclude_from_sim no)
|
||||||
|
(at 228.092 433.324 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify right top)
|
||||||
|
)
|
||||||
|
(uuid "1a0f8da3-c400-45df-86a0-82b1cba33fb2")
|
||||||
|
)
|
||||||
(text "DC bias characteristics of those 10µF caps:"
|
(text "DC bias characteristics of those 10µF caps:"
|
||||||
(exclude_from_sim no)
|
(exclude_from_sim no)
|
||||||
(at 741.934 309.88 0)
|
(at 741.934 309.88 0)
|
||||||
|
|
@ -7715,7 +7726,7 @@
|
||||||
)
|
)
|
||||||
(uuid "c61b2f70-41a4-46c7-a4e6-0a18327309ae")
|
(uuid "c61b2f70-41a4-46c7-a4e6-0a18327309ae")
|
||||||
)
|
)
|
||||||
(text "Opamp 3, 5 configured in PGA mode\nwith external bias, output to ADC\n\nOpamp 6 configured in follower mode,\ninput from DAC3, output to VOUT pin"
|
(text "Opamp 1 configured in PGA mode,\nfor photodiode AGC, output to UART RX\nvia PCB jumper\n\nOpamp 3, 5 configured in PGA mode\nwith external bias, output to ADC\n\nOpamp 6 configured in follower mode,\ninput from DAC3, output to VOUT pin"
|
||||||
(exclude_from_sim no)
|
(exclude_from_sim no)
|
||||||
(at 224.79 458.47 0)
|
(at 224.79 458.47 0)
|
||||||
(effects
|
(effects
|
||||||
|
|
@ -8995,6 +9006,16 @@
|
||||||
)
|
)
|
||||||
(uuid "0aca9da4-e0f5-40d3-bd22-745d5520defd")
|
(uuid "0aca9da4-e0f5-40d3-bd22-745d5520defd")
|
||||||
)
|
)
|
||||||
|
(wire
|
||||||
|
(pts
|
||||||
|
(xy 283.21 378.46) (xy 300.99 378.46)
|
||||||
|
)
|
||||||
|
(stroke
|
||||||
|
(width 0)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(uuid "0b1a02cf-a1ae-49a4-8c3a-0f6983405bc4")
|
||||||
|
)
|
||||||
(wire
|
(wire
|
||||||
(pts
|
(pts
|
||||||
(xy 220.98 205.74) (xy 223.52 205.74)
|
(xy 220.98 205.74) (xy 223.52 205.74)
|
||||||
|
|
@ -9355,6 +9376,16 @@
|
||||||
)
|
)
|
||||||
(uuid "17cbca1f-ed24-4c84-a66a-9732acdcbbda")
|
(uuid "17cbca1f-ed24-4c84-a66a-9732acdcbbda")
|
||||||
)
|
)
|
||||||
|
(wire
|
||||||
|
(pts
|
||||||
|
(xy 234.95 414.02) (xy 250.19 414.02)
|
||||||
|
)
|
||||||
|
(stroke
|
||||||
|
(width 0)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(uuid "18172350-506a-4eb2-827c-d944b9c4a66a")
|
||||||
|
)
|
||||||
(wire
|
(wire
|
||||||
(pts
|
(pts
|
||||||
(xy 708.66 509.27) (xy 692.15 509.27)
|
(xy 708.66 509.27) (xy 692.15 509.27)
|
||||||
|
|
@ -11947,7 +11978,7 @@
|
||||||
)
|
)
|
||||||
(wire
|
(wire
|
||||||
(pts
|
(pts
|
||||||
(xy 283.21 398.78) (xy 300.99 398.78)
|
(xy 283.21 411.48) (xy 300.99 411.48)
|
||||||
)
|
)
|
||||||
(stroke
|
(stroke
|
||||||
(width 0)
|
(width 0)
|
||||||
|
|
@ -12267,7 +12298,7 @@
|
||||||
)
|
)
|
||||||
(wire
|
(wire
|
||||||
(pts
|
(pts
|
||||||
(xy 283.21 378.46) (xy 300.99 378.46)
|
(xy 283.21 386.08) (xy 300.99 386.08)
|
||||||
)
|
)
|
||||||
(stroke
|
(stroke
|
||||||
(width 0)
|
(width 0)
|
||||||
|
|
@ -13935,6 +13966,16 @@
|
||||||
)
|
)
|
||||||
(uuid "d14ab205-9d2d-4a95-8d45-d2bd75f6337a")
|
(uuid "d14ab205-9d2d-4a95-8d45-d2bd75f6337a")
|
||||||
)
|
)
|
||||||
|
(wire
|
||||||
|
(pts
|
||||||
|
(xy 283.21 375.92) (xy 300.99 375.92)
|
||||||
|
)
|
||||||
|
(stroke
|
||||||
|
(width 0)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(uuid "d19e3a27-c186-4bf2-b85b-740906b3846d")
|
||||||
|
)
|
||||||
(wire
|
(wire
|
||||||
(pts
|
(pts
|
||||||
(xy 725.17 496.57) (xy 727.71 496.57)
|
(xy 725.17 496.57) (xy 727.71 496.57)
|
||||||
|
|
@ -14435,6 +14476,16 @@
|
||||||
)
|
)
|
||||||
(uuid "e3bc4ea1-8a4f-4511-84b9-f4552aa01eaa")
|
(uuid "e3bc4ea1-8a4f-4511-84b9-f4552aa01eaa")
|
||||||
)
|
)
|
||||||
|
(wire
|
||||||
|
(pts
|
||||||
|
(xy 283.21 396.24) (xy 300.99 396.24)
|
||||||
|
)
|
||||||
|
(stroke
|
||||||
|
(width 0)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(uuid "e4aecae1-dde7-42c3-9b18-20b8866d3965")
|
||||||
|
)
|
||||||
(wire
|
(wire
|
||||||
(pts
|
(pts
|
||||||
(xy 727.71 506.73) (xy 727.71 509.27)
|
(xy 727.71 506.73) (xy 727.71 509.27)
|
||||||
|
|
@ -15265,6 +15316,16 @@
|
||||||
)
|
)
|
||||||
(uuid "fd2adc41-771f-49e1-bd7b-371877a04a74")
|
(uuid "fd2adc41-771f-49e1-bd7b-371877a04a74")
|
||||||
)
|
)
|
||||||
|
(wire
|
||||||
|
(pts
|
||||||
|
(xy 283.21 398.78) (xy 300.99 398.78)
|
||||||
|
)
|
||||||
|
(stroke
|
||||||
|
(width 0)
|
||||||
|
(type default)
|
||||||
|
)
|
||||||
|
(uuid "fdcea48a-93fe-44ee-bcb1-a865d425d760")
|
||||||
|
)
|
||||||
(wire
|
(wire
|
||||||
(pts
|
(pts
|
||||||
(xy 223.52 101.6) (xy 213.36 111.76)
|
(xy 223.52 101.6) (xy 213.36 111.76)
|
||||||
|
|
@ -16675,6 +16736,16 @@
|
||||||
)
|
)
|
||||||
(uuid "01e399ac-034c-4eae-b62e-7a655ad952f8")
|
(uuid "01e399ac-034c-4eae-b62e-7a655ad952f8")
|
||||||
)
|
)
|
||||||
|
(label "LINK_PD_PGA"
|
||||||
|
(at 234.95 414.02 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify left bottom)
|
||||||
|
)
|
||||||
|
(uuid "04e5599c-1a8a-465e-b7fe-8484ee9bb8e1")
|
||||||
|
)
|
||||||
(label "~{TERM_EN}"
|
(label "~{TERM_EN}"
|
||||||
(at 298.45 111.76 0)
|
(at 298.45 111.76 0)
|
||||||
(effects
|
(effects
|
||||||
|
|
@ -16695,6 +16766,16 @@
|
||||||
)
|
)
|
||||||
(uuid "0924d642-87bf-4e61-a534-8ab0fbf5d79c")
|
(uuid "0924d642-87bf-4e61-a534-8ab0fbf5d79c")
|
||||||
)
|
)
|
||||||
|
(label "LINK_PD_COMP"
|
||||||
|
(at 300.99 396.24 180)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify right bottom)
|
||||||
|
)
|
||||||
|
(uuid "0dfb5310-0178-4a55-91f3-9669f9a1f0ed")
|
||||||
|
)
|
||||||
(label "SAMPLE_C+"
|
(label "SAMPLE_C+"
|
||||||
(at 231.14 236.22 0)
|
(at 231.14 236.22 0)
|
||||||
(effects
|
(effects
|
||||||
|
|
@ -16866,7 +16947,7 @@
|
||||||
(uuid "352cd315-ac86-4dd1-9fb0-999b4ee59fef")
|
(uuid "352cd315-ac86-4dd1-9fb0-999b4ee59fef")
|
||||||
)
|
)
|
||||||
(label "MESH_FLIP"
|
(label "MESH_FLIP"
|
||||||
(at 300.99 398.78 180)
|
(at 300.99 411.48 180)
|
||||||
(effects
|
(effects
|
||||||
(font
|
(font
|
||||||
(size 1.27 1.27)
|
(size 1.27 1.27)
|
||||||
|
|
@ -16946,7 +17027,7 @@
|
||||||
(uuid "3f8ae7a9-876a-48b3-a287-7bcd8c911350")
|
(uuid "3f8ae7a9-876a-48b3-a287-7bcd8c911350")
|
||||||
)
|
)
|
||||||
(label "~{HDX_EN}"
|
(label "~{HDX_EN}"
|
||||||
(at 300.99 378.46 180)
|
(at 300.99 386.08 180)
|
||||||
(effects
|
(effects
|
||||||
(font
|
(font
|
||||||
(size 1.27 1.27)
|
(size 1.27 1.27)
|
||||||
|
|
@ -17215,6 +17296,16 @@
|
||||||
)
|
)
|
||||||
(uuid "9df7da02-9dc2-492c-b07a-9312b83ee8fa")
|
(uuid "9df7da02-9dc2-492c-b07a-9312b83ee8fa")
|
||||||
)
|
)
|
||||||
|
(label "LINK_PD_RAW"
|
||||||
|
(at 370.84 320.04 180)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify right bottom)
|
||||||
|
)
|
||||||
|
(uuid "9e52166d-21a9-4d80-9f35-bf8247d4de04")
|
||||||
|
)
|
||||||
(label "WPT_COIL_B"
|
(label "WPT_COIL_B"
|
||||||
(at 330.2 401.32 0)
|
(at 330.2 401.32 0)
|
||||||
(effects
|
(effects
|
||||||
|
|
@ -17325,6 +17416,16 @@
|
||||||
)
|
)
|
||||||
(uuid "b516751f-e8e9-4284-bfaf-e82c4d0e243d")
|
(uuid "b516751f-e8e9-4284-bfaf-e82c4d0e243d")
|
||||||
)
|
)
|
||||||
|
(label "LINK_PD_COMP"
|
||||||
|
(at 300.99 398.78 180)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify right bottom)
|
||||||
|
)
|
||||||
|
(uuid "b88857da-ae2c-4b07-acf1-68209eb9368c")
|
||||||
|
)
|
||||||
(label "MESH_SEND-"
|
(label "MESH_SEND-"
|
||||||
(at 92.71 106.68 0)
|
(at 92.71 106.68 0)
|
||||||
(effects
|
(effects
|
||||||
|
|
@ -17525,6 +17626,16 @@
|
||||||
)
|
)
|
||||||
(uuid "e0984935-fdc1-4e3c-a9bb-c980b9aa0066")
|
(uuid "e0984935-fdc1-4e3c-a9bb-c980b9aa0066")
|
||||||
)
|
)
|
||||||
|
(label "LINK_PD_RAW"
|
||||||
|
(at 300.99 375.92 180)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify right bottom)
|
||||||
|
)
|
||||||
|
(uuid "e31e59f4-7aae-4437-88b0-d53e4b17e276")
|
||||||
|
)
|
||||||
(label "TERM_SEL"
|
(label "TERM_SEL"
|
||||||
(at 298.45 109.22 0)
|
(at 298.45 109.22 0)
|
||||||
(effects
|
(effects
|
||||||
|
|
@ -17545,6 +17656,16 @@
|
||||||
)
|
)
|
||||||
(uuid "e758a0e0-c537-4b35-bc6a-1c08d73a9c45")
|
(uuid "e758a0e0-c537-4b35-bc6a-1c08d73a9c45")
|
||||||
)
|
)
|
||||||
|
(label "LINK_PD_PGA"
|
||||||
|
(at 300.99 378.46 180)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify right bottom)
|
||||||
|
)
|
||||||
|
(uuid "e8f35320-8eee-430c-a19d-b83f4d4db968")
|
||||||
|
)
|
||||||
(label "VRES_P"
|
(label "VRES_P"
|
||||||
(at 234.95 447.04 0)
|
(at 234.95 447.04 0)
|
||||||
(effects
|
(effects
|
||||||
|
|
@ -19456,6 +19577,73 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(symbol
|
||||||
|
(lib_id "Connector:TestPoint")
|
||||||
|
(at 300.99 396.24 270)
|
||||||
|
(unit 1)
|
||||||
|
(exclude_from_sim no)
|
||||||
|
(in_bom yes)
|
||||||
|
(on_board yes)
|
||||||
|
(dnp no)
|
||||||
|
(fields_autoplaced yes)
|
||||||
|
(uuid "11463962-72ef-41ad-8393-690fd13e22c5")
|
||||||
|
(property "Reference" "TP1"
|
||||||
|
(at 306.07 394.9699 90)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify left)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Value" "LINK_PD_COMP"
|
||||||
|
(at 306.07 397.5099 90)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify left)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Footprint" "TestPoint:TestPoint_Pad_1.0x1.0mm"
|
||||||
|
(at 300.99 401.32 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Datasheet" "~"
|
||||||
|
(at 300.99 401.32 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Description" "test point"
|
||||||
|
(at 300.99 396.24 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin "1"
|
||||||
|
(uuid "d6d66c9f-e6c7-497a-af68-28e5b3050b4d")
|
||||||
|
)
|
||||||
|
(instances
|
||||||
|
(project ""
|
||||||
|
(path "/cbb3a085-7921-4026-b761-6add0034045e"
|
||||||
|
(reference "TP1")
|
||||||
|
(unit 1)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
(symbol
|
(symbol
|
||||||
(lib_id "Device:R")
|
(lib_id "Device:R")
|
||||||
(at 557.53 396.24 0)
|
(at 557.53 396.24 0)
|
||||||
|
|
@ -20035,6 +20223,95 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(symbol
|
||||||
|
(lib_id "components:OPA2607IDGKR")
|
||||||
|
(at 384.81 322.58 0)
|
||||||
|
(unit 3)
|
||||||
|
(exclude_from_sim no)
|
||||||
|
(in_bom yes)
|
||||||
|
(on_board yes)
|
||||||
|
(dnp no)
|
||||||
|
(uuid "22ee29ab-cef3-492f-b3b7-f853d0d02b6c")
|
||||||
|
(property "Reference" "U18"
|
||||||
|
(at 386.334 315.722 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify left)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Value" "OPA2607IDGKR"
|
||||||
|
(at 386.334 317.754 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify left)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Footprint" "Package_SO:MSOP-8_3x3mm_P0.65mm"
|
||||||
|
(at 387.35 322.58 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Datasheet" "https://www.ti.com/lit/ds/symlink/opa2607.pdf"
|
||||||
|
(at 391.16 318.77 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Description" "50-MHz, Low-Power, Rail-to-Rail Output CMOS Operational Amplifier for Cost Sensitive Systems"
|
||||||
|
(at 384.81 322.58 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin "6"
|
||||||
|
(uuid "8e9348e7-3e90-4270-8b2e-aacce90de0f9")
|
||||||
|
)
|
||||||
|
(pin "7"
|
||||||
|
(uuid "34a2f8a0-7dca-48c7-a36c-b73261fbcd8e")
|
||||||
|
)
|
||||||
|
(pin "2"
|
||||||
|
(uuid "e28267a1-4bd5-4bd9-b0f5-b1ececf627d5")
|
||||||
|
)
|
||||||
|
(pin "3"
|
||||||
|
(uuid "f56c4894-0aec-466c-a90c-1280b6113c36")
|
||||||
|
)
|
||||||
|
(pin "5"
|
||||||
|
(uuid "3b7748c5-9113-4726-b1a6-4c356032ca38")
|
||||||
|
)
|
||||||
|
(pin "1"
|
||||||
|
(uuid "ceb65272-a7fc-4c6f-915a-959def362400")
|
||||||
|
)
|
||||||
|
(pin "8"
|
||||||
|
(uuid "fcddfa09-bf4a-4950-b79f-6f24cb2d8b9e")
|
||||||
|
)
|
||||||
|
(pin "4"
|
||||||
|
(uuid "8f2f17af-ab2e-409d-84b4-2f2f8acbcada")
|
||||||
|
)
|
||||||
|
(instances
|
||||||
|
(project "micro-ihsm-hw"
|
||||||
|
(path "/cbb3a085-7921-4026-b761-6add0034045e"
|
||||||
|
(reference "U18")
|
||||||
|
(unit 3)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
(symbol
|
(symbol
|
||||||
(lib_id "power:+3.3VP")
|
(lib_id "power:+3.3VP")
|
||||||
(at 260.35 182.88 0)
|
(at 260.35 182.88 0)
|
||||||
|
|
@ -21501,6 +21778,71 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(symbol
|
||||||
|
(lib_id "power:VDDA")
|
||||||
|
(at 384.81 314.96 0)
|
||||||
|
(unit 1)
|
||||||
|
(exclude_from_sim no)
|
||||||
|
(in_bom yes)
|
||||||
|
(on_board yes)
|
||||||
|
(dnp no)
|
||||||
|
(uuid "351b9d73-7ebe-4a68-9323-25decb415cdd")
|
||||||
|
(property "Reference" "#PWR0119"
|
||||||
|
(at 384.81 318.77 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Value" "VDDA"
|
||||||
|
(at 384.81 311.15 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Footprint" ""
|
||||||
|
(at 384.81 314.96 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Datasheet" ""
|
||||||
|
(at 384.81 314.96 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Description" "Power symbol creates a global label with name \"VDDA\""
|
||||||
|
(at 384.81 314.96 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin "1"
|
||||||
|
(uuid "5a8844df-5e70-478a-9324-2175e5228f7f")
|
||||||
|
)
|
||||||
|
(instances
|
||||||
|
(project "micro-ihsm-hw"
|
||||||
|
(path "/cbb3a085-7921-4026-b761-6add0034045e"
|
||||||
|
(reference "#PWR0119")
|
||||||
|
(unit 1)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
(symbol
|
(symbol
|
||||||
(lib_id "power:VDDA")
|
(lib_id "power:VDDA")
|
||||||
(at 273.05 350.52 0)
|
(at 273.05 350.52 0)
|
||||||
|
|
@ -23042,6 +23384,7 @@
|
||||||
)
|
)
|
||||||
(pin "32"
|
(pin "32"
|
||||||
(uuid "ee0c3b18-2200-41c2-af12-29ab99cc1319")
|
(uuid "ee0c3b18-2200-41c2-af12-29ab99cc1319")
|
||||||
|
(alternate "USART1_RX")
|
||||||
)
|
)
|
||||||
(pin "37"
|
(pin "37"
|
||||||
(uuid "e800e95e-5f49-48ae-a4f0-2c340db1f627")
|
(uuid "e800e95e-5f49-48ae-a4f0-2c340db1f627")
|
||||||
|
|
@ -23074,6 +23417,7 @@
|
||||||
)
|
)
|
||||||
(pin "9"
|
(pin "9"
|
||||||
(uuid "8847bf57-59e4-439f-9e3e-3f24bdecfc8d")
|
(uuid "8847bf57-59e4-439f-9e3e-3f24bdecfc8d")
|
||||||
|
(alternate "OPAMP1_VINP")
|
||||||
)
|
)
|
||||||
(pin "45"
|
(pin "45"
|
||||||
(uuid "fd3a529e-64dc-46d5-a730-0a87bd0630e4")
|
(uuid "fd3a529e-64dc-46d5-a730-0a87bd0630e4")
|
||||||
|
|
@ -23097,6 +23441,7 @@
|
||||||
)
|
)
|
||||||
(pin "10"
|
(pin "10"
|
||||||
(uuid "dfcf23ae-c1c2-4558-b29b-ed66a4094eee")
|
(uuid "dfcf23ae-c1c2-4558-b29b-ed66a4094eee")
|
||||||
|
(alternate "OPAMP1_VOUT")
|
||||||
)
|
)
|
||||||
(pin "2"
|
(pin "2"
|
||||||
(uuid "6e9e92f8-a362-45c2-8484-eb0f3b25ff42")
|
(uuid "6e9e92f8-a362-45c2-8484-eb0f3b25ff42")
|
||||||
|
|
@ -23136,9 +23481,11 @@
|
||||||
)
|
)
|
||||||
(pin "33"
|
(pin "33"
|
||||||
(uuid "3b6ff256-2d94-4ff5-924d-64d7103e7558")
|
(uuid "3b6ff256-2d94-4ff5-924d-64d7103e7558")
|
||||||
|
(alternate "COMP1_OUT")
|
||||||
)
|
)
|
||||||
(pin "18"
|
(pin "18"
|
||||||
(uuid "bcb29273-3105-40dc-8e8b-c1088601fc13")
|
(uuid "bcb29273-3105-40dc-8e8b-c1088601fc13")
|
||||||
|
(alternate "COMP1_INP")
|
||||||
)
|
)
|
||||||
(pin "19"
|
(pin "19"
|
||||||
(uuid "8bf88a6a-2a99-473b-bc98-ff29d53167fa")
|
(uuid "8bf88a6a-2a99-473b-bc98-ff29d53167fa")
|
||||||
|
|
@ -24540,6 +24887,93 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(symbol
|
||||||
|
(lib_id "components:OPA2607IDGKR")
|
||||||
|
(at 387.35 322.58 0)
|
||||||
|
(unit 2)
|
||||||
|
(exclude_from_sim no)
|
||||||
|
(in_bom yes)
|
||||||
|
(on_board yes)
|
||||||
|
(dnp no)
|
||||||
|
(uuid "5dfcbba5-0b10-4f5a-a67a-7a04d64feed6")
|
||||||
|
(property "Reference" "U18"
|
||||||
|
(at 388.874 315.722 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify left)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Value" "OPA2607IDGKR"
|
||||||
|
(at 388.874 317.754 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify left)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Footprint" "Package_SO:MSOP-8_3x3mm_P0.65mm"
|
||||||
|
(at 389.89 322.58 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Datasheet" "https://www.ti.com/lit/ds/symlink/opa2607.pdf"
|
||||||
|
(at 393.7 318.77 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Description" "50-MHz, Low-Power, Rail-to-Rail Output CMOS Operational Amplifier for Cost Sensitive Systems"
|
||||||
|
(at 387.35 322.58 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin "6"
|
||||||
|
(uuid "2170154b-43b9-4165-b767-cfd3f768c4bc")
|
||||||
|
)
|
||||||
|
(pin "7"
|
||||||
|
(uuid "3d11e15d-98af-46bd-8f3a-7ecee0349b60")
|
||||||
|
)
|
||||||
|
(pin "2"
|
||||||
|
(uuid "e28267a1-4bd5-4bd9-b0f5-b1ececf627d4")
|
||||||
|
)
|
||||||
|
(pin "3"
|
||||||
|
(uuid "f56c4894-0aec-466c-a90c-1280b6113c35")
|
||||||
|
)
|
||||||
|
(pin "5"
|
||||||
|
(uuid "9daec2d1-cfdd-49b3-bae4-29716724b9b2")
|
||||||
|
)
|
||||||
|
(pin "1"
|
||||||
|
(uuid "ceb65272-a7fc-4c6f-915a-959def3623ff")
|
||||||
|
)
|
||||||
|
(pin "8"
|
||||||
|
(uuid "a4398763-5519-4119-a73f-c137f08a8c96")
|
||||||
|
)
|
||||||
|
(pin "4"
|
||||||
|
(uuid "20224ba0-56e7-4d39-be17-a0762b45dff7")
|
||||||
|
)
|
||||||
|
(instances
|
||||||
|
(project "micro-ihsm-hw"
|
||||||
|
(path "/cbb3a085-7921-4026-b761-6add0034045e"
|
||||||
|
(reference "U18")
|
||||||
|
(unit 2)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
(symbol
|
(symbol
|
||||||
(lib_id "power:+3.3VP")
|
(lib_id "power:+3.3VP")
|
||||||
(at 769.62 349.25 0)
|
(at 769.62 349.25 0)
|
||||||
|
|
@ -25296,6 +25730,71 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(symbol
|
||||||
|
(lib_id "power:GND")
|
||||||
|
(at 384.81 330.2 0)
|
||||||
|
(unit 1)
|
||||||
|
(exclude_from_sim no)
|
||||||
|
(in_bom yes)
|
||||||
|
(on_board yes)
|
||||||
|
(dnp no)
|
||||||
|
(uuid "69cba79e-d4ee-4bdc-91a7-eae821ecc3ea")
|
||||||
|
(property "Reference" "#PWR0120"
|
||||||
|
(at 384.81 336.55 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Value" "GND"
|
||||||
|
(at 384.81 334.01 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Footprint" ""
|
||||||
|
(at 384.81 330.2 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Datasheet" ""
|
||||||
|
(at 384.81 330.2 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Description" "Power symbol creates a global label with name \"GND\" , ground"
|
||||||
|
(at 384.81 330.2 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin "1"
|
||||||
|
(uuid "e69855a4-a432-4846-9f41-8c80e92d530b")
|
||||||
|
)
|
||||||
|
(instances
|
||||||
|
(project "micro-ihsm-hw"
|
||||||
|
(path "/cbb3a085-7921-4026-b761-6add0034045e"
|
||||||
|
(reference "#PWR0120")
|
||||||
|
(unit 1)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
(symbol
|
(symbol
|
||||||
(lib_id "power:GND")
|
(lib_id "power:GND")
|
||||||
(at 280.67 360.68 0)
|
(at 280.67 360.68 0)
|
||||||
|
|
@ -28194,6 +28693,73 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
(symbol
|
||||||
|
(lib_id "Connector:TestPoint")
|
||||||
|
(at 300.99 378.46 270)
|
||||||
|
(unit 1)
|
||||||
|
(exclude_from_sim no)
|
||||||
|
(in_bom yes)
|
||||||
|
(on_board yes)
|
||||||
|
(dnp no)
|
||||||
|
(fields_autoplaced yes)
|
||||||
|
(uuid "933240ae-bc66-44a7-9422-303ad38854b8")
|
||||||
|
(property "Reference" "TP2"
|
||||||
|
(at 306.07 377.1899 90)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify left)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Value" "LINK_PD_PGA"
|
||||||
|
(at 306.07 379.7299 90)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(justify left)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Footprint" "TestPoint:TestPoint_Pad_1.0x1.0mm"
|
||||||
|
(at 300.99 383.54 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Datasheet" "~"
|
||||||
|
(at 300.99 383.54 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(property "Description" "test point"
|
||||||
|
(at 300.99 378.46 0)
|
||||||
|
(effects
|
||||||
|
(font
|
||||||
|
(size 1.27 1.27)
|
||||||
|
)
|
||||||
|
(hide yes)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
(pin "1"
|
||||||
|
(uuid "0acd7586-1daf-44f4-9e1b-7ae543fafed1")
|
||||||
|
)
|
||||||
|
(instances
|
||||||
|
(project "micro-ihsm-hw"
|
||||||
|
(path "/cbb3a085-7921-4026-b761-6add0034045e"
|
||||||
|
(reference "TP2")
|
||||||
|
(unit 1)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
(symbol
|
(symbol
|
||||||
(lib_id "power:+3.3VP")
|
(lib_id "power:+3.3VP")
|
||||||
(at 328.93 184.15 0)
|
(at 328.93 184.15 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue