pyeds-editor 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyeds_editor-1.0.0/LICENSE +22 -0
- pyeds_editor-1.0.0/PKG-INFO +32 -0
- pyeds_editor-1.0.0/README.md +16 -0
- pyeds_editor-1.0.0/pyproject.toml +32 -0
- pyeds_editor-1.0.0/setup.cfg +4 -0
- pyeds_editor-1.0.0/src/pycanopen_editor/__init__.py +1 -0
- pyeds_editor-1.0.0/src/pycanopen_editor/main.py +901 -0
- pyeds_editor-1.0.0/src/pycanopen_editor/object_wizard.py +101 -0
- pyeds_editor-1.0.0/src/pycanopen_editor/pdo_mapper.py +314 -0
- pyeds_editor-1.0.0/src/pycanopen_editor/profiles/301.json +14 -0
- pyeds_editor-1.0.0/src/pycanopen_editor/profiles/401.json +12 -0
- pyeds_editor-1.0.0/src/pycanopen_editor/profiles/402.json +10 -0
- pyeds_editor-1.0.0/src/pycanopen_editor/profiles/406.json +8 -0
- pyeds_editor-1.0.0/src/pycanopen_editor/profiles/442.json +10 -0
- pyeds_editor-1.0.0/src/pyeds_editor.egg-info/PKG-INFO +32 -0
- pyeds_editor-1.0.0/src/pyeds_editor.egg-info/SOURCES.txt +18 -0
- pyeds_editor-1.0.0/src/pyeds_editor.egg-info/dependency_links.txt +1 -0
- pyeds_editor-1.0.0/src/pyeds_editor.egg-info/entry_points.txt +2 -0
- pyeds_editor-1.0.0/src/pyeds_editor.egg-info/requires.txt +1 -0
- pyeds_editor-1.0.0/src/pyeds_editor.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
GNU GENERAL PUBLIC LICENSE
|
|
2
|
+
Version 3, 29 June 2007
|
|
3
|
+
|
|
4
|
+
Copyright (C) 2026 Diego Asanza <f.asanza@gmail.com>
|
|
5
|
+
Everyone is permitted to copy and distribute verbatim copies
|
|
6
|
+
of this license document, but changing it is not allowed.
|
|
7
|
+
|
|
8
|
+
PREAMBLE
|
|
9
|
+
|
|
10
|
+
The GNU General Public License is a free, copyleft license for
|
|
11
|
+
software and other kinds of works.
|
|
12
|
+
|
|
13
|
+
The licenses for most software and other practical works are designed
|
|
14
|
+
to take away your freedom to share and change the works. By contrast,
|
|
15
|
+
the GNU General Public License is intended to guarantee your freedom to
|
|
16
|
+
share and change all versions of a program--to make sure it remains free
|
|
17
|
+
software for all its users. We, the Free Software Foundation, use the
|
|
18
|
+
GNU General Public License for most of our software; it applies also to
|
|
19
|
+
any other work released this way by its authors. You can apply it to
|
|
20
|
+
your programs, too.
|
|
21
|
+
|
|
22
|
+
For the full terms and conditions, see https://www.gnu.org/licenses/gpl-3.0.txt
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyeds-editor
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A modern, cross-platform CANopen EDS editor built with Python and PySide6.
|
|
5
|
+
Author-email: Diego Asanza <f.asanza@gmail.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: Topic :: Scientific/Engineering
|
|
10
|
+
Classifier: Topic :: Software Development :: Embedded Systems
|
|
11
|
+
Requires-Python: >=3.7
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: PySide6>=6.0.0
|
|
15
|
+
Dynamic: license-file
|
|
16
|
+
|
|
17
|
+
# PyCANopen EDS Editor
|
|
18
|
+
|
|
19
|
+
A modern, cross-platform CANopen Electronic Data Sheet (EDS) editor built with Python and PySide6.
|
|
20
|
+
|
|
21
|
+
## Features
|
|
22
|
+
- **Dynamic Profile Injection**: Automatically load CANopen standard profiles (301, 401, 402, 406, 442) from JSON templates.
|
|
23
|
+
- **Dedicated Device Info Forms**: User-friendly UI for editing LSS, Baud Rates, and Device metadata.
|
|
24
|
+
- **Visual PDO Mapper**: Drag-and-drop interface for configuring Transmit and Receive PDO memory layouts safely.
|
|
25
|
+
- **EDS Validation & Linter**: Ensures your EDS is strictly compliant with the CANopen standard.
|
|
26
|
+
- **C-Header Export**: Automatically generates `OD.h` and `OD.c` files with standard structs and routing tables, ready to be dropped into embedded firmware stacks like CANopenNode.
|
|
27
|
+
- **Smart Object Wizard**: Instantly scaffold complex Arrays and Records with multiple sub-indices in a single click.
|
|
28
|
+
- **HTML Report Generation**: Exports your entire Object Dictionary and visual PDO memory maps into a clean, printable HTML document.
|
|
29
|
+
|
|
30
|
+
## License
|
|
31
|
+
This software is licensed under the GPLv3 License.
|
|
32
|
+
Copyright (C) 2026 Diego Asanza
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# PyCANopen EDS Editor
|
|
2
|
+
|
|
3
|
+
A modern, cross-platform CANopen Electronic Data Sheet (EDS) editor built with Python and PySide6.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
- **Dynamic Profile Injection**: Automatically load CANopen standard profiles (301, 401, 402, 406, 442) from JSON templates.
|
|
7
|
+
- **Dedicated Device Info Forms**: User-friendly UI for editing LSS, Baud Rates, and Device metadata.
|
|
8
|
+
- **Visual PDO Mapper**: Drag-and-drop interface for configuring Transmit and Receive PDO memory layouts safely.
|
|
9
|
+
- **EDS Validation & Linter**: Ensures your EDS is strictly compliant with the CANopen standard.
|
|
10
|
+
- **C-Header Export**: Automatically generates `OD.h` and `OD.c` files with standard structs and routing tables, ready to be dropped into embedded firmware stacks like CANopenNode.
|
|
11
|
+
- **Smart Object Wizard**: Instantly scaffold complex Arrays and Records with multiple sub-indices in a single click.
|
|
12
|
+
- **HTML Report Generation**: Exports your entire Object Dictionary and visual PDO memory maps into a clean, printable HTML document.
|
|
13
|
+
|
|
14
|
+
## License
|
|
15
|
+
This software is licensed under the GPLv3 License.
|
|
16
|
+
Copyright (C) 2026 Diego Asanza
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pyeds-editor"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Diego Asanza", email="f.asanza@gmail.com" },
|
|
10
|
+
]
|
|
11
|
+
description = "A modern, cross-platform CANopen EDS editor built with Python and PySide6."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.7"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Topic :: Scientific/Engineering",
|
|
19
|
+
"Topic :: Software Development :: Embedded Systems",
|
|
20
|
+
]
|
|
21
|
+
dependencies = [
|
|
22
|
+
"PySide6>=6.0.0",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.scripts]
|
|
26
|
+
pyeds-editor = "pycanopen_editor.main:run"
|
|
27
|
+
|
|
28
|
+
[tool.setuptools.packages.find]
|
|
29
|
+
where = ["src"]
|
|
30
|
+
|
|
31
|
+
[tool.setuptools.package-data]
|
|
32
|
+
"pycanopen_editor.profiles" = ["*.json"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.0.0"
|