This commit is contained in:
2025-05-24 14:27:46 -04:00
parent 9297c26603
commit 5614dda46f
2 changed files with 13 additions and 4 deletions

View File

@@ -10,44 +10,50 @@
- https://git.bellande-technologies.com/BAMRI/bellande_operating_system_package_manager - https://git.bellande-technologies.com/BAMRI/bellande_operating_system_package_manager
- https://github.com/Architecture-Mechanism/bellande_operating_system_package_manager - https://github.com/Architecture-Mechanism/bellande_operating_system_package_manager
- https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellande_operating_system_package_manager - https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellande_operating_system_package_manager
- https://bitbucket.org/Bellande-Architecture-Mechanism/bellande_operating_system_package_manager
## BRSOA File Format ## BRSOA File Format
- https://git.bellande-technologies.com/BAMRI/bellande_format - https://git.bellande-technologies.com/BAMRI/bellande_format
- https://github.com/Architecture-Mechanism/bellande_format - https://github.com/Architecture-Mechanism/bellande_format
- https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellande_format - https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellande_format
- https://bitbucket.org/Bellande-Architecture-Mechanism/bellande_format
## BRSOA Scripting Language ## BRSOA Scripting Language
- https://git.bellande-technologies.com/BAMRI/bellos - https://git.bellande-technologies.com/BAMRI/bellos
- https://github.com/Architecture-Mechanism/bellos - https://github.com/Architecture-Mechanism/bellos
- https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellos - https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellos
- https://bitbucket.org/Bellande-Architecture-Mechanism/bellos
## BRSOA Scripting Language Installer ## BRSOA Scripting Language Installer
- https://git.bellande-technologies.com/BAMRI/bellos_installer - https://git.bellande-technologies.com/BAMRI/bellos_installer
- https://github.com/Architecture-Mechanism/bellos_installer - https://github.com/Architecture-Mechanism/bellos_installer
- https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellos_installer - https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellos_installer
- https://bitbucket.org/Bellande-Architecture-Mechanism/bellos_installer
## BRSOA Programming Language ## BRSOA Programming Language
- https://git.bellande-technologies.com/BAMRI/bellronos - https://git.bellande-technologies.com/BAMRI/bellronos
- https://github.com/Architecture-Mechanism/bellronos - https://github.com/Architecture-Mechanism/bellronos
- https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellronos - https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellronos
- https://bitbucket.org/Bellande-Architecture-Mechanism/bellronos
## BRSOA Programming Language Installer ## BRSOA Programming Language Installer
- https://git.bellande-technologies.com/BAMRI/bellronos_installer - https://git.bellande-technologies.com/BAMRI/bellronos_installer
- https://github.com/Architecture-Mechanism/bellronos_installer - https://github.com/Architecture-Mechanism/bellronos_installer
- https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellronos_installer - https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellronos_installer
- https://bitbucket.org/Bellande-Architecture-Mechanism/bellronos_installer
## BRSOA Bellande Mesh Sync System ## BRSOA Bellande Mesh Sync System
- https://git.bellande-technologies.com/BAMRI/bellande_mesh_sync - https://git.bellande-technologies.com/BAMRI/bellande_mesh_sync
- https://github.com/Architecture-Mechanism/bellande_mesh_sync - https://github.com/Architecture-Mechanism/bellande_mesh_sync
- https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellande_mesh_sync - https://gitlab.com/Bellande-Architecture-Mechanism-Research-Innovation/bellande_mesh_sync
- https://bitbucket.org/Bellande-Architecture-Mechanism/bellande_mesh_sync
## BRSOA Artificial Intelligence Framework ## BRSOA Artificial Intelligence Framework
- https://git.bellande-technologies.com/BAICVRI/bellande_artificial_intelligence_framework - https://git.bellande-technologies.com/BAICVRI/bellande_artificial_intelligence_framework
- https://github.com/Artificial-Intelligence-Computer-Vision/bellande_artificial_intelligence_framework - https://github.com/Artificial-Intelligence-Computer-Vision/bellande_artificial_intelligence_framework
- https://gitlab.com/Bellande-Artificial-Intelligence-Computer-Vision-Research-Innovation/bellande_artificial_intelligence_framework - https://gitlab.com/Bellande-Artificial-Intelligence-Computer-Vision-Research-Innovation/bellande_artificial_intelligence_framework
- https://bitbucket.org/Bellande-Artificial-Intelligence-Computer-Vision/bellande_artificial_intelligence_framework
## Publication to be Release Soon
-
## License ## License
This Bellande Robotic System Operating Architecture(BRSOA) is distributed under the [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/), see [LICENSE](https://github.com/Robotics-Sensors/bellande_robotic_system_operating_architecture/blob/main/LICENSE) and [NOTICE](https://github.com/Robotics-Sensors/bellande_robotic_system_operating_architecture/blob/main/LICENSE) for more information. This Bellande Robotic System Operating Architecture(BRSOA) is distributed under the [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/), see [LICENSE](https://github.com/Robotics-Sensors/bellande_robotic_system_operating_architecture/blob/main/LICENSE) and [NOTICE](https://github.com/Robotics-Sensors/bellande_robotic_system_operating_architecture/blob/main/LICENSE) for more information.

View File

@@ -16,7 +16,7 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# Will later be programming bellronos # Will later be programming bellronos
def create_example_lua_config_file(filename="brsoa_system_config.lua"): def create_lua_config_file(filename="brsoa_system_config.lua"):
""" """
Creates an example Lua configuration file for a robot system with generic settings. Creates an example Lua configuration file for a robot system with generic settings.
@@ -121,9 +121,12 @@ parameters = {
return False return False
def create_bellande_config_file():
pass
if __name__ == "__main__": if __name__ == "__main__":
# Create the example Lua configuration file # Create the example Lua configuration file
success = create_example_lua_config_file() success = create_lua_config_file()
if success: if success:
print("Example configuration file creation completed.") print("Example configuration file creation completed.")