First component placement

This commit is contained in:
Hakan Bastedt
2024-01-25 00:27:56 +01:00
parent ac711cd168
commit e641fd04b7
5 changed files with 4627 additions and 41444 deletions

View File

@@ -70,15 +70,15 @@ void StepGen::handleStepper(void)
pwmCycleTime = (FACT_LOW + (FACT_HIGH - FACT_LOW) * (abs(diffPosition) - SPEED_MIN) / (SPEED_MAX - SPEED_MIN)) * StepGen::sync0CycleTime;
}
#endif
uint64_t fre = abs(diffPosition) * stepsPerMM * 1000000 / double(pwmCycleTime); // Frequency needed
if (fre > maxFreq) // Only do maxFre
uint64_t fre = (abs(diffPosition) * stepsPerMM * 1000000) / pwmCycleTime; // Frequency needed
if (fre > maxFreq) // Only do maxFre
{
double maxDist = maxFreq / stepsPerMM * pwmCycleTime / 1000000.0 * (diffPosition > 0 ? 1 : -1);
reqPos(actualPosition + maxDist);
double maxDist = (maxFreq * pwmCycleTime) / (stepsPerMM * 1000000.0) * (diffPosition > 0 ? 1 : -1);
reqPos(actPos() + maxDist);
}
int32_t pulsesAtEndOfCycle = stepsPerMM * reqPos(); // From Turner.hal X:5000 Z:2000 ps/mm
int32_t pulsesAtEndOfCycle = stepsPerMM * reqPos();
// Will be picked up by the timer_CB and the timer is reloaded.
// Will be picked up by the timer_CB and the timer is reloaded, if it runs.
timerNewEndStepPosition = pulsesAtEndOfCycle;
if (!timerIsRunning) // Timer isn't running. Start it here
@@ -86,11 +86,18 @@ void StepGen::handleStepper(void)
int32_t steps = pulsesAtEndOfCycle - timerStepPosition; // Pulses to go + or -
if (steps != 0)
{
uint8_t sgn = steps > 0 ? HIGH : LOW;
digitalWrite(dirPin, sgn);
timerStepDirection = steps > 0 ? 1 : -1;
if (steps > 0)
{
digitalWrite(dirPin, HIGH);
timerStepDirection = 1;
}
else
{
digitalWrite(dirPin, LOW);
timerStepDirection = -1;
}
timerStepPositionAtEnd = pulsesAtEndOfCycle; // Current Position
float_t freqf = abs(steps) * (1e6 / float(pwmCycleTime));
float_t freqf = abs(steps) / (pwmCycleTime*1.0e-6);
uint32_t freq = uint32_t(freqf);
MyTim->setMode(timerChan, TIMER_OUTPUT_COMPARE_PWM2, stepPin);
MyTim->setOverflow(freq, HERTZ_FORMAT);
@@ -108,13 +115,13 @@ void StepGen::timerCB()
// Input for reload is timerNewEndStepPosition
// The timer has current position and from this
// can set new frequency and new endtarget for steps
MyTim->pause(); // We are not at stop, let's stop it
MyTim->pause(); // We are not at stop, let's stop it. Note stepPin is floating
int32_t steps = timerNewEndStepPosition - timerStepPosition;
if (steps != 0)
{
uint8_t sgn = steps > 0 ? HIGH : LOW;
digitalWrite(dirPin, sgn);
float_t freqf = abs(steps) * (1e6 / float(pwmCycleTime));
float_t freqf = abs(steps) / float(pwmCycleTime*1.0e-6);
uint32_t freq = uint32_t(freqf);
timerStepDirection = steps > 0 ? 1 : -1;
timerStepPositionAtEnd = timerNewEndStepPosition;

File diff suppressed because it is too large Load Diff

View File

@@ -2264,7 +2264,7 @@
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "STEP3_STEP" (shape input) (at 96.52 62.23 180) (fields_autoplaced)
(global_label "STEP4_STEP" (shape input) (at 96.52 62.23 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7ce01cd3-36a1-4a89-ac28-94559f3c45c2)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 82.1655 62.23 0)
@@ -2348,7 +2348,7 @@
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "STEP3_DIR" (shape input) (at 96.52 59.69 180) (fields_autoplaced)
(global_label "STEP4_DIR" (shape input) (at 96.52 59.69 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid af9138f3-e9a2-4ab3-a190-c216043e97a3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 83.6168 59.69 0)
@@ -2467,7 +2467,7 @@
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "STEP3_STEP" (shape input) (at 64.77 62.23 0) (fields_autoplaced)
(global_label "STEP4_STEP" (shape input) (at 64.77 62.23 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid fb2bf65e-39c4-4433-8316-38ed00e9801b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 79.1245 62.23 0)

View File

@@ -937,7 +937,7 @@
(no_connect (at 170.18 60.96) (uuid b55a0831-1f80-4e60-afe5-fbeb09b31fb3))
(wire (pts (xy 204.47 52.07) (xy 204.47 46.99))
(wire (pts (xy 204.47 59.69) (xy 204.47 64.77))
(stroke (width 0) (type default))
(uuid 00af1383-82d5-4f44-9bd5-4f00ebe62789)
)
@@ -1101,7 +1101,7 @@
(stroke (width 0) (type default))
(uuid 5748ac3c-aa40-4338-91cb-09e7f27e32b9)
)
(wire (pts (xy 204.47 59.69) (xy 207.01 59.69))
(wire (pts (xy 204.47 52.07) (xy 207.01 52.07))
(stroke (width 0) (type default))
(uuid 5ee11d42-eb8b-4f67-b43e-628265012120)
)
@@ -1169,7 +1169,7 @@
(stroke (width 0) (type default))
(uuid 77cf8b9e-f61b-43bd-966b-ccf86cac9fe0)
)
(wire (pts (xy 204.47 52.07) (xy 207.01 52.07))
(wire (pts (xy 204.47 59.69) (xy 207.01 59.69))
(stroke (width 0) (type default))
(uuid 78c4d81a-8cd7-4204-b127-67d702515bb3)
)
@@ -1361,7 +1361,7 @@
(stroke (width 0) (type default))
(uuid f79f6141-fa96-4ed9-b318-53b0121d9427)
)
(wire (pts (xy 204.47 64.77) (xy 204.47 59.69))
(wire (pts (xy 204.47 46.99) (xy 204.47 52.07))
(stroke (width 0) (type default))
(uuid f88b9819-a59a-4a07-be5c-5c521a95b3e7)
)
@@ -1784,19 +1784,19 @@
)
)
(symbol (lib_id "Connector_Generic:Conn_01x04") (at 212.09 54.61 0) (unit 1)
(symbol (lib_id "Connector_Generic:Conn_01x04") (at 212.09 57.15 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 383a7979-d655-4305-9c85-8b9a9cbd73ff)
(property "Reference" "J17" (at 212.09 65.1043 0)
(property "Reference" "J17" (at 212.09 46.6557 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "THCAD" (at 212.09 62.6801 0)
(property "Value" "THCAD" (at 212.09 49.0799 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "TerminalBlock:TerminalBlock_bornier-4_P5.08mm" (at 212.09 54.61 0)
(property "Footprint" "TerminalBlock:TerminalBlock_bornier-4_P5.08mm" (at 212.09 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 212.09 54.61 0)
(property "Datasheet" "~" (at 212.09 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 442446f2-91c3-4f7f-8e23-d65e123497aa))
@@ -1977,19 +1977,19 @@
)
)
(symbol (lib_id "power:+5V") (at 204.47 46.99 0) (unit 1)
(symbol (lib_id "power:+5V") (at 204.47 64.77 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 7ff2a75b-e859-4c56-89de-d740aa32b48c)
(property "Reference" "#PWR?" (at 204.47 50.8 0)
(property "Reference" "#PWR?" (at 204.47 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 204.47 42.8569 0)
(property "Value" "+5V" (at 204.47 68.9031 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 204.47 46.99 0)
(property "Footprint" "" (at 204.47 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 204.47 46.99 0)
(property "Datasheet" "" (at 204.47 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 18a2b5fe-86d4-41ec-b99f-cacabef55421))
@@ -2251,19 +2251,19 @@
)
)
(symbol (lib_id "power:GND") (at 204.47 64.77 0) (unit 1)
(symbol (lib_id "power:GND") (at 204.47 46.99 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid ca36b300-5013-4ed8-90ce-16f8ff54db4b)
(property "Reference" "#PWR?" (at 204.47 71.12 0)
(property "Reference" "#PWR?" (at 204.47 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 204.47 67.31 90)
(property "Value" "GND" (at 204.47 44.45 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 204.47 64.77 0)
(property "Footprint" "" (at 204.47 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 204.47 64.77 0)
(property "Datasheet" "" (at 204.47 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 43c0c09f-b186-4193-9a45-a9efae286c8f))

View File

@@ -867,14 +867,26 @@
)
)
(junction (at 100.33 77.47) (diameter 0) (color 0 0 0 0)
(uuid 00be6be6-3df2-4b1b-a6fa-a8cfd5da6ad4)
)
(junction (at 100.33 54.61) (diameter 0) (color 0 0 0 0)
(uuid 01028bdc-8bdc-49e8-90ce-7430de850ebe)
)
(junction (at 55.88 54.61) (diameter 0) (color 0 0 0 0)
(uuid 07cbb7b7-3f83-4128-b766-89904e8b2b59)
)
(junction (at 83.82 93.98) (diameter 0) (color 0 0 0 0)
(uuid 09c43583-19a5-43b1-b7fd-38559ddcf5b9)
)
(junction (at 48.26 124.46) (diameter 0) (color 0 0 0 0)
(uuid 10df9d2d-77cc-449b-9c25-983999fb39a4)
)
(junction (at 83.82 93.98) (diameter 0) (color 0 0 0 0)
(uuid 15a9f37c-d5d2-4217-855b-b2803ff82848)
(junction (at 83.82 170.18) (diameter 0) (color 0 0 0 0)
(uuid 13b41468-ad8f-4bb5-a42a-d67a9218da0b)
)
(junction (at 107.95 153.67) (diameter 0) (color 0 0 0 0)
(uuid 1772e9d8-df6e-48d2-8fb1-f1793a23447d)
)
(junction (at 55.88 176.53) (diameter 0) (color 0 0 0 0)
(uuid 18a0c0d8-235f-41fb-b3c4-1513ad3b4482)
@@ -885,11 +897,17 @@
(junction (at 55.88 119.38) (diameter 0) (color 0 0 0 0)
(uuid 1dd69ea6-5360-49cc-8337-ba61698ad8d1)
)
(junction (at 100.33 130.81) (diameter 0) (color 0 0 0 0)
(uuid 1df26744-bb4f-4b20-ac7d-53c6187d4892)
)
(junction (at 50.8 176.53) (diameter 0) (color 0 0 0 0)
(uuid 2110fcb5-cc92-4f0d-80b3-df7f697353b1)
)
(junction (at 81.28 93.98) (diameter 0) (color 0 0 0 0)
(uuid 22d081f4-371c-46e2-a279-8d3c008e963e)
(junction (at 107.95 43.18) (diameter 0) (color 0 0 0 0)
(uuid 23e010e4-0a90-493f-96dd-2ca7a741c3e5)
)
(junction (at 107.95 119.38) (diameter 0) (color 0 0 0 0)
(uuid 28ac4952-b529-45b6-a0ab-ed7ef2a5ec15)
)
(junction (at 213.36 92.71) (diameter 0) (color 0 0 0 0)
(uuid 2bbb1fa0-b8ca-48d0-88d0-feefc8a81565)
@@ -897,8 +915,14 @@
(junction (at 210.82 92.71) (diameter 0) (color 0 0 0 0)
(uuid 2eb9d7c6-fc97-4f58-957f-64a01d6d5108)
)
(junction (at 83.82 170.18) (diameter 0) (color 0 0 0 0)
(uuid 3024cf93-733f-4a22-a5fc-2ba353e87d78)
(junction (at 100.33 66.04) (diameter 0) (color 0 0 0 0)
(uuid 3a185e11-4c73-4386-8e94-62ddad7c4929)
)
(junction (at 107.95 142.24) (diameter 0) (color 0 0 0 0)
(uuid 466320a3-de3e-4a12-80b5-e7e1992627b0)
)
(junction (at 81.28 170.18) (diameter 0) (color 0 0 0 0)
(uuid 4e11461d-41d4-48b0-8d19-4e9aa7079c69)
)
(junction (at 55.88 43.18) (diameter 0) (color 0 0 0 0)
(uuid 5354ec96-5fcd-4894-93ea-88bc52835846)
@@ -909,21 +933,33 @@
(junction (at 55.88 130.81) (diameter 0) (color 0 0 0 0)
(uuid 5a15d30a-c4dc-4c13-9286-2334ea4bda86)
)
(junction (at 107.95 54.61) (diameter 0) (color 0 0 0 0)
(uuid 5b64b4ea-78aa-4ad4-8807-df2c8db625b6)
)
(junction (at 48.26 48.26) (diameter 0) (color 0 0 0 0)
(uuid 616af3f3-f203-4c74-8cc4-224fcc8f2a5a)
)
(junction (at 100.33 142.24) (diameter 0) (color 0 0 0 0)
(uuid 630e7165-c463-4b76-b19e-e58b1175e068)
)
(junction (at 53.34 147.32) (diameter 0) (color 0 0 0 0)
(uuid 64a7af42-9287-4537-ac9c-5404d589331d)
)
(junction (at 50.8 135.89) (diameter 0) (color 0 0 0 0)
(uuid 671be165-0eab-4b07-b79b-bae89dcf4d84)
)
(junction (at 86.36 93.98) (diameter 0) (color 0 0 0 0)
(uuid 6d4287fc-867c-4fff-86bd-1c30233f78e1)
(junction (at 107.95 77.47) (diameter 0) (color 0 0 0 0)
(uuid 7c0f1626-4afb-43b6-8eca-ea467008f338)
)
(junction (at 86.36 170.18) (diameter 0) (color 0 0 0 0)
(uuid 80b260c2-5093-4363-941e-09bae0f504cc)
)
(junction (at 55.88 66.04) (diameter 0) (color 0 0 0 0)
(uuid 80b8b24f-c137-4b6c-b9c5-1deb55f47fcd)
)
(junction (at 81.28 93.98) (diameter 0) (color 0 0 0 0)
(uuid 90622b58-6532-43ba-94fa-744963e78034)
)
(junction (at 55.88 100.33) (diameter 0) (color 0 0 0 0)
(uuid 93dc0ec0-dd2e-4722-9eb9-3c6722c5defc)
)
@@ -933,26 +969,38 @@
(junction (at 50.8 59.69) (diameter 0) (color 0 0 0 0)
(uuid a869d333-59dd-4d47-9a9a-5ba8cd70a38e)
)
(junction (at 100.33 43.18) (diameter 0) (color 0 0 0 0)
(uuid a9a66a71-d73b-4cf9-9ee8-a6564e083f66)
)
(junction (at 100.33 153.67) (diameter 0) (color 0 0 0 0)
(uuid aa3523d6-607a-4ce9-9509-22e97387f640)
)
(junction (at 53.34 71.12) (diameter 0) (color 0 0 0 0)
(uuid aca97284-6bd7-4f8f-899b-36d89632830c)
)
(junction (at 55.88 142.24) (diameter 0) (color 0 0 0 0)
(uuid bcd73f2a-3be9-4aca-8a55-4302737a928c)
)
(junction (at 81.28 170.18) (diameter 0) (color 0 0 0 0)
(uuid cc6f0da4-1748-45ae-8cb3-00f891c8f483)
(junction (at 100.33 119.38) (diameter 0) (color 0 0 0 0)
(uuid d25f9376-a911-4e7e-8ae4-975fea0c7e5a)
)
(junction (at 107.95 130.81) (diameter 0) (color 0 0 0 0)
(uuid d3561e96-3419-4d0e-bb03-f1a33b6e87af)
)
(junction (at 55.88 158.75) (diameter 0) (color 0 0 0 0)
(uuid dbdc9b51-e141-48d8-99d0-69d85a41db83)
)
(junction (at 107.95 66.04) (diameter 0) (color 0 0 0 0)
(uuid e20aabd4-bf8b-453f-884a-373332dca291)
)
(junction (at 50.8 100.33) (diameter 0) (color 0 0 0 0)
(uuid f48d5329-71ea-49b0-aaea-c1a534f7d532)
)
(junction (at 53.34 100.33) (diameter 0) (color 0 0 0 0)
(uuid f6e15fa5-1282-4963-b6dd-779b285179c9)
)
(junction (at 86.36 170.18) (diameter 0) (color 0 0 0 0)
(uuid f9c65761-8266-47e8-b84d-d318600566be)
(junction (at 86.36 93.98) (diameter 0) (color 0 0 0 0)
(uuid fc806ceb-2b43-4d23-b1c5-1c9b425d679b)
)
(wire (pts (xy 76.2 142.24) (xy 88.9 142.24))
@@ -1047,6 +1095,10 @@
(stroke (width 0) (type default))
(uuid 1a8ccfee-f64a-40f3-bf43-85ad91faec51)
)
(wire (pts (xy 107.95 43.18) (xy 107.95 46.99))
(stroke (width 0) (type default))
(uuid 1aa453fb-afac-4807-9a71-94614d7fdda0)
)
(wire (pts (xy 96.52 130.81) (xy 100.33 130.81))
(stroke (width 0) (type default))
(uuid 1b2d7f1b-c326-49c2-9060-21c4fe1474cf)
@@ -1063,6 +1115,10 @@
(stroke (width 0) (type default))
(uuid 1d6727f4-2f0a-4670-b5ac-b31feac5badd)
)
(wire (pts (xy 107.95 153.67) (xy 107.95 157.48))
(stroke (width 0) (type default))
(uuid 1fdd7450-d7c0-45b9-b450-53f8d1c153f7)
)
(wire (pts (xy 76.2 71.12) (xy 81.28 71.12))
(stroke (width 0) (type default))
(uuid 218faa41-ff38-40bb-8362-85d88d8d1f4f)
@@ -1091,9 +1147,9 @@
(stroke (width 0) (type default))
(uuid 26549126-7053-4f91-bb5c-8eecb3ef4207)
)
(wire (pts (xy 81.28 93.98) (xy 83.82 93.98))
(wire (pts (xy 81.28 170.18) (xy 83.82 170.18))
(stroke (width 0) (type default))
(uuid 275ee4b2-b82c-4bd4-8759-b5bc69a662ca)
(uuid 266a6bff-8da0-415d-9a05-52be57753627)
)
(wire (pts (xy 251.46 45.72) (xy 255.905 45.72))
(stroke (width 0) (type default))
@@ -1123,6 +1179,10 @@
(stroke (width 0) (type default))
(uuid 2da6c4be-b0a8-4b8e-b5f0-6c603f4ace23)
)
(wire (pts (xy 107.95 66.04) (xy 107.95 69.85))
(stroke (width 0) (type default))
(uuid 320a9ccd-27c4-490a-ba7b-c93307916ef9)
)
(wire (pts (xy 118.11 54.61) (xy 107.95 54.61))
(stroke (width 0) (type default))
(uuid 320b079f-41b5-412b-9671-8b5c864b07d2)
@@ -1143,6 +1203,10 @@
(stroke (width 0) (type default))
(uuid 35326756-2ede-4494-ab8b-c0812fac8c9d)
)
(wire (pts (xy 107.95 142.24) (xy 107.95 146.05))
(stroke (width 0) (type default))
(uuid 36871d32-c9ea-46df-ae6a-26c0d033a154)
)
(wire (pts (xy 55.88 100.33) (xy 55.88 95.25))
(stroke (width 0) (type default))
(uuid 38b4c120-20c0-4a67-b58b-cd9436ee5312)
@@ -1195,6 +1259,10 @@
(stroke (width 0) (type default))
(uuid 424a13f3-619b-41e7-a0c3-b04e78e02e10)
)
(wire (pts (xy 81.28 93.98) (xy 83.82 93.98))
(stroke (width 0) (type default))
(uuid 434f8953-6d6f-4747-8c0f-c2c566a7d208)
)
(wire (pts (xy 251.46 45.72) (xy 251.46 35.56))
(stroke (width 0) (type default))
(uuid 435333dc-5ea5-422c-a9f6-00192a4e95c6)
@@ -1223,6 +1291,10 @@
(stroke (width 0) (type default))
(uuid 4b2cb331-887f-4c9c-aa03-8c7a1545098b)
)
(wire (pts (xy 100.33 153.67) (xy 100.33 157.48))
(stroke (width 0) (type default))
(uuid 4cad1653-4a04-46ac-97d6-9c6748cc0522)
)
(wire (pts (xy 48.26 176.53) (xy 48.26 171.45))
(stroke (width 0) (type default))
(uuid 4d8984a5-94c7-4708-a060-84494b20fa68)
@@ -1231,6 +1303,10 @@
(stroke (width 0) (type default))
(uuid 4e6961a9-e9e1-4dba-b2a1-138c4d321b92)
)
(wire (pts (xy 107.95 130.81) (xy 107.95 134.62))
(stroke (width 0) (type default))
(uuid 4f60bb24-127b-49db-b605-84e777f01969)
)
(wire (pts (xy 53.34 147.32) (xy 60.96 147.32))
(stroke (width 0) (type default))
(uuid 52dc9229-168a-4f99-a506-756848d28230)
@@ -1247,10 +1323,6 @@
(stroke (width 0) (type default))
(uuid 53a23c7a-f1c4-4fc5-8345-9741e041973d)
)
(wire (pts (xy 78.74 93.98) (xy 81.28 93.98))
(stroke (width 0) (type default))
(uuid 53e03716-69b5-4e14-9913-0b9e33f17f0b)
)
(wire (pts (xy 243.84 52.07) (xy 243.84 53.34))
(stroke (width 0) (type default))
(uuid 544a68da-64e0-42a8-8430-52b7516d34f2)
@@ -1315,6 +1387,10 @@
(stroke (width 0) (type default))
(uuid 6f243086-7690-4453-bcbe-8d791bbbfb30)
)
(wire (pts (xy 83.82 170.18) (xy 86.36 170.18))
(stroke (width 0) (type default))
(uuid 704dd163-a811-4153-b8f0-34bf18f8068a)
)
(wire (pts (xy 55.88 43.18) (xy 55.88 29.21))
(stroke (width 0) (type default))
(uuid 7099b49b-2bbf-4fce-a939-74fc992fd421)
@@ -1327,6 +1403,14 @@
(stroke (width 0) (type default))
(uuid 73cc1c1d-a15c-40ff-b853-6649545d0800)
)
(wire (pts (xy 100.33 43.18) (xy 100.33 46.99))
(stroke (width 0) (type default))
(uuid 74d30983-f4ff-4bfd-80cd-8bcacb767be7)
)
(wire (pts (xy 100.33 142.24) (xy 100.33 146.05))
(stroke (width 0) (type default))
(uuid 75d6aa1c-fa07-424a-be9c-10d8f9db39ab)
)
(wire (pts (xy 119.38 58.42) (xy 120.65 58.42))
(stroke (width 0) (type default))
(uuid 78537781-294c-4055-9504-aabf655d5d05)
@@ -1391,7 +1475,7 @@
(stroke (width 0) (type default))
(uuid 87508c45-6ea6-4c64-88fb-39b148f1c4f8)
)
(wire (pts (xy 83.82 93.98) (xy 86.36 93.98))
(wire (pts (xy 78.74 93.98) (xy 81.28 93.98))
(stroke (width 0) (type default))
(uuid 876aef66-2985-444b-8dd7-b51a3dcc87b2)
)
@@ -1399,6 +1483,10 @@
(stroke (width 0) (type default))
(uuid 87f88a5c-bebf-4722-9203-76c63eb97254)
)
(wire (pts (xy 107.95 54.61) (xy 107.95 58.42))
(stroke (width 0) (type default))
(uuid 8809aea2-b51f-46f0-ad7f-82d1e4403bf1)
)
(wire (pts (xy 231.14 52.07) (xy 243.84 52.07))
(stroke (width 0) (type default))
(uuid 8b79750a-0700-4d8b-a3f7-906d3ebc5f1e)
@@ -1435,6 +1523,10 @@
(stroke (width 0) (type default))
(uuid 990a104e-ba27-4aef-8c9c-28c4444dcd79)
)
(wire (pts (xy 100.33 77.47) (xy 100.33 81.28))
(stroke (width 0) (type default))
(uuid 99284998-1a02-48fe-a2de-de78ddb212d4)
)
(wire (pts (xy 53.34 176.53) (xy 53.34 171.45))
(stroke (width 0) (type default))
(uuid 9a72ac80-3b3d-40ae-949d-58a34ddc729a)
@@ -1499,6 +1591,10 @@
(stroke (width 0) (type default))
(uuid ae35ab4f-9f9e-442c-82ce-fa240dd7e4cc)
)
(wire (pts (xy 100.33 66.04) (xy 100.33 69.85))
(stroke (width 0) (type default))
(uuid af137f0b-e87d-48a1-9008-515621e4e08e)
)
(wire (pts (xy 118.11 142.24) (xy 118.11 153.67))
(stroke (width 0) (type default))
(uuid b1a8d1f5-0884-490f-9f4d-698579a39c1e)
@@ -1523,10 +1619,6 @@
(stroke (width 0) (type default))
(uuid b83382ed-efd6-4002-9e44-39a7ca13b81d)
)
(wire (pts (xy 81.28 170.18) (xy 83.82 170.18))
(stroke (width 0) (type default))
(uuid bbe7277e-cadb-4df2-9d02-35e95a7386f3)
)
(wire (pts (xy 215.9 52.07) (xy 208.28 52.07))
(stroke (width 0) (type default))
(uuid bc885c12-c837-4936-848d-386c5f4b05bc)
@@ -1539,6 +1631,10 @@
(stroke (width 0) (type default))
(uuid bdc681ea-d0a0-47d2-8882-08ac74e9ffa5)
)
(wire (pts (xy 100.33 130.81) (xy 100.33 134.62))
(stroke (width 0) (type default))
(uuid bed7fb44-8623-4317-860d-d5f33a47431d)
)
(wire (pts (xy 251.46 35.56) (xy 231.14 35.56))
(stroke (width 0) (type default))
(uuid befb17df-fc4e-4f90-bde6-296c9b9261a6)
@@ -1619,6 +1715,10 @@
(stroke (width 0) (type default))
(uuid d4128ac4-61e1-412c-9004-c11b7d0ad2e6)
)
(wire (pts (xy 100.33 119.38) (xy 100.33 123.19))
(stroke (width 0) (type default))
(uuid d43a54d8-bcf7-442f-b886-a8e70556c93c)
)
(wire (pts (xy 53.34 161.29) (xy 53.34 147.32))
(stroke (width 0) (type default))
(uuid d48e56f9-9818-4c0e-8199-b4bedb2c58e2)
@@ -1631,10 +1731,6 @@
(stroke (width 0) (type default))
(uuid d79d3e56-ab95-44a2-a82f-012917e69b94)
)
(wire (pts (xy 83.82 170.18) (xy 86.36 170.18))
(stroke (width 0) (type default))
(uuid d7e60ec6-7221-41c5-a889-6b554042cc5b)
)
(wire (pts (xy 116.84 66.04) (xy 107.95 66.04))
(stroke (width 0) (type default))
(uuid d96a6b15-04a9-4236-8bb9-bf4cea20ec15)
@@ -1651,6 +1747,10 @@
(stroke (width 0) (type default))
(uuid e21a3aa4-193a-48b1-bc3d-0ff1fb8d316a)
)
(wire (pts (xy 100.33 54.61) (xy 100.33 58.42))
(stroke (width 0) (type default))
(uuid e21d77fb-dd8f-48ce-b244-d10856ae60c2)
)
(wire (pts (xy 248.92 60.96) (xy 255.905 60.96))
(stroke (width 0) (type default))
(uuid e7a011c8-118d-4ef9-a569-d2c9569deda6)
@@ -1671,6 +1771,10 @@
(stroke (width 0) (type default))
(uuid e9688365-6d5f-435d-a953-f916e984f07c)
)
(wire (pts (xy 107.95 119.38) (xy 107.95 123.19))
(stroke (width 0) (type default))
(uuid ea8caf10-1118-4cb7-b17f-69f61dbede45)
)
(wire (pts (xy 119.38 43.18) (xy 107.95 43.18))
(stroke (width 0) (type default))
(uuid ea930971-a3a8-4825-a7d9-37bb4d668448)
@@ -1687,6 +1791,10 @@
(stroke (width 0) (type default))
(uuid f0a8ef25-44f1-43a3-87de-9e9e9c704513)
)
(wire (pts (xy 83.82 93.98) (xy 86.36 93.98))
(stroke (width 0) (type default))
(uuid f5293d7e-aa02-4158-910e-99a405409b72)
)
(wire (pts (xy 76.2 48.26) (xy 86.36 48.26))
(stroke (width 0) (type default))
(uuid f7ac61a0-ff45-4219-9659-5ab155aabf84)
@@ -1695,6 +1803,10 @@
(stroke (width 0) (type default))
(uuid f7d85103-4b9a-444c-86e4-1987e17b16d8)
)
(wire (pts (xy 107.95 77.47) (xy 107.95 81.28))
(stroke (width 0) (type default))
(uuid f8303a30-1512-4cb7-ad5a-d5d15d214bac)
)
(wire (pts (xy 78.74 82.55) (xy 78.74 83.82))
(stroke (width 0) (type default))
(uuid fb23d1b3-4ddf-47cc-ba6b-77ea6936e453)
@@ -1993,7 +2105,7 @@
(property "Value" "Yellow led" (at 110.49 140.97 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0805_2012Metric" (at 104.14 142.24 0)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 142.24 0)
@@ -2078,7 +2190,7 @@
(property "Value" "Yellow led" (at 110.49 129.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0805_2012Metric" (at 104.14 130.81 0)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 130.81 0)
@@ -2098,48 +2210,16 @@
)
)
(symbol (lib_id "Device:R_Pack04") (at 83.82 165.1 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1da4564f-ce46-4f4b-be85-a961a125439a)
(property "Reference" "RN3" (at 88.392 166.3121 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1k" (at 88.392 163.8879 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_Array_Convex_4x0603" (at 90.805 165.1 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 83.82 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a3aa7c75-f9cf-42e5-8600-55b42cab96b8))
(pin "6" (uuid abd5f718-0ee5-4c10-b62f-d875a92cb1c9))
(pin "7" (uuid 362e3b00-e94b-4d52-bb35-55002b4a9218))
(pin "3" (uuid a4942103-cbca-4047-bc6a-c9d4fb039987))
(pin "4" (uuid a5612569-128a-4774-88de-e673e8a29824))
(pin "8" (uuid 9be93485-a626-4a0d-a18c-41975adf4a63))
(pin "2" (uuid fd1a828b-a40e-4296-b9e8-1d5776f24b6a))
(pin "5" (uuid edfb8e3e-05be-4cc2-845c-88db5535c52b))
(instances
(project "Ax58100-stm32-ethercat"
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/0a376a6c-0f15-42f8-81f6-3a55619be267"
(reference "RN3") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 92.71 153.67 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1ef699ab-b86f-413d-8700-3d63083dc56c)
(property "Reference" "R46" (at 92.71 153.67 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4k7" (at 92.71 156.21 90)
(property "Value" "1k" (at 92.71 156.21 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 92.71 155.448 90)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 92.71 155.448 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 92.71 153.67 0)
@@ -2186,16 +2266,45 @@
)
)
(symbol (lib_id "Device:LED") (at 104.14 157.48 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2b3c359a-9df9-46c1-baf3-9c368f158cfd)
(property "Reference" "D3" (at 101.6 158.75 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Red led" (at 111.76 158.115 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6f31b69a-b86f-4446-a3e3-fc76c8e52478))
(pin "2" (uuid 8f342d36-a88d-4db5-8768-444aecf94c09))
(instances
(project "Ax58100-stm32-ethercat"
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/d564400f-40ba-4aca-9c2a-14ec52a8353b"
(reference "D3") (unit 1)
)
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/0a376a6c-0f15-42f8-81f6-3a55619be267"
(reference "D7") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 92.71 43.18 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2d2b6ada-a6ad-4ba7-932a-e4d7db1df57f)
(property "Reference" "R46" (at 92.71 43.18 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4k7" (at 92.71 45.72 90)
(property "Value" "1k" (at 92.71 45.72 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 92.71 44.958 90)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 92.71 44.958 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 92.71 43.18 0)
@@ -2261,10 +2370,10 @@
(property "Reference" "R46" (at 92.71 77.47 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4k7" (at 92.71 80.01 90)
(property "Value" "1k" (at 92.71 80.01 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 92.71 79.248 90)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 92.71 79.248 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 92.71 77.47 0)
@@ -2284,6 +2393,35 @@
)
)
(symbol (lib_id "Device:LED") (at 104.14 123.19 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3a63e859-4332-4086-82b5-93cc273a426e)
(property "Reference" "D3" (at 101.6 124.46 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Red led" (at 111.76 123.825 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bfc40163-24ef-47fe-9ce3-0ec57335f195))
(pin "2" (uuid 64e0e24e-65ca-4183-ba89-fde35d0ff23f))
(instances
(project "Ax58100-stm32-ethercat"
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/d564400f-40ba-4aca-9c2a-14ec52a8353b"
(reference "D3") (unit 1)
)
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/0a376a6c-0f15-42f8-81f6-3a55619be267"
(reference "D13") (unit 1)
)
)
)
)
(symbol (lib_id "Isolator:TLP291-4") (at 223.52 72.39 0) (unit 4)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3b14df21-15dc-444a-bce0-73acd24921e7)
@@ -2462,6 +2600,35 @@
)
)
(symbol (lib_id "Device:LED") (at 104.14 146.05 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 501ea4b5-0cd5-41b2-91c1-1e7e92df4afd)
(property "Reference" "D3" (at 101.6 147.32 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Red led" (at 111.76 146.685 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3aad96f6-bd98-40bf-ba44-7a3d7c50a6c8))
(pin "2" (uuid 116cde39-f69d-4bb3-bb35-d6b57de847f9))
(instances
(project "Ax58100-stm32-ethercat"
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/d564400f-40ba-4aca-9c2a-14ec52a8353b"
(reference "D3") (unit 1)
)
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/0a376a6c-0f15-42f8-81f6-3a55619be267"
(reference "D9") (unit 1)
)
)
)
)
(symbol (lib_id "Connector_Generic:Conn_01x02") (at 118.11 95.25 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 52cf381e-ce00-44e3-82a7-93a7f7416edc)
@@ -2516,6 +2683,35 @@
)
)
(symbol (lib_id "Device:LED") (at 104.14 69.85 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 5587127d-aa3b-4e37-b18d-c446a66a45ba)
(property "Reference" "D3" (at 101.6 71.12 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Red led" (at 111.76 70.485 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dec859b6-56a3-41ee-9143-62d709464e8b))
(pin "2" (uuid ec347ffe-a618-4141-8d39-619d41e070da))
(instances
(project "Ax58100-stm32-ethercat"
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/d564400f-40ba-4aca-9c2a-14ec52a8353b"
(reference "D3") (unit 1)
)
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/0a376a6c-0f15-42f8-81f6-3a55619be267"
(reference "D15") (unit 1)
)
)
)
)
(symbol (lib_id "Connector_Generic:Conn_01x06") (at 156.21 62.23 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 5b80ef1d-5348-4e86-923f-941ecf6d43a0)
@@ -2592,7 +2788,7 @@
(property "Reference" "RN1" (at 46.228 88.9579 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "1k" (at 46.228 91.3821 0)
(property "Value" "40k" (at 46.228 91.3821 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_Array_Convex_4x0603" (at 60.325 90.17 90)
@@ -2618,6 +2814,35 @@
)
)
(symbol (lib_id "Device:LED") (at 104.14 58.42 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 5e9e500b-4633-4c51-8571-cc962ed5d242)
(property "Reference" "D3" (at 101.6 59.69 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Red led" (at 111.76 59.055 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5c1735f1-e227-4207-8a90-6d0d1f760350))
(pin "2" (uuid 1df899a1-f29c-4614-8957-f144934bd85a))
(instances
(project "Ax58100-stm32-ethercat"
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/d564400f-40ba-4aca-9c2a-14ec52a8353b"
(reference "D3") (unit 1)
)
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/0a376a6c-0f15-42f8-81f6-3a55619be267"
(reference "D16") (unit 1)
)
)
)
)
(symbol (lib_id "Isolator:TLP291-4") (at 68.58 45.72 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 5ef589bf-87a7-43f6-99bd-8429b3c56e1d)
@@ -2664,7 +2889,7 @@
(property "Reference" "RN5" (at 203.708 82.6079 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "1k" (at 203.708 85.0321 0)
(property "Value" "330" (at 203.708 85.0321 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_Array_Convex_4x0603" (at 217.805 83.82 90)
@@ -2696,10 +2921,10 @@
(property "Reference" "R46" (at 92.71 54.61 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4k7" (at 92.71 57.15 90)
(property "Value" "1k" (at 92.71 57.15 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 92.71 56.388 90)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 92.71 56.388 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 92.71 54.61 0)
@@ -2719,6 +2944,38 @@
)
)
(symbol (lib_id "Device:R_Pack04") (at 81.28 88.9 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 68fe52e3-8fee-44e2-b442-2bce8c7bb173)
(property "Reference" "RN4" (at 76.708 90.1121 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1k" (at 76.708 87.6879 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_Array_Convex_4x0603" (at 74.295 88.9 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 81.28 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c4e26a89-1183-4429-b08e-71560dec359c))
(pin "6" (uuid 674c494d-27f1-45bc-867a-bbb3abd17d9f))
(pin "7" (uuid e6b43175-1fcd-492d-acd9-940bdce0f9eb))
(pin "3" (uuid 1f726ccb-f384-4ae7-9ebc-7cf206eec9c2))
(pin "4" (uuid a7a864b1-f21c-4269-b31e-6d807c3b109b))
(pin "8" (uuid b2af767f-acc8-46d9-b79b-b22e034a6e79))
(pin "2" (uuid 36e7036f-c5c4-4bc7-8566-60ac9df4db71))
(pin "5" (uuid 49763221-f3b2-4fb1-8a85-c79464adf957))
(instances
(project "Ax58100-stm32-ethercat"
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/0a376a6c-0f15-42f8-81f6-3a55619be267"
(reference "RN4") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 104.14 77.47 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 6e5215a5-8d3f-417c-b753-bbba064dcf66)
@@ -2728,7 +2985,7 @@
(property "Value" "Yellow led" (at 110.49 76.2 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0805_2012Metric" (at 104.14 77.47 0)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 77.47 0)
@@ -2748,6 +3005,35 @@
)
)
(symbol (lib_id "Device:LED") (at 104.14 134.62 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 7660bdb3-f61a-4be9-911c-faa2621915a1)
(property "Reference" "D3" (at 101.6 135.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Red led" (at 111.76 135.255 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 55aee9c9-505c-489f-9906-bbe4ba7999dc))
(pin "2" (uuid c34d053b-9041-4b17-9777-b1eeff3495ad))
(instances
(project "Ax58100-stm32-ethercat"
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/d564400f-40ba-4aca-9c2a-14ec52a8353b"
(reference "D3") (unit 1)
)
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/0a376a6c-0f15-42f8-81f6-3a55619be267"
(reference "D11") (unit 1)
)
)
)
)
(symbol (lib_id "Isolator:TLP291-4") (at 68.58 68.58 0) (mirror y) (unit 3)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 83aaed36-08ea-4714-9dac-f33d8d962378)
@@ -2816,33 +3102,30 @@
)
)
(symbol (lib_id "Device:R_Pack04") (at 83.82 88.9 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 8f160e34-6f0a-4b15-a0da-83112dbcc2ed)
(property "Reference" "RN4" (at 88.392 90.1121 0)
(effects (font (size 1.27 1.27)) (justify left))
(symbol (lib_id "Device:LED") (at 104.14 46.99 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 8a7a6bda-2255-4fca-9dfd-f0d2b6520c97)
(property "Reference" "D3" (at 101.6 48.26 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1k" (at 88.392 87.6879 0)
(effects (font (size 1.27 1.27)) (justify left))
(property "Value" "Red led" (at 111.76 47.625 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_Array_Convex_4x0603" (at 90.805 88.9 90)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 83.82 88.9 0)
(property "Datasheet" "~" (at 104.14 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7af5a9c1-c8a8-4720-a865-a780d613ac09))
(pin "6" (uuid b7005d33-891f-4ce0-9bd8-c42a6c56a124))
(pin "7" (uuid 07d80411-a026-4f42-bd6a-dd9ca68d2836))
(pin "3" (uuid 060e701c-26d0-4f03-b6fd-7eec2d1ca5ea))
(pin "4" (uuid 80223fcd-3eef-4beb-8bcf-782fa24a8bfe))
(pin "8" (uuid 8e740660-e414-41e9-aff1-25faa3bafa7d))
(pin "2" (uuid bc5889f6-7538-4fc8-9ab0-9d25ec993ece))
(pin "5" (uuid 41ca2053-b514-4043-9e3d-29ae5b72fdb8))
(pin "1" (uuid a4c6dfa4-00cf-4df0-bcad-9910ed1afd48))
(pin "2" (uuid a72c5d69-e5da-43d7-874e-93527182cd82))
(instances
(project "Ax58100-stm32-ethercat"
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/d564400f-40ba-4aca-9c2a-14ec52a8353b"
(reference "D3") (unit 1)
)
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/0a376a6c-0f15-42f8-81f6-3a55619be267"
(reference "RN4") (unit 1)
(reference "D17") (unit 1)
)
)
)
@@ -2857,7 +3140,7 @@
(property "Value" "Yellow led" (at 110.49 53.34 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0805_2012Metric" (at 104.14 54.61 0)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 54.61 0)
@@ -2998,10 +3281,10 @@
(property "Reference" "R46" (at 92.71 66.04 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4k7" (at 92.71 68.58 90)
(property "Value" "1k" (at 92.71 68.58 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 92.71 67.818 90)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 92.71 67.818 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 92.71 66.04 0)
@@ -3110,7 +3393,7 @@
(property "Value" "Yellow led" (at 110.49 64.77 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0805_2012Metric" (at 104.14 66.04 0)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 66.04 0)
@@ -3130,6 +3413,38 @@
)
)
(symbol (lib_id "Device:R_Pack04") (at 81.28 165.1 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid a6f13e32-870a-4ff1-8e2d-58cf7fc6d2c5)
(property "Reference" "RN3" (at 76.708 166.3121 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1k" (at 76.708 163.8879 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_Array_Convex_4x0603" (at 74.295 165.1 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 81.28 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dcc79983-0d9b-48ab-95c4-ca5c77a2431d))
(pin "6" (uuid e84aff3c-0520-44cc-b160-d380b0860f68))
(pin "7" (uuid ebce41ed-80d1-4720-bb4a-e012827a7427))
(pin "3" (uuid f3907550-4b28-47a7-a0d1-00a6258b155f))
(pin "4" (uuid 3ce0dc34-ed39-4b79-9aaf-3b917bed1685))
(pin "8" (uuid b47ba689-be81-4839-ba8e-4cd24011f546))
(pin "2" (uuid a1b45b31-381f-4e66-bf67-cc9fac41ad01))
(pin "5" (uuid e4145e3c-8eac-493b-a41e-28bacf356e6b))
(instances
(project "Ax58100-stm32-ethercat"
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/0a376a6c-0f15-42f8-81f6-3a55619be267"
(reference "RN3") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3.3V") (at 58.42 105.41 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid b0a6ff18-77a4-421d-862c-b7cd76186926)
@@ -3235,7 +3550,7 @@
(property "Value" "Yellow led" (at 110.49 118.11 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0805_2012Metric" (at 104.14 119.38 0)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 119.38 0)
@@ -3283,6 +3598,35 @@
)
)
(symbol (lib_id "Device:LED") (at 104.14 81.28 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid cdb86603-59f4-4667-98ff-017cc29ffd79)
(property "Reference" "D3" (at 101.6 82.55 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Red led" (at 111.76 81.915 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 26ef0ca6-2c9f-44af-917d-30cc64e4180a))
(pin "2" (uuid 763b8833-f7bf-4924-a5c2-2766c9a76486))
(instances
(project "Ax58100-stm32-ethercat"
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/d564400f-40ba-4aca-9c2a-14ec52a8353b"
(reference "D3") (unit 1)
)
(path "/5597aedc-b607-407f-bbfd-31b3b298ecb1/0a376a6c-0f15-42f8-81f6-3a55619be267"
(reference "D14") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 104.14 153.67 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid d13afa0f-f84b-477b-9aac-3fb603e9553c)
@@ -3292,7 +3636,7 @@
(property "Value" "Yellow led" (at 110.49 152.4 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0805_2012Metric" (at 104.14 153.67 0)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 153.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 153.67 0)
@@ -3318,10 +3662,10 @@
(property "Reference" "R46" (at 92.71 119.38 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4k7" (at 92.71 121.92 90)
(property "Value" "1k" (at 92.71 121.92 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 92.71 121.158 90)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 92.71 121.158 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 92.71 119.38 0)
@@ -3378,10 +3722,10 @@
(property "Reference" "R46" (at 92.71 130.81 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4k7" (at 92.71 133.35 90)
(property "Value" "1k" (at 92.71 133.35 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 92.71 132.588 90)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 92.71 132.588 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 92.71 130.81 0)
@@ -3435,10 +3779,10 @@
(property "Reference" "R46" (at 92.71 142.24 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4k7" (at 92.71 144.78 90)
(property "Value" "1k" (at 92.71 144.78 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 92.71 144.018 90)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 92.71 144.018 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 92.71 142.24 0)
@@ -3553,7 +3897,7 @@
(property "Value" "Yellow led" (at 110.49 41.91 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "LED_SMD:LED_0805_2012Metric" (at 104.14 43.18 0)
(property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 104.14 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 43.18 0)
@@ -3574,12 +3918,12 @@
)
(symbol (lib_id "Device:R_Pack04") (at 53.34 166.37 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(in_bom yes) (on_board yes) (dnp no)
(uuid e91f3c6f-dbed-4eec-906b-a812fe0d373d)
(property "Reference" "RN2" (at 46.228 165.1579 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "1k" (at 46.228 167.5821 0)
(property "Value" "40k" (at 46.228 167.5821 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_Array_Convex_4x0603" (at 60.325 166.37 90)