-
Notifications
You must be signed in to change notification settings - Fork 62
feat: EtherCAT ESI support #731
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
b7ca2d3
feat: add EtherCAT types and shared backend logic
thiagoralves 03e9bdc
feat: extend RuntimePort with EtherCAT discovery and create EsiPort
thiagoralves 5906b45
feat: add EtherCAT store actions, selectors, and device config hook
thiagoralves 83bf21c
feat: port all EtherCAT UI components to shared frontend
thiagoralves 9b27556
feat: integrate EtherCAT config generation into v4 compilation
thiagoralves f1a15b9
fix: remove VPP code remnants and fix corrupted import in renderer
thiagoralves 6213a2f
feat: auto-create system task when EtherCAT device is added
thiagoralves 67d0dd1
fix: remove circular store import from editor-platform
thiagoralves e3d500e
feat: port remaining ethercat-task-selection commits (13 commits)
thiagoralves dfd45b7
feat: add ProjectTreeExpandableLeaf for EtherCAT bus device tree
thiagoralves a24a6b7
feat: port remaining ethercat-task-selection commits (6 commits)
marconetsf 668c8a9
refactor: remove subtitle from EtherCAT slave device editor header
marconetsf a5d297b
fix: use DeviceTransferIcon for EtherCAT slave tabs
marconetsf 7f868e8
refactor: move Add Selected button into Scanned Devices header
marconetsf 239e42b
fix: populate EtherCAT channelMappings at device add-time
marconetsf 8ea31e6
Merge branch 'development' into feat/ethercat-support-v2
thiagoralves abfb9dd
fix: close EtherCAT slave tabs without phantom save prompt
marconetsf dd77cc9
fix: update PLC type imports after move to backend/shared
marconetsf ea64666
Merge remote-tracking branch 'origin/development' into feat/ethercat-…
marconetsf 1777a51
Merge remote-tracking branch 'origin/development' into feat/ethercat-…
marconetsf 23cd396
fix: move ESI types to shared ports surface and fix formatting
marconetsf 69ea68f
fix: move ESI types to ports surface and update all imports
marconetsf b0939c1
fix: resolve all CI lint, format, and architecture errors
marconetsf b6bb9c8
fix: align fast-xml-parser version with openplc-web (^5.6.0)
marconetsf 7f9b72a
fix: register EtherCAT slave devices as first-class file entries
marconetsf 6639776
Merge remote-tracking branch 'origin/development' into feat/ethercat-…
marconetsf 8446a1f
refactor(esi): adopt shared loadedAt: string contract
marconetsf 44c3515
fix(ethercat): cascade delete of bus children
marconetsf 1e968a5
Merge branch 'development' into feat/ethercat-esi-backend
marconetsf 11e1261
fix(ethercat): address CodeRabbit review on PR #731
marconetsf e414fbc
Merge branch 'feat/ethercat-esi-backend' of https://github.com/Autono…
marconetsf c85b290
style: apply prettier to ipc main.ts
marconetsf 435aae4
chore: add sync-shared-surfaces Claude Code skill
marconetsf 8edf1cf
fix(ethercat): address João's review comments on PR #731
marconetsf bcae26f
docs: add Phase 4 debugger plan (scalable per-leaf addressing)
thiagoralves e02ec7c
Merge branch 'development' into feat/ethercat-esi-backend
marconetsf 7aee1b9
chore: untrack sync-shared-surfaces Claude Code skill
marconetsf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This condition flipped from
boardTarget === 'OpenPLC Runtime v4'toboardRuntime === 'openplc-compiler' && !isRuntimeV3. Any existing v4 board whose runtime string isn't literally'openplc-compiler'will now be misclassified as non-v4 and skip the conf/* generation. Will be nice if we can confirm that all currenthals.jsonv4 entries use that runtime name.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Verifiquei: hoje as três entradas do hals.json com openplc-compiler são OpenPLC Runtime v4, OpenPLC Runtime v3 e Raspberry Pi — e a classificação atual
acerta as três (v3 é excluída explicitamente; Pi entra como v4 porque roda Linux e hospeda o Runtime v4 nativamente, igual aos VPP packages com
target.type === 'runtime-v4'). A heurística é intencional: qualquer board com esse compilador é capaz de executar o Runtime v4 embarcado, então herda os
artefatos conf/*.json — comportamento desejado para novos boards Linux que venham a ser adicionados.