Compare commits

...

2 Commits

7 changed files with 7336 additions and 16632 deletions

View File

@ -118,9 +118,6 @@ typedef union {
#define AMI_GPIO_Port GPIOB
//#define WATCHDOG_UCC
#define WATCHDOG_STM
/* USER CODE END PD */
/* Private macro -------------------------------------------------------------*/
@ -141,11 +138,9 @@ const mission_t mission2next[] = {M_MANUAL , M_SKIDPAD , M_AUTOX , M_EBSTEST
mission_t mission = M_NONE;
#ifdef WATCHDOG_STM
bool pHeartbeat = false;
bool WD_OK = false;
bool WD_initialized = false;
#endif
/* USER CODE END PV */
@ -206,9 +201,6 @@ int main(void)
// Freeze WDG when debugging
__HAL_DBGMCU_FREEZE_IWDG();
// Ensure we start with SDC disabled
HAL_GPIO_WritePin(Watchdog_GPIO_Port, Watchdog_Pin, GPIO_PIN_RESET);
if (HAL_CAN_Start(&hcan) != HAL_OK)
Error_Handler();
@ -253,14 +245,17 @@ int main(void)
mission_t new_mission = mission; // By default, don't change mission
// Wait 1s to prevent bus error state while ABX is starting up
// Wait 5s for the discharge of the DC link (so AMS can't restart)
// During that time, show loading animation to show LEDs work
setMissionLED(M_MANUAL, GPIO_PIN_SET);
HAL_Delay(150);
setMissionLED(M_MANUAL, GPIO_PIN_RESET);
for (mission_t m = M_ACCEL; m != M_MANUAL; m = mission2next[m]) {
setMissionLED(m, GPIO_PIN_SET);
HAL_Delay(150);
setMissionLED(m, GPIO_PIN_RESET);
while (HAL_GetTick() < 5000) {
setMissionLED(M_MANUAL, GPIO_PIN_SET);
HAL_Delay(150);
setMissionLED(M_MANUAL, GPIO_PIN_RESET);
for (mission_t m = M_ACCEL; m != M_MANUAL; m = mission2next[m]) {
setMissionLED(m, GPIO_PIN_SET);
HAL_Delay(150);
setMissionLED(m, GPIO_PIN_RESET);
}
}
MX_IWDG_Init();
@ -270,9 +265,6 @@ int main(void)
bool TS_activate_MUXed = HAL_GPIO_ReadPin(TS_activate_MUXed_GPIO_Port, TS_activate_MUXed_Pin) == GPIO_PIN_RESET;
bool ASMS = HAL_GPIO_ReadPin(ASMS_GPIO_Port, ASMS_Pin) == GPIO_PIN_RESET;
#ifdef WATCHDOG_UCC
bool WD_OK = HAL_GPIO_ReadPin(WD_OK_GPIO_Port, WD_OK_Pin) == GPIO_PIN_RESET;
#endif
bool SDC_is_ready = HAL_GPIO_ReadPin(SDC_is_ready_GPIO_Port, SDC_is_ready_Pin) == GPIO_PIN_SET;
bool SDC_in_3V3 = HAL_GPIO_ReadPin(SDC_in_3V3_GPIO_Port, SDC_in_3V3_Pin) == GPIO_PIN_SET;
bool LV_SENSE_1 = HAL_GPIO_ReadPin(LV_SENSE_1_GPIO_Port, LV_SENSE_1_Pin) == GPIO_PIN_SET;
@ -498,30 +490,29 @@ void HAL_CAN_RxFifo0MsgPendingCallback(CAN_HandleTypeDef *hcan) {
if (rxHeader.StdId != CAN_ID_RX)
return;
HAL_GPIO_WritePin(ASB_Error_GPIO_Port, ASB_Error_Pin, rxData.signals.asb_error);
HAL_GPIO_WritePin(AS_close_SDC_GPIO_Port, AS_close_SDC_Pin, rxData.signals.as_close_sdc);
#ifdef WATCHDOG_STM
if (WD_initialized && rxData.signals.heartbeat != pHeartbeat) {
// Pet watchdog
HAL_IWDG_Refresh(&hiwdg);
// Set whether to close the relay
HAL_GPIO_WritePin(AS_close_SDC_GPIO_Port, AS_close_SDC_Pin, rxData.signals.as_close_sdc);
WD_OK = true;
if (rxData.signals.heartbeat != pHeartbeat) {
if (WD_initialized)
HAL_IWDG_Refresh(&hiwdg);
WD_OK = true;
HAL_GPIO_WritePin(Watchdog_GPIO_Port, Watchdog_Pin, GPIO_PIN_SET);
}
pHeartbeat = rxData.signals.heartbeat;
#endif
#ifdef WATCHDOG_UCC
HAL_GPIO_WritePin(Watchdog_GPIO_Port, Watchdog_Pin, rxData.signals.heartbeat);
#endif
// Reset old mission LED
setMissionLED(mission, GPIO_PIN_RESET);
mission = rxData.signals.as_mission;
setMissionLED(mission, GPIO_PIN_SET);
// Set ASB Error status
HAL_GPIO_WritePin(ASB_Error_GPIO_Port, ASB_Error_Pin, rxData.signals.asb_error);
}
/* USER CODE END 4 */

File diff suppressed because it is too large Load Diff

View File

@ -57,10 +57,8 @@
}
],
"drc_exclusions": [
"courtyards_overlap|146655666|89350001|560e3988-3361-4d74-83df-0603892fca5b|ced02bd7-62ab-4180-b003-706d5fe404a1",
"courtyards_overlap|146655666|89350001|ced02bd7-62ab-4180-b003-706d5fe404a1|560e3988-3361-4d74-83df-0603892fca5b",
"courtyards_overlap|153599999|91035474|560e3988-3361-4d74-83df-0603892fca5b|6bc7dc00-f530-4f2f-986f-d27c3452cfab",
"courtyards_overlap|153599999|91035474|6bc7dc00-f530-4f2f-986f-d27c3452cfab|560e3988-3361-4d74-83df-0603892fca5b"
"courtyards_overlap|146641633|89350001|560e3988-3361-4d74-83df-0603892fca5b|ced02bd7-62ab-4180-b003-706d5fe404a1",
"courtyards_overlap|153358365|89350001|560e3988-3361-4d74-83df-0603892fca5b|6bc7dc00-f530-4f2f-986f-d27c3452cfab"
],
"meta": {
"filename": "board_design_settings.json",
@ -79,8 +77,8 @@
"duplicate_footprints": "warning",
"extra_footprint": "warning",
"footprint": "error",
"footprint_type_mismatch": "error",
"hole_clearance": "error",
"footprint_type_mismatch": "warning",
"hole_clearance": "warning",
"hole_near_hole": "error",
"invalid_outline": "error",
"isolated_copper": "warning",

View File

@ -17,9 +17,6 @@
(lib_symbols
)
(junction (at 107.95 86.36) (diameter 0) (color 0 0 0 0)
(uuid 18ccd585-c7d5-4729-9d6b-887b5399da7b)
)
(junction (at 109.22 109.22) (diameter 0) (color 0 0 0 0)
(uuid 4ffc3e5e-67b7-4f33-a3bb-ed848c134387)
)
@ -30,14 +27,6 @@
(uuid f0193c50-df59-4ee0-abe3-a5d28ce2c8bb)
)
(wire (pts (xy 107.95 74.93) (xy 114.3 74.93))
(stroke (width 0) (type default))
(uuid 076c7099-ed7d-46fa-bb6e-d1e5db294738)
)
(wire (pts (xy 107.95 74.93) (xy 107.95 86.36))
(stroke (width 0) (type default))
(uuid 0b3bc5ba-d0be-4a28-8be9-90c9da9a6f2c)
)
(wire (pts (xy 146.05 73.025) (xy 149.86 73.025))
(stroke (width 0) (type default))
(uuid 1dcfd6a2-f3cf-4903-af66-8291c40dffd5)
@ -65,10 +54,6 @@
(uuid 2e1d8312-ec9f-45f8-8134-8e29d591ecfc)
)
(wire (pts (xy 106.68 68.58) (xy 114.3 68.58))
(stroke (width 0) (type default))
(uuid 30a958d8-2754-495b-992e-8973512fdfa6)
)
(wire (pts (xy 83.82 93.98) (xy 83.82 102.235))
(stroke (width 0) (type default))
(uuid 356394a0-0d88-4292-a700-c0ba5a4ad9c4)
@ -107,10 +92,6 @@
(stroke (width 0) (type default))
(uuid 48557f0a-654a-4d10-ad7c-e32bfedbf66f)
)
(wire (pts (xy 106.68 62.23) (xy 114.3 62.23))
(stroke (width 0) (type default))
(uuid 5264ce3e-1d73-4061-957a-ac4722ba5f3f)
)
(bus (pts (xy 85.725 48.895) (xy 83.82 48.895))
(stroke (width 0) (type default))
(uuid 5f4dfba1-8992-498f-a542-8809ff0022c7)
@ -161,7 +142,7 @@
(stroke (width 0) (type default))
(uuid 9860c38c-a070-48ff-8004-62bf4eed2207)
)
(wire (pts (xy 106.68 71.12) (xy 114.3 71.12))
(wire (pts (xy 106.68 67.31) (xy 114.3 67.31))
(stroke (width 0) (type default))
(uuid 9eebe67c-34d0-42e8-be3e-c4e1b41b94ae)
)
@ -170,10 +151,6 @@
(uuid a0c8f43c-8e3f-4451-9a61-0be2edf27189)
)
(wire (pts (xy 146.05 53.975) (xy 153.67 53.975))
(stroke (width 0) (type default))
(uuid a6e0b03c-cac6-498c-a745-7eed13dd85bf)
)
(wire (pts (xy 106.68 147.32) (xy 114.3 147.32))
(stroke (width 0) (type default))
(uuid a8e37322-3acd-45c5-a1b1-a78ce14fd2b1)
@ -203,7 +180,7 @@
(stroke (width 0) (type default))
(uuid d8f0cddc-f6df-4650-ae7a-575de6c53e3d)
)
(wire (pts (xy 107.95 86.36) (xy 107.95 102.87))
(wire (pts (xy 107.95 91.44) (xy 107.95 102.87))
(stroke (width 0) (type default))
(uuid dfd36dc3-ee5f-4896-8a60-0eb1bda8f9d5)
)
@ -212,7 +189,7 @@
(uuid e42b6c75-5097-44d2-b2a5-cb37ab1275d0)
)
(wire (pts (xy 106.68 86.36) (xy 107.95 86.36))
(wire (pts (xy 106.68 91.44) (xy 107.95 91.44))
(stroke (width 0) (type default))
(uuid eb0fc8d9-2d20-4bf4-87d5-25173d566219)
)
@ -224,7 +201,7 @@
(stroke (width 0) (type default))
(uuid f5352296-8b79-4a31-b777-a9700fee0e05)
)
(wire (pts (xy 146.05 56.515) (xy 153.67 56.515))
(wire (pts (xy 146.05 54.61) (xy 153.67 54.61))
(stroke (width 0) (type default))
(uuid f6e0f757-a96b-4484-b738-a9d120c72b83)
)
@ -252,34 +229,18 @@
(property "Sheetfile" "npl.kicad_sch" (at 114.3 83.1346 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "AS_close_SDC" input (at 114.3 71.12 180)
(pin "AS_close_SDC" input (at 114.3 67.31 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7db6adf7-763b-4c6d-8cab-730d935b2716)
)
(pin "TS_activate_ext" input (at 146.05 56.515 0)
(pin "TS_activate_ext" input (at 146.05 54.61 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5bf07090-c4c8-4727-bea1-cf2987cdb8e7)
)
(pin "Watchdog" input (at 114.3 68.58 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f20beb7a-21f4-4808-963c-fd416874ac3a)
)
(pin "SDC_in_3V3" input (at 114.3 74.93 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8540b694-602f-43b8-83b9-b82b6479d504)
)
(pin "To_SDC_relais" output (at 146.05 73.025 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cd7e1f72-1d89-41a0-9343-fb71f5641874)
)
(pin "SDC_is_ready" output (at 114.3 62.23 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0f1c26f7-a44d-4706-84af-566bdc483f4a)
)
(pin "~{SDC_reset}" input (at 146.05 53.975 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4e7b241f-6043-4b28-bf61-d23b3d3d6455)
)
(pin "TS_activate_MUXed" output (at 114.3 64.77 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9293b58d-3c0a-479c-8fb1-84f0789c162e)
@ -309,18 +270,10 @@
(property "Sheetfile" "cu.kicad_sch" (at 89.535 94.615 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "SDC_is_ready" input (at 106.68 62.23 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a608c37b-d973-4f49-836e-1ee4f054f337)
)
(pin "AS_close_SDC" output (at 106.68 71.12 0)
(pin "AS_close_SDC" output (at 106.68 67.31 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6104fae0-7488-49de-9156-d70376cd4b09)
)
(pin "Watchdog" output (at 106.68 68.58 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 239be08a-88f2-45bf-b4cb-1205743a9032)
)
(pin "CAN_RX" input (at 86.36 93.98 270)
(effects (font (size 1.27 1.27)) (justify left))
(uuid cb5840d2-9488-47f8-8fe2-a376795e0a2b)
@ -333,7 +286,7 @@
(effects (font (size 1.27 1.27)) (justify right))
(uuid f40b0690-d8c3-4fd8-9fbf-ffd90178cfba)
)
(pin "SDC_in_3V3" input (at 106.68 86.36 0)
(pin "SDC_in_3V3" input (at 106.68 91.44 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 92a07936-b42b-4fc7-8498-139f11781859)
)
@ -564,11 +517,7 @@
(property "Sheetfile" "buttons.kicad_sch" (at 153.67 64.7196 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "~{SDC_reset}" output (at 153.67 53.975 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 531fe22a-a3c6-4886-9454-b1f4bde889a5)
)
(pin "TS_activate_ext" output (at 153.67 56.515 180)
(pin "TS_activate_ext" output (at 153.67 54.61 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 148a9641-106c-4632-84fd-84cd1f76015b)
)

View File

@ -231,14 +231,6 @@
(stroke (width 0) (type default))
(uuid 5144b2f2-abf6-481f-b133-27f102ad64cb)
)
(wire (pts (xy 127 101.6) (xy 119.38 101.6))
(stroke (width 0) (type default))
(uuid 54931814-bdd0-4127-a8f3-2b88e8fbe276)
)
(wire (pts (xy 109.22 101.6) (xy 101.6 101.6))
(stroke (width 0) (type default))
(uuid 6bc9c008-390f-4a6b-ae0f-7523c23d8bcc)
)
(wire (pts (xy 120.65 63.5) (xy 119.38 63.5))
(stroke (width 0) (type default))
(uuid 849c8050-40d6-438f-b1af-2a224d8f65bc)
@ -290,10 +282,6 @@
(effects (font (size 1.27 1.27)) (justify left))
(uuid deda4757-0e9c-4850-b478-8bfba8f9f51a)
)
(hierarchical_label "~{SDC_reset}" (shape output) (at 127 101.6 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e5ae9a4c-66f6-4915-b042-ef89d17dd43a)
)
(symbol (lib_id "Switch:SW_Push") (at 114.3 88.9 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
@ -373,32 +361,6 @@
)
)
(symbol (lib_id "Switch:SW_Push") (at 114.3 101.6 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 6bbb1bc7-46c8-4217-905a-48df3a697a6f)
(property "Reference" "SDCR1" (at 114.3 93.98 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_Push" (at 114.3 96.52 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Custom:APEM-ISx3SAD_Harwin_S9091-46R_NoSilk" (at 114.3 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 114.3 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cb5a8431-53bd-4555-8cb5-6b7b3ee4626b))
(pin "2" (uuid bb4e23e9-ef71-4412-95d2-8e5ea74879d4))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/ef87f248-300e-4271-887f-f4d38b41fe25"
(reference "SDCR1") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 130.81 80.01 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 7de36103-3d8b-43c6-b25b-7aa68cd45394)
@ -550,29 +512,4 @@
)
)
)
(symbol (lib_id "power:GND") (at 101.6 101.6 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid d9e1eadb-f1e9-4dac-a25f-5a0b53d72c11)
(property "Reference" "#PWR015" (at 101.6 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 101.6 106.68 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 101.6 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 101.6 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 81601f31-2164-4995-a024-734739760053))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/ef87f248-300e-4271-887f-f4d38b41fe25"
(reference "#PWR015") (unit 1)
)
)
)
)
)

View File

@ -15,294 +15,6 @@
)
(lib_symbols
(symbol "74xx:74HC14" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74HC14" (at 0 -1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "HCMOS not inverter" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Hex inverter schmitt trigger" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W7.62mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "74HC14_1_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
(symbol "74HC14_1_1"
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
(xy -0.635 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -1.27)
(xy -0.635 -1.27)
(xy -0.635 1.27)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "74HC14_2_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
(symbol "74HC14_2_1"
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
(xy -0.635 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -1.27)
(xy -0.635 -1.27)
(xy -0.635 1.27)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "74HC14_3_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
(symbol "74HC14_3_1"
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
(xy -0.635 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -1.27)
(xy -0.635 -1.27)
(xy -0.635 1.27)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "74HC14_4_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "74HC14_4_1"
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
(xy -0.635 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -1.27)
(xy -0.635 -1.27)
(xy -0.635 1.27)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "74HC14_5_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
)
(symbol "74HC14_5_1"
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
(xy -0.635 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -1.27)
(xy -0.635 -1.27)
(xy -0.635 1.27)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "74HC14_6_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
)
(symbol "74HC14_6_1"
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
(xy -0.635 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -1.27)
(xy -0.635 -1.27)
(xy -0.635 1.27)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "74HC14_7_0"
(pin power_in line (at 0 12.7 270) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -12.7 90) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "74HC14_7_1"
(rectangle (start -5.08 7.62) (end 5.08 -7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
@ -876,9 +588,6 @@
)
)
(junction (at 223.52 40.005) (diameter 0) (color 0 0 0 0)
(uuid 04fa2313-f110-454f-8eb7-1528dd608c74)
)
(junction (at 106.68 45.72) (diameter 0) (color 0 0 0 0)
(uuid 0d062082-c753-4777-8a55-40ed8684b43f)
)
@ -989,10 +698,6 @@
(stroke (width 0) (type default))
(uuid 0007f297-3308-4916-ba6a-4705ce359b41)
)
(wire (pts (xy 212.725 79.375) (xy 219.71 79.375))
(stroke (width 0) (type default))
(uuid 000b6751-a8c9-45c5-8b7c-5e2266e063d6)
)
(wire (pts (xy 127.635 74.93) (xy 124.46 74.93))
(stroke (width 0) (type default))
(uuid 01db3e90-e197-418c-9bd6-a20c7e56c493)
@ -1013,10 +718,6 @@
(stroke (width 0) (type default))
(uuid 0da017c2-7093-455b-9348-ac52abdb7df8)
)
(wire (pts (xy 219.71 88.9) (xy 215.9 88.9))
(stroke (width 0) (type default))
(uuid 0de5a0b2-c07f-4beb-b851-7e87cc7b8ed1)
)
(wire (pts (xy 156.21 140.97) (xy 156.21 143.51))
(stroke (width 0) (type default))
(uuid 13b0ba53-03c7-45ff-9159-7de633593533)
@ -1029,10 +730,6 @@
(stroke (width 0) (type default))
(uuid 19d31d36-b93a-4540-a947-6a780cc9ce4e)
)
(wire (pts (xy 219.075 98.425) (xy 219.075 102.87))
(stroke (width 0) (type default))
(uuid 1c51466c-08f8-481a-8886-cf18127d87c8)
)
(wire (pts (xy 130.81 53.34) (xy 142.24 53.34))
(stroke (width 0) (type default))
(uuid 1d3c3005-0844-4a88-b1d6-7c2c67ceb364)
@ -1054,10 +751,6 @@
(stroke (width 0) (type default))
(uuid 2925e527-4f99-493f-9456-4d900ad4df43)
)
(wire (pts (xy 219.075 98.425) (xy 219.71 98.425))
(stroke (width 0) (type default))
(uuid 29b221fa-b819-43d3-b562-96ab41072ca3)
)
(wire (pts (xy 142.24 45.72) (xy 151.13 45.72))
(stroke (width 0) (type default))
(uuid 2ce2bca6-3041-42e5-b79a-77096877c017)
@ -1087,10 +780,6 @@
(stroke (width 0) (type default))
(uuid 3efefddc-59f5-481e-9d9d-32a38020a57f)
)
(wire (pts (xy 212.725 127) (xy 212.725 110.49))
(stroke (width 0) (type default))
(uuid 3fd586bd-191e-45b6-b84a-48eae3e77eab)
)
(bus (pts (xy 122.555 128.27) (xy 122.555 130.175))
(stroke (width 0) (type default))
(uuid 41345238-28f5-4d05-9883-2297fb95eed8)
@ -1108,18 +797,6 @@
(stroke (width 0) (type default))
(uuid 46b913ee-dd0e-4924-badc-9ef2f16403d7)
)
(wire (pts (xy 219.075 107.95) (xy 219.075 105.41))
(stroke (width 0) (type default))
(uuid 4a18987a-6b52-42af-8a8d-b69c1ea305bd)
)
(wire (pts (xy 234.95 127) (xy 241.3 127))
(stroke (width 0) (type default))
(uuid 4ab5a626-32cf-42f6-9dd2-0895952335ec)
)
(wire (pts (xy 226.06 40.005) (xy 223.52 40.005))
(stroke (width 0) (type default))
(uuid 551a4706-2bc3-49d1-b6d9-82806bdfac50)
)
(wire (pts (xy 161.29 45.72) (xy 168.91 45.72))
(stroke (width 0) (type default))
(uuid 5cf0d9e8-f731-481a-9463-84d7205a455a)
@ -1133,14 +810,6 @@
(uuid 63203c0c-562a-4b2e-9ae0-e4b307d7473a)
)
(wire (pts (xy 219.71 117.475) (xy 215.9 117.475))
(stroke (width 0) (type default))
(uuid 64315b6a-e4c5-41f6-9f7d-842f7ab385d9)
)
(wire (pts (xy 171.45 97.79) (xy 212.725 97.79))
(stroke (width 0) (type default))
(uuid 68acf139-d59e-4701-8e5f-5d8a38f61397)
)
(wire (pts (xy 101.6 69.85) (xy 138.43 69.85))
(stroke (width 0) (type default))
(uuid 6f3854c0-d16e-4d28-9b68-92261f530b28)
@ -1149,14 +818,6 @@
(stroke (width 0) (type default))
(uuid 70dbb787-2634-4d2b-b24f-192d03ee5ec1)
)
(wire (pts (xy 219.075 102.87) (xy 171.45 102.87))
(stroke (width 0) (type default))
(uuid 70f1da08-a70f-4cac-be20-c0320307bb5a)
)
(wire (pts (xy 215.9 100.33) (xy 171.45 100.33))
(stroke (width 0) (type default))
(uuid 7162c29f-87d9-4663-a00c-cdafe78d6024)
)
(wire (pts (xy 125.095 115.57) (xy 138.43 115.57))
(stroke (width 0) (type default))
(uuid 72152c5c-935e-48af-b902-48a4de5e6307)
@ -1165,10 +826,6 @@
(stroke (width 0) (type default))
(uuid 77fb41a4-81b6-431f-a0fe-f0668ac569ad)
)
(wire (pts (xy 212.725 97.79) (xy 212.725 79.375))
(stroke (width 0) (type default))
(uuid 786c62b3-7a8c-4208-b884-fd0d82fa8d85)
)
(wire (pts (xy 138.43 107.95) (xy 111.125 107.95))
(stroke (width 0) (type default))
(uuid 78a63a44-68e9-468b-bedb-47a9033ed74a)
@ -1186,10 +843,6 @@
(stroke (width 0) (type default))
(uuid 7cc44d9e-975d-4533-80a7-619ede5d431e)
)
(wire (pts (xy 215.9 88.9) (xy 215.9 100.33))
(stroke (width 0) (type default))
(uuid 7cdd0a4f-5609-4bca-a827-ed7a691725b8)
)
(wire (pts (xy 125.095 110.49) (xy 138.43 110.49))
(stroke (width 0) (type default))
(uuid 80522437-696f-44c5-bf01-ef04f6fe60e4)
@ -1198,23 +851,6 @@
(stroke (width 0) (type default))
(uuid 86ee3d36-d485-4b20-8d74-6953571dfc64)
)
(wire (pts (xy 215.9 117.475) (xy 215.9 107.95))
(stroke (width 0) (type default))
(uuid 87c87a0e-4922-4793-814f-717bbdcd507a)
)
(wire (pts (xy 234.95 117.475) (xy 241.3 117.475))
(stroke (width 0) (type default))
(uuid 90c63c62-040f-40ec-9bc5-c735aa6a6080)
)
(wire (pts (xy 234.95 107.95) (xy 241.3 107.95))
(stroke (width 0) (type default))
(uuid 954d1a6b-52b2-47d7-a31e-3bd4d47cd8dd)
)
(wire (pts (xy 219.075 105.41) (xy 171.45 105.41))
(stroke (width 0) (type default))
(uuid 97906052-3694-4a09-a772-c82c6a7944b7)
)
(bus (pts (xy 122.555 120.65) (xy 122.555 123.19))
(stroke (width 0) (type default))
(uuid 9d758d41-08c5-443f-84b9-15deea86cb54)
@ -1232,14 +868,6 @@
(stroke (width 0) (type default))
(uuid ab9e8e1b-5e13-4242-a8d4-77c1a1c5a38f)
)
(wire (pts (xy 234.95 98.425) (xy 241.3 98.425))
(stroke (width 0) (type default))
(uuid abca77c4-fae3-4baf-afab-192adae1baed)
)
(wire (pts (xy 219.075 107.95) (xy 219.71 107.95))
(stroke (width 0) (type default))
(uuid ac82b73f-7384-48a2-8a97-c43240f620e6)
)
(wire (pts (xy 83.82 91.44) (xy 83.82 95.25))
(stroke (width 0) (type default))
(uuid ae3a6047-6a3e-47e5-a79a-e4d316cd7ed4)
@ -1260,10 +888,6 @@
(stroke (width 0) (type default))
(uuid bee7481a-0e36-4001-9ab8-6613ccabbba3)
)
(wire (pts (xy 219.71 127) (xy 212.725 127))
(stroke (width 0) (type default))
(uuid bf08d44d-2f4d-438b-8c39-97d2e57387c4)
)
(wire (pts (xy 151.13 143.51) (xy 153.67 143.51))
(stroke (width 0) (type default))
(uuid c2809030-5ca0-4c09-803f-fdbdc1413f53)
@ -1272,10 +896,6 @@
(stroke (width 0) (type default))
(uuid c29c7a23-1b5d-4a58-b310-a0261ea9a278)
)
(wire (pts (xy 215.9 107.95) (xy 171.45 107.95))
(stroke (width 0) (type default))
(uuid c48ef9e9-df7f-45c3-bca5-ba79877a887f)
)
(wire (pts (xy 83.82 95.25) (xy 83.82 99.06))
(stroke (width 0) (type default))
(uuid cf0ef5af-df22-457b-b675-d6084ca0c3b7)
@ -1288,22 +908,10 @@
(stroke (width 0) (type default))
(uuid d01e1e54-f524-45c5-86d8-a79d2a3c6ad4)
)
(wire (pts (xy 234.95 79.375) (xy 241.3 79.375))
(stroke (width 0) (type default))
(uuid d22906df-d71d-4ffb-8f5f-2791fd3bbb88)
)
(wire (pts (xy 234.95 88.9) (xy 241.3 88.9))
(stroke (width 0) (type default))
(uuid d6459116-d27b-431d-a4c6-55c1e39da54f)
)
(wire (pts (xy 106.68 45.72) (xy 95.25 45.72))
(stroke (width 0) (type default))
(uuid d7012a41-b85d-4bad-86dc-167e348b3334)
)
(wire (pts (xy 212.725 110.49) (xy 171.45 110.49))
(stroke (width 0) (type default))
(uuid d8fdd68f-bb76-4f52-bc63-b2175fc3a27a)
)
(wire (pts (xy 151.13 63.5) (xy 151.13 64.77))
(stroke (width 0) (type default))
(uuid db39555f-d6a7-427e-9aa3-869bb6dfbe9a)
@ -1342,10 +950,6 @@
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d2533b0c-0943-471c-b699-ca449bccb029)
)
(text "Inv Buffer to satisfy EV 4.11.5" (at 209.55 139.065 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid deae3ed8-0ec7-493d-b169-7df212f2c64b)
)
(label "AMI3" (at 131.445 113.03 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
@ -1380,27 +984,6 @@
(uuid c5eb3b5f-8a41-42cf-b15a-d38fc3114ec1)
)
(global_label "REOPENED" (shape input) (at 241.3 117.475 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 001838a3-dcda-447f-9505-b972c085e29d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 253.5423 117.3956 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "CLOSED" (shape input) (at 241.3 107.95 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1da030c9-6734-478c-bfc0-02c7965fc4d1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 250.8813 107.8706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "WD_OK" (shape input) (at 241.3 127 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1ff0fd2d-b59c-4609-9583-a0fdabfbe384)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 249.9137 126.9206 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "LV_SENSE_2" (shape input) (at 138.43 100.33 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 63bd22f7-2abf-4415-be3c-c32e84085497)
@ -1422,13 +1005,6 @@
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "INITIAL_OPEN" (shape input) (at 241.3 98.425 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a2839563-4c47-495b-8dfd-ccef6d16ad17)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 255.9009 98.3456 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "NRST" (shape input) (at 96.52 69.85 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b8197b7d-027a-4755-8372-d6bc042464d6)
@ -1470,7 +1046,7 @@
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5b418367-50b3-4d6f-b9c1-30b72e857d1d)
)
(hierarchical_label "ASMS" (shape input) (at 241.3 88.9 0) (fields_autoplaced)
(hierarchical_label "ASMS" (shape input) (at 171.45 100.33 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 64d84711-343c-43fd-9e04-4049a4554923)
)
@ -1478,7 +1054,7 @@
(effects (font (size 1.27 1.27)) (justify left))
(uuid 87639ead-abde-48e6-8413-adc86c564cd7)
)
(hierarchical_label "TS_activate_MUXed" (shape input) (at 241.3 79.375 0) (fields_autoplaced)
(hierarchical_label "TS_activate_MUXed" (shape input) (at 171.45 97.79 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a134b131-1275-405b-ac49-029bb5dc86fb)
)
@ -2078,120 +1654,6 @@
)
)
(symbol (lib_id "74xx:74HC14") (at 227.33 127 180) (unit 6)
(in_bom yes) (on_board yes) (dnp no)
(uuid 198d4e29-b51d-4000-8fdf-d1d525e271b4)
(property "Reference" "U10" (at 224.155 129.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74HC14" (at 224.155 132.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 227.33 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14" (at 227.33 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a09558bf-f5d3-42c0-8859-7f48cc60ebb5))
(pin "2" (uuid d93c2768-3172-4227-9095-ba843d406bf4))
(pin "3" (uuid e3b770ea-a7b8-4f87-ab91-f9ebbf1bbabf))
(pin "4" (uuid d3e900c0-4eff-44d1-bf47-1764f078e75a))
(pin "5" (uuid 7555fe06-8e71-492c-8ad1-af28e637a5ce))
(pin "6" (uuid 4c9f7b09-0ce4-40c5-8eac-e3cd32f3f813))
(pin "8" (uuid 77f3a784-0c47-49cc-8045-21af5bf0f12b))
(pin "9" (uuid 82a27b16-a2c0-467a-ae94-a8736efb0a6f))
(pin "10" (uuid f3b79a62-50a2-496a-b850-dd727497de18))
(pin "11" (uuid 62407531-8a65-4ca6-806c-ca0f31ab6595))
(pin "12" (uuid af674882-ce3e-4dbc-9a6e-fe8039a29127))
(pin "13" (uuid 1b8145a7-0ebf-4dc3-a437-ddae39e40be7))
(pin "14" (uuid 79844132-5926-47a3-8981-fc403995b1cb))
(pin "7" (uuid dfab2ad0-3c17-4b23-bd2e-adb5a8eac372))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/00000000-0000-0000-0000-000061ad620f"
(reference "U10") (unit 6)
)
)
)
)
(symbol (lib_id "74xx:74HC14") (at 223.52 52.705 0) (unit 7)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 25b9e719-77fb-4255-8614-8e9527399074)
(property "Reference" "U10" (at 229.87 51.4349 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "74HC14" (at 229.87 53.9749 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 229.87 55.2449 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14" (at 223.52 52.705 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0317499a-d71c-43ad-a2c1-a674d9380bb4))
(pin "2" (uuid f7b68776-d89b-4e90-89cb-41fd6a6e0055))
(pin "3" (uuid eb1e1c57-274d-4101-803a-9f575b6f0078))
(pin "4" (uuid 9bda0c2e-07fb-45f8-9518-2ff77338294e))
(pin "5" (uuid 438075bd-c332-4a0e-827f-f274e44b1eed))
(pin "6" (uuid 0dde2333-2e69-407a-8887-f59249fcc0be))
(pin "8" (uuid fdcad8a3-2add-4779-8c3e-3d595d740ec9))
(pin "9" (uuid 45a4b2b1-2bea-4f38-b8a9-edc7224b3891))
(pin "10" (uuid ac5488b1-b858-4ee3-9058-fd80d93901f3))
(pin "11" (uuid 5a3908ad-828c-47ff-93a5-0cb87253ad2b))
(pin "12" (uuid 807f99bd-032f-4774-b7ea-ff40279b512a))
(pin "13" (uuid 43b55865-7b3c-4750-9e5b-621e9374d720))
(pin "14" (uuid eec609b5-9f3e-4e1b-ad6b-31a6c634dfb7))
(pin "7" (uuid 686a4516-049f-4e18-a2e7-f9df7f1e6266))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/00000000-0000-0000-0000-000061ad620f"
(reference "U10") (unit 7)
)
)
)
)
(symbol (lib_id "74xx:74HC14") (at 227.33 107.95 180) (unit 4)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2a806248-33dd-4d2e-853b-48d14f04228b)
(property "Reference" "U10" (at 224.155 110.49 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74HC14" (at 224.155 113.03 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 227.33 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14" (at 227.33 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d6a19d6e-3f03-48ce-9622-d12b680d4b2c))
(pin "2" (uuid b40be79e-50f7-4776-b4f7-db6d15bae5aa))
(pin "3" (uuid 4adc3a74-362b-44a6-8786-bb7de973a94c))
(pin "4" (uuid 2a7a4cdd-933d-43b3-8633-00027e49cda9))
(pin "5" (uuid 5b4d1461-fe3b-4b27-bd16-0029ee95f464))
(pin "6" (uuid 29f72508-4f19-47e0-97af-7ec69f150fbc))
(pin "8" (uuid 36afcf28-7cc6-494f-b06a-963dce360d49))
(pin "9" (uuid 20257107-a4ee-4bd6-a4e1-fb0dec12a24b))
(pin "10" (uuid ac8c077b-c509-4abe-8705-52e475969498))
(pin "11" (uuid 0aab4754-f954-4098-aaa5-dec923c369b4))
(pin "12" (uuid 46dc674e-9fb5-4a44-a214-9520cd9dcfe3))
(pin "13" (uuid 2779fd61-a86d-4264-8661-3f737afc21be))
(pin "14" (uuid a306e916-f13a-477c-8fb8-626c6b34e255))
(pin "7" (uuid 4447ba3a-ac6d-489c-ad60-804d6ddf6e6b))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/00000000-0000-0000-0000-000061ad620f"
(reference "U10") (unit 4)
)
)
)
)
(symbol (lib_id "Device:Crystal_GND24_Small") (at 91.44 95.25 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3be0f0b9-eb14-4cad-a9da-a50c9b00369e)
@ -2220,94 +1682,6 @@
)
)
(symbol (lib_id "power:GND") (at 223.52 65.405 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 40bf8e40-0bff-47d3-ab81-5ae4bbeade95)
(property "Reference" "#PWR03" (at 223.52 71.755 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 223.647 69.7992 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 223.52 65.405 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 223.52 65.405 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b12536cd-c35f-4caa-adc1-8e7c54eb972e))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/00000000-0000-0000-0000-000061ad620f"
(reference "#PWR03") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 233.68 40.005 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 54e2aaaf-edc9-4a7a-94bb-4a9c3927d5db)
(property "Reference" "#PWR04" (at 233.68 46.355 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 233.807 44.3992 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 233.68 40.005 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 233.68 40.005 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c8c266a0-b2b8-46a5-8ff9-a72c731d0fd9))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/00000000-0000-0000-0000-000061ad620f"
(reference "#PWR04") (unit 1)
)
)
)
)
(symbol (lib_id "74xx:74HC14") (at 227.33 98.425 180) (unit 3)
(in_bom yes) (on_board yes) (dnp no)
(uuid 567c2ea1-c2b5-4f5b-9527-6f44bc51548a)
(property "Reference" "U10" (at 224.155 100.965 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74HC14" (at 224.155 103.505 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 227.33 98.425 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14" (at 227.33 98.425 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid aaa5cc54-0a29-427a-8db6-e2748b10569e))
(pin "2" (uuid c76c7b13-3f62-4306-9b63-1894e3510a53))
(pin "3" (uuid 55133f77-5e9a-4b9a-8ecb-e39e10d1149c))
(pin "4" (uuid 01ecb63a-ec38-4835-9ede-99a3c97c3b62))
(pin "5" (uuid 967ce3c8-4457-42e6-a519-24b51d398411))
(pin "6" (uuid 1b58fbaa-320d-4f59-b416-9c7ca26c65b1))
(pin "8" (uuid eff53c86-ba7d-49f8-8107-32c31eb964b4))
(pin "9" (uuid 9717db16-7eae-4198-b244-f887ce3149e8))
(pin "10" (uuid f5a1068c-5a55-4ccf-81a0-a003c94b93c2))
(pin "11" (uuid 3bceb58f-88cd-4973-b10d-f358f6606a89))
(pin "12" (uuid de7bac75-4c58-4e3c-b84d-f8cf2003012c))
(pin "13" (uuid 961e6924-5fa0-4afe-969c-f8fe974684c1))
(pin "14" (uuid 959aa522-8bc1-4e85-bece-f07b549ad9a2))
(pin "7" (uuid 780ae35b-1fe1-499a-a607-2c031f9b3fb8))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/00000000-0000-0000-0000-000061ad620f"
(reference "U10") (unit 3)
)
)
)
)
(symbol (lib_id "Device:R") (at 102.87 95.25 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 5738faba-bd8b-4dac-a7fd-4b412eafb2cc)
@ -2436,44 +1810,6 @@
)
)
(symbol (lib_id "74xx:74HC14") (at 227.33 79.375 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid c5552734-6149-45ed-9d69-cce4e7e0503b)
(property "Reference" "U10" (at 224.155 81.915 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74HC14" (at 224.155 84.455 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 227.33 79.375 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14" (at 227.33 79.375 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2c4c1443-7964-4dbe-8c85-a26e5c43cda1))
(pin "2" (uuid 9ab84dcd-69fd-4c5b-a627-e21a1a9809d2))
(pin "3" (uuid 73bce24d-34de-4163-95b4-a324eb065f97))
(pin "4" (uuid b57b0c48-af31-4ffa-bcaa-5a5c1383df9a))
(pin "5" (uuid ac3ffff9-2520-461b-a814-2be6b5a168a6))
(pin "6" (uuid eb630037-6fda-4ada-a153-1ccd17d5a5d8))
(pin "8" (uuid 8c700f6b-4a32-4aef-80dd-edeb148043f4))
(pin "9" (uuid 801bc6f5-0cd1-40e7-addd-5f1e776a17af))
(pin "10" (uuid eb10a7fb-cae2-4a49-9ece-5a38158e5b2c))
(pin "11" (uuid 8dded060-ce30-4b26-b58f-7b79762c971e))
(pin "12" (uuid a151fddd-3739-471e-8c13-82ea73b32551))
(pin "13" (uuid 3a4d29b2-a1d5-4948-843d-c47c59ab15ec))
(pin "14" (uuid 6bce7f85-98db-4aae-b0ba-30b9d489118c))
(pin "7" (uuid 38cb40a8-1cfc-4e4b-9339-691438a12cf9))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/00000000-0000-0000-0000-000061ad620f"
(reference "U10") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 87.63 99.06 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid c6fb5fd2-39c6-4fe5-a29f-bcf672e39a95)
@ -2499,131 +1835,4 @@
)
)
)
(symbol (lib_id "74xx:74HC14") (at 227.33 88.9 180) (unit 2)
(in_bom yes) (on_board yes) (dnp no)
(uuid d9913e95-0de8-4bdf-8406-bbd8f507aaa8)
(property "Reference" "U10" (at 224.155 91.44 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74HC14" (at 224.155 93.98 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 227.33 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14" (at 227.33 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 43988547-f251-469e-85c1-9111be6bda0c))
(pin "2" (uuid b3c61d59-1340-485f-a7a0-3dff7e483302))
(pin "3" (uuid e95d0848-879a-453e-8766-eff0afd8433f))
(pin "4" (uuid 7479a910-2212-442d-b5cc-be7f3a26aaec))
(pin "5" (uuid c25f6862-c410-452b-a760-0f8124b6c01e))
(pin "6" (uuid 5439c446-6a47-43d6-8ad3-3aecd728a51c))
(pin "8" (uuid 4bcfc6bf-7b17-41f9-ab61-55a24b95130f))
(pin "9" (uuid 2ebb28b7-7d25-4b2f-a245-ee688a69ecbf))
(pin "10" (uuid 3e41fc49-db43-4303-a8d9-9c36aae68d20))
(pin "11" (uuid ed2877ae-282d-41e6-9464-b211f940c506))
(pin "12" (uuid 58fd8e10-2830-4f7a-8786-0d32f67c740d))
(pin "13" (uuid 8d3d6d49-3b2b-442f-9af0-d8276c47348e))
(pin "14" (uuid 33bddb74-f879-4be2-8ec4-34e7058c458e))
(pin "7" (uuid 4adf627f-5948-42ce-8c1d-56939213c39d))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/00000000-0000-0000-0000-000061ad620f"
(reference "U10") (unit 2)
)
)
)
)
(symbol (lib_id "power:+3.3V") (at 223.52 40.005 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid e80a9d63-6ef1-480a-9800-86ca95e480ca)
(property "Reference" "#PWR02" (at 223.52 43.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 223.901 35.6108 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 223.52 40.005 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 223.52 40.005 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 642e1824-db5c-4f54-bd52-91ce0e1e94d1))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/00000000-0000-0000-0000-000061ad620f"
(reference "#PWR02") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 229.87 40.005 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid eb53e15e-79a5-4cec-99c5-39aeb85e9e17)
(property "Reference" "C14" (at 228.7016 37.084 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 231.013 37.084 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 233.68 39.0398 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 229.87 40.005 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6269e9ef-da03-4ff4-81a3-f18f04fd98a1))
(pin "2" (uuid a2e4379f-bbe6-4a37-9864-08087ff997c7))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/00000000-0000-0000-0000-000061ad620f"
(reference "C14") (unit 1)
)
)
)
)
(symbol (lib_id "74xx:74HC14") (at 227.33 117.475 180) (unit 5)
(in_bom yes) (on_board yes) (dnp no)
(uuid ec8c690e-2714-435a-8a1e-2ac04a01b840)
(property "Reference" "U10" (at 224.155 120.015 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74HC14" (at 224.155 122.555 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 227.33 117.475 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14" (at 227.33 117.475 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 55cf83d8-3709-40e4-83f8-c61b6a06e128))
(pin "2" (uuid cf04fabb-10cb-4ff2-8b9f-0bd2f358099b))
(pin "3" (uuid 23b294f3-723b-46c7-ba56-1f864a5259f4))
(pin "4" (uuid db1a9fda-9970-4256-8341-c02fc5fc9647))
(pin "5" (uuid 6d9d1bdb-14c5-462b-8471-782afbbc715e))
(pin "6" (uuid 92c3f667-3826-42a1-9303-d3933dea8b00))
(pin "8" (uuid b290ded0-4b2f-4cb6-b7c5-7d1c3825e670))
(pin "9" (uuid 3a99625d-583d-4d63-bda9-3f2470ed2247))
(pin "10" (uuid 8b908d4f-861e-48bf-a2e8-7a20cf5d3bbd))
(pin "11" (uuid dc4933d3-68b3-47ab-af81-8b660a1e454b))
(pin "12" (uuid f0e69285-c18f-4c2a-80c7-ab453e6f7525))
(pin "13" (uuid 60d51e36-6463-4831-9b85-1c03dfbcde2b))
(pin "14" (uuid d7bdd75b-74ae-42c5-ad1a-6289712d0f46))
(pin "7" (uuid e9af9f1f-61e8-4900-bcca-6307a7122600))
(instances
(project "SDCL"
(path "/bcec61a8-2c2c-45a3-8515-40c63927a0a2/00000000-0000-0000-0000-000061ad620f"
(reference "U10") (unit 5)
)
)
)
)
)

File diff suppressed because it is too large Load Diff