Posts

Showing posts from July, 2021

Embedded system simulations using tessim

Image
 Tessim is an in-development software project to enable scalable and efficient simulations of embedded systems. The aim of this tool is to allow  hardware engineers, embedded software engineers and systems engineers to work in the same environment while designing and developing a product.  In this post I will give an example of how this can be used. Currently the software is in the form of a shared library file that can be used with python. The python library file, (python_cli_interface.py) acts as a way to call the functions and objects of the library, thus acting as a user interface, that can be used in the python command line. In this blog I will demonstrate how this library can be used by taking an example of a motor  being controller by an atmega328p.  to start open the python3 cli :  :~$ python3 Python 3.8.5 (default, May 27 2021, 13:30:53)  [GCC 9.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>...