Projects
- Firmware development for industrial vacuum cleaner robot NR-1500
- Website created for naraart-design.com
- Firmware for a new generation of devices
- Bootware for a new servo amplifier generation with multicore controller
- IPC with safety option card
- Document templates for the company's internal Functional Safety development process
- EtherCAT to CAN gateway - multi-axis
- Concept and driver base for OLED display driver
- EtherCAT to CAN converter for ECOCOMPACT
- Establishment of the Profinet fieldbus driver including the ProfiDrive drive profile
- Expand EtherCAT driver for multi-axis devices
- Development of an EtherCAT fieldbus driver for the ECOVARIO device family
Firmware Development for Industrial Vacuum Robot NR-1500
From August 2023 to December 2024
Role: Embedded Software Engineer
In this project, I supported the firmware development of a vacuum robot for industrial applications. I joined the project relatively late to troubleshoot critical errors and help improve the overall system's availability. The robot's development was already advanced, but the software did not yet meet the desired device behavior necessary for the product launch.
The company I worked for followed an agile approach in product development. Topics were discussed live during daily meetings, and the planning of the next sprint (a two-week period) was carried out during planning sessions. In the later stages of the project, the focus shifted to resolving bugs and undesirable behavior identified during product testing. At this stage, planning sessions were paused, and critical issues identified during tests were discussed and resolved in daily meetings. Once a quarter, a stage-planning session was held to gain a better understanding of the product strategy and business goals.
I stabilized the update process of the sMCU controllers during firmware
updates, making it robust enough to prevent device failures caused by
corrupted firmware.
I improved the system's availability by enhancing the device's behavior
when detecting a fall edge. Previously, direct user interaction was
required to continue the cleaning process. I modified the device
behavior so that the robot first measures whether the fall conditions
still exist. If not, the safety system allowed cleaning to resume
automatically.
Tasks were clearly defined and documented through a ticketing system, ensuring clear follow-up.
My responsibilities included:
- Investigating and fixing issues in I2C communication between the real-time controller and the safety controller
- Implementing an interface for calibrating the drop sensors located underneath the robot
- Extracting register values from safety controllers during safety events via I2C and providing this information in Markdown table format in the Linux system journal
- Optimizing the startup sequence of systemd services to ensure error-free and reliable system startup under different conditions
- Adjusting various service description files
- Creating Bash scripts to control device behavior for various lab tests and measurements
- Optimizing the existing script that controls the firmware update process for safety controllers
- Analyzing large journal logs to identify specific errors described and provided in tickets by QA
- Coordinating with Chinese manufacturers to resolve issues during the update process of newly manufactured devices
- Developing test software for safety controllers to increase device availability
- Discussing and implementing improvements to existing safety functions
- Creating unit tests based on the Google Test framework
- Creating device tests in Python and integrating the test cases into the Robot Framework
Website created for naraart-design.com
From July 2023 to August 2023
The goal of the project was to redesign my wife's existing web presence.
The website for Nanaart-Design needed a fresh look. It was important to my
wife that the website should be modern and unique. When creating the website,
I deliberately avoided using ready-made CMS systems to meet the requirement
for a custom design.
This approach ensured full flexibility in the design and functionality of
the website. For the implementation of the project, I focused on using the
four fundamental technologies of web development.
Technologies used for the website:
- HTML for describing the content
- CSS for styling the website
- JavaScript for controlling interactive elements on the website
- PHP for dynamic content management
The basic design of the website consists of three parts: a header, a footer,
and a main section. The header and footer remain consistent across all pages.
To avoid duplicated code, I decided to create a base page that represents all
three sections. Depending on the page the user is on, the main section is
dynamically loaded.
This ensures that any changes to the header or footer are reflected on all pages.
The responsive design of the website was implemented using CSS. Once a certain screen width is reached, the website is displayed appropriately for mobile devices. The site elements dynamically adjust to the window width.
Media content, such as graphics, images, and videos, is stored separately from the website's code. This primarily saves space in code management and during website uploads. Media content is accessed via a separate URL, allowing easy updates without modifying the website's source code.
Firmware for a New Device Generation
From March 2021 to June 2023
Role: Product Owner, Scrum Developer
The goal of this project was to develop firmware for a new device generation with a multicore CPU as the central unit.
Additionally, a concept needed to be developed for exchanging information between cores and determining which runtime-critical information must be provided in shared RAM between the two C28x cores. My tasks included managing the entire firmware project as a Scrum Product Owner. In this role, I maintained the backlog with tasks and prioritized individual features, which were considered during sprint planning. Alongside my role as Product Owner, I also acted as a Developer and handled specific tasks myself.
Among other things, I developed the base driver for interprocessor communication. My driver provided methods that allowed other developers to implement their own IPC services (interprocessor communication services). My previously developed SDO handler was used to route SDO requests to the correct CPU. My philosophy is to store data where it is needed and to avoid duplicate data storage as much as possible.
In my role as Developer, I also implemented the following:
- Blackchannel implementation for the integrated safety options card to facilitate cyclical safety data exchange between the secure fieldbus and the safety options card.
- SPI driver for multiple IO expander chips.
- Routine for cyclically reading and writing the states of the extended IO expander chips.
- IPC services for loading and storing non-volatile parameters in an EEPROM managed by a CPU.
- EtherCAT driver, including cyclic process data exchange between the cores and the fieldbus.
- FSoE implementation in the firmware for translating safe parameter requests to the safety options card USB driver.
Bootware for a New Servo Amplifier Generation with Multicore Controller
From February 2020 to March 2021
Role: Project Manager and Embedded Software Engineer
The goal of this project was to develop bootware for a new multicore controller from the TMS family by Texas Instruments.
This processor features two C28x DSP cores and an ARM Cortex M4 core. Each core has its own internal program flash, which can only be programmed by its respective core. Essentially, the bootware project consists of three firmware projects that make up the bootloader.
The main firmware runs on the master core (CPU1). This core starts first and must distribute the bootware to the other cores via the internal message RAM and then initialize their startup. Since the entire bootware project would have occupied too much program flash on CPU1, parts of the bootware were stored in external data flash. The critical startup code occupies only two flash sectors and loads the missing program parts from external flash into the CPU RAM.
The startup code for the respective co-CPUs is then loaded into the message RAMs, and the cores are initialized. Once started, these cores request their missing program parts from CPU1 via interprocessor communication. CPU1 retrieves these parts from the external data flash and provides them to the respective core.
This controller startup sequence requires sophisticated mapping of various firmware components in the respective linker files to ensure no program parts are executed before being loaded from external data flash into the RAM.
Driver for Internal Communication with an Integrated Safety Options Card
From January 2019 to January 2020
Role: Software Project Manager and Embedded Software Engineer
A new safety options card was to be integrated into the servo amplifier. The communication interface between the FS card and the firmware consisted of a UART and a protocol specification that was provided. My task was to implement the communication driver for the FS card based on the interface specification.
The challenge was to implement interface objects based on CANOpen. Corresponding callback methods were implemented behind these objects, which translated the object IDs into parameters understandable by the FS card.
Furthermore, the existing SDO handler had to be extended so that requests could not directly deliver a result, as the FS card's response had to be awaited to send an appropriate SDO response to the client. For this, the existing and proven implementation of the SDO handler had to be completely redeveloped, as extending the old implementation was not feasible.
Document Templates for the In-House Functional Safety Development Process
From May 2018 to November 2018
Role: Functional Safety Engineer
After receiving my certification as a "Functional Safety Certified Engineer Development" from TüV Nord, I was tasked with creating the necessary templates for documenting a safety-oriented development process. I created a document overview in Excel and developed the required document templates for the development process according to DIN 61508. This document set serves as a basis for every FS development. I recommended using Git for versioning the document set in each development project.
To support development engineers in the safety development framework, I implemented various assistance tools within the documents and the document overview using VBA.
EtherCAT to CAN Gateway - Multiaxes
From May 2017 to May 2018
Role: Project Manager, Embedded Software Engineer
This project involved extending the existing EtherCAT to CAN gateway, which was already used as an option card for compact drives, to support multi-axis operation. With this gateway, it is possible to connect all of the customer's CANOpen devices to the EtherCAT fieldbus and operate them in real-time with cycle times of up to 1 ms.
The ESI file determined how many device axes could be found on the CAN interface. The maximum number of supported CAN nodes was limited to four for performance reasons. For a three-axis variant, cycle times of up to 1 ms were achieved. The four-axis variant achieved cycle times of up to 2 ms.
Concept and Driver Basis for OLED Display Driver
From July 2016 to April 2017
Role: Embedded Software Engineer
For a new generation of drive controllers, an OLED display was to be implemented to show the device status directly on the servo amplifier. The task in this project was to bring a prototype of the display into operation and develop an initial driver to control the display.
I deepened my understanding of how OLED displays are controlled at the hardware level. The requirements of the display controller and the implementation of electrical signals played a significant role. Additionally, I learned how to generate bitmaps for various fonts. This process included selecting suitable fonts and converting them into a format readable by the display.
The TI-DSP on which this driver ran has a minimum memory unit of 16-bit. To save memory, I wrote a corresponding VB script that compresses a font's bitmap into a 16-bit format. Another important aspect of the project was working with the specification for controlling the display via SPI. I gained deep insights into the interplay between timing, data format, and the specific requirements of OLED display control.
EtherCAT to CAN Converter for ECOCOMPACT
From February 2015 to June 2016
Role: Software Project Manager
To connect a compact drive to the EtherCAT fieldbus, an extension board was developed, which was internally connected to the compact drive via a CAN bus.
My task was to write the firmware for this option card. For the first time, the EtherCAT ASIC was connected to the microcontroller via SPI. A challenge was to reprogram my EtherCAT driver to meet the requirements using the SPI interface. Additionally, the firmware had to ensure timely distribution of process data. The fieldbus process data needed to be transmitted via CAN telegrams to the drive, and the drive's process data had to be received in time to be sent via EtherCAT. A cycle time of 1 ms was achieved.
I gained new experience in bootware development during this project. One of my tasks was to develop the bootloader for this option card to ensure software updates could be performed without dismantling the entire device.
Establishment of the Profinet Fieldbus Driver Including the ProfiDrive Profile
From September 2012 to February 2015
Role: Project Manager and Embedded Software Engineer
During this period, the customer's multi-axis devices were enhanced with the Profinet fieldbus driver. At the same time, the ProfiDrive drive profile was implemented. We were a team of two experienced software developers and achieved our goals quickly through close collaboration. The project was successfully completed with certification in an accredited test laboratory in Erlangen.
Extending EtherCAT Driver for Multi-Axis Devices
From October 2011 to August 2012
Role: Embedded Software Engineer
The goal of this project was to adapt the existing EtherCAT driver to the customer's multi-axis platform. The challenge was to design the driver to support multiple axes. This required the development of a proprietary VoE protocol in addition to the existing CoE mailbox protocol. These adjustments were implemented by me in the firmware and in the communication.dll on the PC side. Additionally, an axis switch object was introduced, allowing the manufacturer's specific objects to be accessed in any EtherCAT master system.
Development of an EtherCAT Fieldbus Driver for the ECOVARIO Device Family
From September 2010 to September 2011
Role: Embedded Software Engineer
My task was to extend the existing device driver in the ECOVARIO family so that it passed the EtherCAT conformance test. Additionally, I reduced the communication cycles for synchronous process data exchange from 1 ms to 250 µs. During this work, I gained my first experience with Texas Instruments DSPs.