Dependency Management in Embedded Systems | Conan and Zephyr RTOS
As embedded systems grow more connected and feature-rich, managing dependencies has become a pain for developers.

Streamlining Dependency Management in Embedded Systems with Conan and Zephyr RTOS

Introduction

As embedded systems grow more connected and feature-rich, managing dependencies has become a pain for developers. Traditional practices often involve manually copying library files, relying on vendor-specific IDEs and customizing toolchains per project—an error-prone and time-consuming approach.

As firmware stacks grow increasingly complex, development teams must balance the demands of cross-compilation, multiple target architectures and modern CI/CD integration. Achieving reproducibility and portability across environments is difficult, especially when toolchain versions drift or dependencies are not perfectly aligned.

Manual integration steps further slow down workflows and increase the risk of inconsistencies, while constrained resources on build servers can quickly turn routine builds into bottlenecks. These challenges make onboarding new developers harder as well as maintaining long-term reliability more costly. A modern approach is needed—one that ensures consistency, scalability, and automation without sacrificing performance.

Meet Conan: A Modern C/C++ Package Manager

Conan brings the elegance of package management to the C/C++ world. Tailored for developers working across platforms, it solves problems like:

  • Dependency version mismatches
  • Fragile manual builds
  • Poor reproducibility across CI environments
  • Limited reusability of firmware components

Key Conan Features for Embedded Developers

  • Build/Host Profile Separation for cross-compilation
  • Toolchain Packaging for consistent builds
  • Binary Caching and Lockfiles for reproducible releases
  • Custom Remotes (e.g. Artifactory) for secure package hosting
  • Easy versioning options

Synergy with Zephyr RTOS

Zephyr is a modular, scalable RTOS ideal for microcontrollers and constrained devices. Developers building on Zephyr can use Conan to:

  • Package the Zephyr SDK as a Conan toolchain
  • Manage third-party libraries (e.g. FreeRTOS modules, drivers)
  • Break firmware into reusable Conan packages
  • Integrate with CMake and West in CI pipelines
  • Improve maintainability across board variants and architectures


This setup allows teams to build portable firmware across Cortex-M, x86 and RISC-V targets, all without sacrificing control or flexibility. By combining Conan’s package management with Zephyr’s modular RTOS, developers gain control over the full dependency graph—from third-party libraries to toolchains and platform overlays. Whether you’re scaling firmware across multiple boards or optimizing CI pipelines, this combo empowers teams to build robust, portable software with confidence.

So, let’s get right into it.

Concept Check

What is Zephyr RTOS?

  • Lightweight, scalable, real-time operating system
  • Modular architecture and support for multiple boards
  • Uses CMake and West for build and dependency management

What is Conan?

  • Recipe-based package manager for C/C++
  • Handles dependencies, toolchains, and build configurations
  • Supports cross-compilation and caching for reproducible builds

 

If we integrate Zephyr with Conan, it helps us to

  • Simplify third-party dependency management
  • Enable reproducible builds across environments
  • Support out-of-tree development and modular packaging
  • Reduce manual configuration of toolchains and host tools

 

Zephyr supports both in-tree and out-of-tree application models, each with distinct build setups. In-tree apps reside within Zephyr’s source tree, offering simplicity but limited reuse and packaging flexibility.

Out-of-tree builds, however, allow developers to maintain applications externally, enabling easier modularization, versioning, and integration with tools like Conan for dependency management. 

For multi-domain projects, Zephyr’s sysbuild system streamlines building multiple firmware components—such as bootloaders, kernels, and user apps—in one coordinated process. Conan complements this by managing dependencies across domains, packaging toolchains and subsystems to simplify complex embedded builds.

Packing Zephyr with Conan

1. Resources

  • Please clone the following Git repo to recreate the example, you can find them in conan-with-zephyr-RTOS.git
  • Inside the cloned repo, you can find the folders arranged in the following manner
Fig 1

This will help you in directly trying out the examples that we’re going to discuss further.

2. Prerequisites

  • The system should have,
    • Python 3.6+
    • CMake
    • Git
  • Create python virtual env for safe and smooth executions and pkg creation for Conan.
Fig 2
  • After creating the venv install
      • West (pip install west)
      • Conan (pip install conan)

3. Initial Setup

  • When working with Conan for the first time, you will be prompted to set up a profile to proceed. This is a one-time process. For setting the profile use:
Fig 3
  • This will identify your native compiler and other system specific things like the OS you’re working on, the build options, etc. You can view the profile by:
Fig 4

4. Packing the Zephyr SDK

  • The Zephyr SDK folder structure will look like this:
  • This is a static folder, since it won’t have many updates other than the native updates from the respective compilers. Still, we can pack the tools only required by our project, which will give us the flexibility to work with them easily and update them in no time.
      • For eg : like zephyr-arm-eabi for arm specific cores

    • The Zephyr SDK is typically identified by a Zephyr build through the ‘ZEPHYR_SDK_INSTALL_DIR’ environment variable.
    • If this variable isn’t set, the build process will search for the SDK in some of the predefined directories, such as the home directory or root directory, like that.
    • In our case, the SDK is usually cloned into the source directory or package (The Conan cache) directory where it will be packaged.
    • After packing the SDK, we utilize the ‘ZEPHYR_SDK_INSTALL_DIR’ environment variable to retrieve the Conan Zephyr SDK for Zephyr Build.
    • For packing the SDK, we need one conanfile,py, which will take care of the:
      • Package dependencies
      • Package layout
      • SDK download directory
      • OS specific packing
      • Package creation and info
    • Inside the cloned repo you could find conanfile.py inside the conan-with-zephyr-RTOS/package/pack-sdk” folder
    • The zephyr SDK tgz file approx. 1.6GB which may cause some issues while downloading if the network connection is not stable it can be disconnected, and you will be forced to do that multiple time. We have two conanfile.py available inside the pack-sdk folder for both scenarios.
      • conanfile.py
        • This Conan file will download and pack the SDK, no intervention needed.
      • altconanfile.py
        • This Conan file need the SDK to be downloaded and unzipped in the same path (pack-sdk)
        • Please refer to the README.rst for more info on this approach.
        • Now run the pack SDK command which will pack it from the current path rather than downloading and packing
Fig 6
  • The above command will create the Conan package for Zephyr SDK. Once the package is created, we can list the created package as well as available package inside conan cache using:
Fig 8
  • NB: If the packing fails before repacking it every time, please list the created package from cache and remove the corresponding package you’re trying to re-pack if that package has already been created in the conan cache. You can do that by:
Fig 9

5. Packing the Zephyr Base

  • The process for packing the Zephyr Base is almost similar to the Zephyr SDK.
  • The Zephyr Base folder will look like this:
Fig 10
  • For this example, we are considering the entire Zephyr Base as a single package; this is a stiff mode of approaching. Since we package every module and base inside a single package that’ll be kind of stiff, if we need to update the base then it’ll again take the same time as creating the first one.
  • We can also create different packages for each subfolder inside the source like zephyr, modules, and tools like that. That’ll give us more flexibility. By packing it like this we keep the size of the package minimal and keep the updating time for any changes to minimal.
  • There is one more approach that we can follow to keep the update minimal, i.e., we can create one git repo maintaining the Zephyr base code for the specific project and pull that whenever an update is necessary and pack that, this can be easily added into the already excising conanfile using the conandata.yml file.
  • The Zephyr Base is typically identified by a Zephyr build through the ‘ZEPHYR_BASE’ environment variable.
  • If the env variable is not set, then it will look for a similar name in the root directory. That is found with the help of .west file Usually present inside the Source.
  • In our case, the Zephyr Base is usually cloned into the source directory or package (The Conan cache) directory where it will be packaged.
  • After packing the Zephyr Base, we utilize the ‘ZEPHYR_BASE’ environment variable to retrieve the Conan Zephyr Base for Zephyr Build from the Conan cache.
  • The conanfile.py will be present inside the conan-with-zehyr-RTOS/package/pack-base/” folder.
  • Usually, the zephyr base doesn’t a download issue like Zephyr SDK, and runs the pack Base command

The above command will create the Conan package for Zephyr Base. Once the package is created, we can list the created package as well as available package inside conan cache using:

Fig 12
  • NB: If somehow the packing fails before repacking it every time, please list the created package from cache and remove the corresponding package you’re trying to re-pack if that package has already been created in the conan cache. You can do that by:

6. Final Check

  • If you’re able to do the above steps successfully, we’re good to go consuming those new packages created.
  • To verify everything is in place, please run:
Fig 15

It should list all the packages inside your conan cache, which should be as follow:

Fig 16

NB: These commands alone can’t guarantee that packing is completed. Make sure the packing process doesn’t show any errors. If any errors should occur, clear the package from the cache using a Conan command and try packing again.

Consuming the Zephyr Conan Packages from a Sample App

  • Now that we have the required packages ready, we can test it out in one sample application to verify that, here I’m taking the official blinky example from the Zephyr repo. The folder structure is very important for any Zephyr Sample to get a clean build. Keep that in mind whenever you try a new sample.
  • Inside the cloned repo you could see two more folders named multicore-build and singlecore-build. The rest of the things you can try directly from there.

1. Multicore-Build (With West)

Fig 17
  • Here, you can see the core two core names core 0 & core 1 having one Blinky example each, which also has one conanfile.py inside each blinky sample and one main conanfile.py inside the multicore-build itself.
  • We can focus on the root conanfile.py for the time begin which will take care of the multicore build and should take care of,
    • The dependencies
    • The build target
    • The way of building projects
    • The way of handling the build and output folder
  • For this example, we’re considering the “stm32f3_disco” core [stm32 f303 – Discovery kit].
  • You can go to the multicore-build folder and run the following to start checking for the dependencies
Fig 18
  • You should see the requires are fetched from the cache successfully like this:
  • NB: The name of the package will be different when you’re trying, you can see the package name from conan cache using the “conan list” command and update the same inside the conanfile.py
Fig 20
  • Now we can build the sample using
Fig 21
  • Once completed you will see two elf images created for each core present inside the out/ folder.
    • Tips: you can edit the conanfile.py add other important files like the map file etc. To the out folder as your requirements. It is just a copy function inside a python file.
    • The respective build will be present inside the build folder
  • This example uses the West command itself to build the project inside the conanfile.py
Fig 22
  • Yeah, so now this is multicore build with Conan using West commands

Now a question may arise: by this time, you would be thinking I already said we need to set some environment variables to make this work, right?

Conan will take care of that internally, if you look inside the conan package file for Zephyr base and SDK on the last lines you’ll be able to see the package info been set, that will populate the conanbuild.sh inside the build/generators which will source this before building the project. Pretty cool, right?!

    • The conanfile inside each core folder has its own specific build command present try it out,
      Hint : The commands are the same!

2. Singlecore-Build (Without West)

  • We’ve already seen the build with West from above, so this is a bonus topic. We can build the same without West. What West is doing behind the hood is running some CMake commands and Ninja command, guess what we can also do that directly that will be explained inside this section.
  • You can go to the zephyr-conan/singlecore-build/ folder from the cloned git repo. If you look inside the build method instead of using West commands, we have used the CMake build commands.
  • This approach comes with a trade of easiness, because we need to manually give every module that are required for that specific core to build, like in case of stm32
    • modules/hal/stm32
    • modules/hal/cmsis
  • This will vary according to the board in use, this will give us more control over the build than West So, it’ll be good to do some experiments on this.
  • The build process is the same:
Fig 23
  • The elf will be created inside the build/zephyr folder
  • You can refer more about this from : Build System (CMake)

Updating Packages

  • You can always update the SDK and Zephyr Base version from the conanfile, and repack it. You can edit it as follows,
  • For Zephyr SDK
Fig 24
  • For Zephyr Base

For Zephyr base, you should also update the conandata.yml to update the branch.

Conan Server

  • To preserve all the packages, we’ve created and share them with the team and other members, we’ll use the Conan Server.
  • Conan Server is a lightweight, open-source remote repository implementation.
  • It’s mainly used for testing or small teams, not recommended for production-scale use.
  •  

Installed via pip:

    • Runs locally on port 9300 and stores packages in a simple directory structure. We can also inspect those from the home directory.


    Conan Serve comes in handy when we’re working in a collaborative development team,

    1. Centralized Package Hosting
    • Teams can upload and share packages to a central Conan server or remote (like Artifactory).
    • Ensures everyone uses the same dependency versions and configurations.

    2. Version Control & Lockfiles
    • Use lock files to freeze dependency graphs.
    • Share lockfiles via Git to guarantee reproducible builds across machin

    3. CI/CD Integration
    • Conan integrates with CI tools like GitHub Actions, GitLab CI, Jenkins.
    • Automates package creation, testing, and deployment.

    4. Recipe Hygiene
    • Modular conanfile.py recipes help teams maintain clean, reusable logic.
    • Use tool_requires for build tools and isolate build vs host dependencies.


    The Conan Server offers us the ability to upload our created packages onto the server and maintain them. This way, others can download the same packages from the server, making contributions and collaboration easier. We can host one server by starting one Conan server as mentioned at the start of this section. Once started you can see the server will look like,

You can list already existing remote using:

Fig 28

Now you can upload the package created to this server using,

Now you can set security to this server by adding restriction to read and write to this server, you can explore that more on the Conan Server official documentation.

More Integrations

Since Zephyr top-level building settings was based on CMake, we’ve used the Conan integrated CMake examples above, Other than that conan offers the flexibility of integrating much wide range of toolchain like,

CMake Integration

  • Conan 2.x (CMakeToolchain + CMakeDeps):
    • Auto-generates toolchain and dependency files 
    • Clean integration with find_package() and targets
    • Best for modern workflows
  • cmake-conan (legacy):
    • Invokes Conan inside CMakeLists.txt
    • Useful for projects not yet migrated to Conan 2

Ninja Integration

  • Super-fast parallel builds
  • Set generator via config:
Fig 31
  • Works seamlessly with Conan presets

Make Integration

  • Use with Unix Makefiles generator
  • Slower than Ninja but widely supported

ROS Integration (ROS2)

  • Use the ROSEnv generator in conanfile
  • Source ROS and Conan env scripts:
Fig 33
  • Build with colcon

Other Features

1. Freezing the conanfile (Version Pinning)

To ensure consistent builds across machines and time:

Pin exact versions in your conanfile.txt or conanfile.py:

  • Avoid using version ranges like fmt/[>=9.0 <11.0] unless necessary.
  • Use lockfiles to freeze the full dependency graph:
Fig 35
  • Share the lock file with your team to guarantee reproducibility.
2. Reproducible Builds

Conan supports reproducibility through:

Profiles: Define consistent settings (OS, compiler, arch, etc.)

Fig 36
  • Toolchain files: Generated by CMakeToolchain to ensure consistent build flags.
  • Lockfiles: Capture exact versions and options of all dependencies.
  • Immutable remotes: Use read-only artifact storage to prevent accidental overwrites.
3. Recreating Error Scenarios

To simulate or reproduce build failures:

Use –build=missing to force local builds and expose compiler issues:
 conan install . –build=missing

  • Use –build=* to rebuild everything from source.
  • Modify profiles to test edge cases (e.g., unsupported compilers or architectures).

Use conan graph to inspect and manipulate dependency trees:

Fig 37

A typical graph will look like this, showing all the dependencies,

Fig 38
4. Modular & Maintainable Recipes

Best practices for recipe hygiene:

  • Split logic into reusable py classes or templates.
  • Use tool_requires for build tools like CMake, Ninja, etc.
  • Keep options and settings minimal and well-documented.
  • Use package_info() to expose only necessary targets and paths.

 

5. Remote Artifact Storage for Teams

To collaborate effectively:

  • Use a Conan server, Artifactory, or Conan-compatible remote.
  • This is already discussed inside Conan Server Section

Further Experiments

You can try out much more out of this, what we’ve done is a small leap. some of them are,

  • Making the Conan Server integrated with git so that we can pull the source also from there.
  • Protecting Conan Server such that it can be shared among multiple users with multiple permission states.
  • Packing the Zephyr Base as separate packages, in that case you need to create one common package that will keep track of all the fragmented packages and can pull it together from the cache.
  • Add option to flash the sample from conanfile itself, using profile options
  • Same with debug as well.

Conclusion

Incorporating Conan into Zephyr RTOS build offers a robust, scalable, and reproducible approach to dependency management in embedded systems. With Conan’s modular recipe system, version pinning, and lockfile capabilities, teams can consistently reproduce builds across different environments, CI pipelines, and hardware configurations. This approach helps reduce integration overhead and simplifies dependency resolution—especially important in constrained embedded contexts where build determinism and stability are critical.

By leveraging Conan’s toolchain integration, remote artifact storage, and collaboration-friendly ecosystem, teams working on Zephyr-based projects gain enhanced control over third-party libraries and build tools, while aligning with modern DevOps and continuous integration practices. The result is a system that promotes maintainability, traceability, and scalability—without compromising performance or flexibility.

References

Scroll to Top

Human Pose Detection & Classification

Some Buildings in a city

Features:

  • Suitable for real time detection on edge devices
  • Detects human pose / key points and recognizes movement / behavior
  • Light weight deep learning models with good accuracy and performance

Target Markets:

  • Patient Monitoring in Hospitals
  • Surveillance
  • Sports/Exercise Pose Estimation
  • Retail Analytics

OCR / Pattern Recognition

Some Buildings in a city

Use cases :

  • Analog dial reading
  • Digital meter reading
  • Label recognition
  • Document OCR

Highlights :

  • Configurable for text or pattern recognition
  • Simultaneous Analog and Digital Dial reading
  • Lightweight implementation

Behavior Monitoring

Some Buildings in a city

Use cases :

  • Fall Detection
  • Social Distancing

Highlights :

  • Can define region of interest to monitor
  • Multi-subject monitoring
  • Multi-camera monitoring
  • Alarm triggers

Attire & PPE Detection

Some Buildings in a city

Use cases :

  • PPE Checks
  • Disallowed attire checks

Use cases :

  • Non-intrusive adherence checks
  • Customizable attire checks
  • Post-deployment trainable

 

Request for Video





    Real Time Color Detection​

    Use cases :

    • Machine vision applications such as color sorter or food defect detection

    Highlights :

    • Color detection algorithm with real time performance
    • Detects as close to human vison as possible including color shade discrimination
    • GPGPU based algorithm on NVIDIA CUDA and Snapdragon Adreno GPU
    • Extremely low latency (a few 10s of milliseconds) for detection
    • Portable onto different hardware platforms

    Missing Artifact Detection

    Use cases :

    • Detection of missing components during various stages of manufacturing of industrial parts
    • Examples include : missing nuts and bolts, missing ridges, missing grooves on plastic and metal blocks

    Highlights :

    • Custom neural network and algorithms to achieve high accuracy and inference speed
    • Single-pass detection of many categories of missing artifacts
    • In-field trainable neural networks with dynamic addition of new artifact categories
    • Implementation using low cost cameras and not expensive machine-vision cameras
    • Learning via the use of minimal training sets
    • Options to implement the neural network on GPU or CPU based systems

    Real Time Manufacturing Line Inspection

    Use cases :

    • Detection of defects on the surface of manufactured goods (metal, plastic, glass, food, etc.)
    • Can be integrated into the overall automated QA infrastructure on an assembly line.

    Highlights :

    • Custom neural network and algorithms to achieve high accuracy and inference speed
    • Use of consumer or industrial grade cameras
    • Requires only a few hundred images during the training phase
    • Supports incremental training of the neural network with data augmentation
    • Allows implementation on low cost GPU or CPU based platforms

    Ground Based Infrastructure analytics

    Some Buildings in a city

    Use cases :

    • Rail tracks (public transport, mining, etc.)
    • Highways
    • Tunnels

    Highlights :

    • Analysis of video and images from 2D & 3D RGB camera sensors
    • Multi sensor support (X-ray, thermal, radar, etc.)
    • Detection of anomalies in peripheral areas of core infrastructure (Ex: vegetation or stones near rail tracks)

    Aerial Analytics

    Use cases :

    • Rail track defect detection
    • Tower defect detection: Structural analysis of Power
      transmission towers
    • infrastructure mapping

    Highlights :

    • Defect detection from a distance
    • Non-intrusive
    • Automatic video capture with perfectly centered ROI
    • No manual intervention is required by a pilot for
      camera positioning

    SANJAY JAYAKUMAR

    Co-founder & CEO

     

    Founder and Managing director of Ignitarium, Sanjay has been responsible for defining Ignitarium’s core values, which encompass the organisation’s approach towards clients, partners, and all internal stakeholders, and in establishing an innovation and value-driven organisational culture.

     

    Prior to founding Ignitarium in 2012, Sanjay spent the initial 22 years of his career with the VLSI and Systems Business unit at Wipro Technologies. In his formative years, Sanjay worked in diverse engineering roles in Electronic hardware design, ASIC design, and custom library development. Sanjay later handled a flagship – multi-million dollar, 600-engineer strong – Semiconductor & Embedded account owning complete Delivery and Business responsibility.

     

    Sanjay graduated in Electronics and Communication Engineering from College of Engineering, Trivandrum, and has a Postgraduate degree in Microelectronics from BITS Pilani.

     

    Request Free Demo




      RAMESH EMANI Board Member

      RAMESH EMANI

      Board Member

      Ramesh was the Founder and CEO of Insta Health Solutions, a software products company focused on providing complete hospital and clinic management solutions for hospitals and clinics in India, the Middle East, Southeast Asia, and Africa. He raised Series A funds from Inventus Capital and then subsequently sold the company to Practo Technologies, India. Post-sale, he held the role of SVP and Head of the Insta BU for 4 years. He has now retired from full-time employment and is working as a consultant and board member.

       

      Prior to Insta, Ramesh had a 25-year-long career at Wipro Technologies where he was the President of the $1B Telecom and Product Engineering Solutions business heading a team of 19,000 people with a truly global operations footprint. Among his other key roles at Wipro, he was a member of Wipro's Corporate Executive Council and was Chief Technology Officer.

       

      Ramesh is also an Independent Board Member of eMIDs Technologies, a $100M IT services company focused on the healthcare vertical with market presence in the US and India.

       

      Ramesh holds an M-Tech in Computer Science from IIT-Kanpur.

      ​Manoj Thandassery

      VP – Sales & Business Development

      Manoj Thandassery is responsible for the India business at Ignitarium. He has over 20 years of leadership and business experience in various industries including the IT and Product Engineering industry. He has held various responsibilities including Geo head at Sasken China, Portfolio head at Wipro USA, and India & APAC Director of Sales at Emeritus. He has led large multi-country teams of up to 350 employees. Manoj was also an entrepreneur and has successfully launched and scaled, via multiple VC-led investment rounds, an Edtech business in the K12 space that was subsequently sold to a global Edtech giant.
      An XLRI alumnus, Manoj divides his time between Pune and Bangalore.

       

      MALAVIKA GARIMELLA​

      General Manager - Marketing

      A professional with a 14-year track record in technology marketing, Malavika heads marketing in Ignitarium. Responsible for all branding, positioning and promotional initiatives in the company, she has collaborated with technical and business teams to further strengthen Ignitarium's positioning as a key E R&D services player in the ecosystem.

      Prior to Ignitarium, Malavika has worked in with multiple global tech startups and IT consulting companies as a marketing consultant. Earlier, she headed marketing for the Semiconductor & Systems BU at Wipro Technologies and worked at IBM in their application software division.

      Malavika completed her MBA in Marketing from SCMHRD, Pune, and holds a B.E. degree in Telecommunications from RVCE, Bengaluru.

       

      PRADEEP KUMAR LAKSHMANAN

      VP - Operations

      Pradeep comes with an overall experience of 26 years across IT services and Academia. In his previous role at Virtusa, he played the role of Delivery Leader for the Middle East geography. He has handled complex delivery projects including the transition of large engagements, account management, and setting up new delivery centers.

      Pradeep graduated in Industrial Engineering and Management, went on to secure an MBA from CUSAT, and cleared UGN Net in Management. He also had teaching stints at his alma mater, CUSAT, and other management institutes like DCSMAT. A certified P3O (Portfolio, Program & Project Management) from the Office of Government Commerce, UK, Pradeep has been recognized for key contributions in the Management domain, at his previous organizations, Wipro & Virtusa.

      In his role as the Head of Operations at Ignitarium, Pradeep leads and manages operational functions such as Resource Management, Procurement, Facilities, IT Infrastructure, and Program Management office.

       

      SONA MATHEW Director – Human Resources

      SONA MATHEW

      VP – Human Resources

      Sona heads Human Resource functions - Employee Engagement, HR Operations and Learning & Development – at Ignitarium. Her expertise include deep and broad experience in strategic people initiatives, performance management, talent transformation, talent acquisition, people engagement & compliance in the Information Technology & Services industry.

       

      Prior to Ignitarium, Sona has had held diverse HR responsibilities at Litmus7, Cognizant and Wipro.

       

      Sona graduated in Commerce from St. Xaviers College and did her MBA in HR from PSG College of Technology.

       

      ASHWIN RAMACHANDRAN

      Vice President - Sales

      As VP of Sales, Ashwin is responsible for Ignitarium’s go-to-market strategy, business, client relationships, and customer success in the Americas. He brings in over a couple of decades of experience, mainly in the product engineering space with customers from a wide spectrum of industries, especially in the Hi-Tech/semiconductor and telecom verticals.

       

      Ashwin has worked with the likes of Wipro, GlobalLogic, and Mastek, wherein unconventional and creative business models were used to bring in non-linear revenue. He has strategically diversified, de-risked, and grown his portfolios during his sales career.

       

      Ashwin strongly believes in the customer-first approach and works to add value and enhance the experiences of our customers.

       

      AZIF SALY Director – Sales

      AZIF SALY

      Vice President – Sales & Business Development

      Azif is responsible for go-to-market strategy, business development and sales at Ignitarium. Azif has over 14 years of cross-functional experience in the semiconductor product & service spaces and has held senior positions in global client management, strategic account management and business development. An IIM-K alumnus, he has been associated with Wipro, Nokia and Sankalp in the past.

       

      Azif handled key accounts and sales process initiatives at Sankalp Semiconductors. Azif has pursued entrepreneurial interests in the past and was associated with multiple start-ups in various executive roles. His start-up was successful in raising seed funds from Nokia, India. During his tenure at Nokia, he played a key role in driving product evangelism and customer success functions for the multimedia division.

       

      At Wipro, he was involved in customer engagement with global customers in APAC and US.

       

      RAJU KUNNATH Vice President – Enterprise & Mobility

      RAJU KUNNATH

      Distinguished Engineer – Digital

      At Ignitarium, Raju's charter is to architect world class Digital solutions at the confluence of Edge, Cloud and Analytics. Raju has over 25 years of experience in the field of Telecom, Mobility and Cloud. Prior to Ignitarium, he worked at Nokia India Pvt. Ltd. and Sasken Communication Technologies in various leadership positions and was responsible for the delivery of various developer platforms and products.

       

      Raju graduated in Electronics Engineering from Model Engineering College, Cochin and has an Executive Post Graduate Program (EPGP) in Strategy and Finance from IIM Kozhikode.

       

      PRADEEP SUKUMARAN Vice President – Business Strategy & Marketing

      PRADEEP SUKUMARAN

      Senior Vice President - Software Engineering

      Pradeep heads the Software Engineering division, with a charter to build and grow a world-beating delivery team. He is responsible for all the software functions, which includes embedded & automotive software, multimedia, and AI & Digital services

      At Ignitarium, he was previously part of the sales and marketing team with a special focus on generating a sales pipeline for Vision Intelligence products and services, working with worldwide field sales & partner ecosystems in the U.S  Europe, and APAC.

      Prior to joining Ignitarium in 2017, Pradeep was Senior Solutions Architect at Open-Silicon, an ASIC design house. At Open-Silicon, where he spent a good five years, Pradeep was responsible for Front-end, FPGA, and embedded SW business development, marketing & technical sales and also drove the IoT R&D roadmap. Pradeep started his professional career in 2000 at Sasken, where he worked for 11 years, primarily as an embedded multimedia expert, and then went on to lead the Multimedia software IP team.

      Pradeep is a graduate in Electronics & Communication from RVCE, Bangalore.

       

      SUJEET SREENIVASAN Vice President – Embedded

      SUJEET SREENIVASAN

      Senior Vice President – Automotive Technology

       

      Sujeet is responsible for driving innovation in Automotive software, identifying Automotive technology trends and advancements, evaluating their potential impact, and development of solutions to meet the needs of our Automotive customers.

      At Ignitarium, he was previously responsible for the growth and P&L of the Embedded Business unit focusing on Multimedia, Automotive, and Platform software.

      Prior to joining Ignitarium in 2016, Sujeet has had a career spanning more than 16 years at Wipro. During this stint, he has played diverse roles from Solution Architect to Presales Lead covering various domains. His technical expertise lies in the areas of Telecom, Embedded Systems, Wireless, Networking, SoC modeling, and Automotive. He has been honored as a Distinguished Member of the Technical Staff at Wipro and has multiple patents granted in the areas of Networking and IoT Security.

      Sujeet holds a degree in Computer Science from Government Engineering College, Thrissur.

       

      RAJIN RAVIMONY Distinguished Engineer

      RAJIN RAVIMONY

      Distinguished Engineer

       

      At Ignitarium, Rajin plays the role of Distinguished Engineer for complex SoCs and systems. He's an expert in ARM-based designs having architected more than a dozen SoCs and played hands-on design roles in several tens more. His core areas of specialization include security and functional safety architecture (IEC61508 and ISO26262) of automotive systems, RTL implementation of math intensive signal processing blocks as well as design of video processing and related multimedia blocks.

       

      Prior to Ignitarium, Rajin worked at Wipro Technologies for 14 years where he held roles of architect and consultant for several VLSI designs in the automotive and consumer domains.

       

      Rajin holds an MS in Micro-electronics from BITS Pilani.

       

      SIBY ABRAHAM Executive Vice President, Strategy

      SIBY ABRAHAM

      Executive Vice President, Strategy

       

      As EVP, of Strategy at Ignitarium, Siby anchors multiple functions spanning investor community relations, business growth, technology initiatives as well and operational excellence.

       

      Siby has over 31 years of experience in the semiconductor industry. In his last role at Wipro Technologies, he headed the Semiconductor Industry Practice Group where he was responsible for business growth and engineering delivery for all of Wipro’s semiconductor customers. Prior to that, he held a vast array of crucial roles at Wipro including Chief Technologist & Vice President, CTO Office, Global Delivery Head for Product Engineering Services, Business Head of Semiconductor & Consumer Electronics, and Head of Unified Competency Framework. He was instrumental in growing Wipro’s semiconductor business to over $100 million within 5 years and turning around its Consumer Electronics business in less than 2 years. In addition, he was the Engineering Manager for Enthink Inc., a semiconductor IP-focused subsidiary of Wipro. Prior to that, Siby was the Technical Lead for several of the most prestigious system engineering projects executed by Wipro R&D.

       

      Siby has held a host of deeply impactful positions, which included representing Wipro in various World Economic Forum working groups on Industrial IOT and as a member of IEEE’s IOT Steering Committee.

       

      He completed his MTech. in Electrical Engineering (Information and Control) from IIT, Kanpur and his BTech. from NIT, Calicut

       

      SUDIP NANDY

      Board Member

       

      An accomplished leader with over 40 years of experience, Sudip has helped build and grow companies in India, the US and the UK.

      He has held the post of Independent Director and Board Member for several organizations like Redington Limited, Excelra, Artison Agrotech, GeBBS Healthcare Solutions, Liquid Hub Inc. and ResultsCX.

      Most recently, Sudip was a Senior Advisor at ChrysCapital, a private equity firm where he has also been the Managing Director and Operating Partner for IT for the past 5 years. During his tenure, he has been Executive Chairman of California-headquartered Infogain Corporation and the non-Exec Chair on the board of a pioneering electric-2-wheeler company Ampere Vehicles, which is now a brand of Greaves Cotton Ltd.

      Earlier on in his career, Sudip has been the CEO and then Chairman India for Aricent. Prior to that, he had spent 25+ years in Wipro where he has been the Head of US business, Engineering R&D Services, and later the Head of EU Operations.

      Sudip is an active investor in several interesting startups in India and overseas, which mostly use technology for the social good, encompassing hyperlocal, healthcare, rural development, farmer support and e2W ecosystem. He also spends time as a coach and mentor for several CEOs in this role.

       

      SUJEETH JOSEPH Chief Product Officer

      SUJEETH JOSEPH

      Chief Technology Officer

       

      As CTO, Sujeeth is responsible for defining the technology roadmap, driving IP & solution development, and transitioning these technology components into practically deployable product engineering use cases.

       

      With a career spanning over 30+ years, Sujeeth Joseph is a semiconductor industry veteran in the SoC, System and Product architecture space. At SanDisk India, he was Director of Architecture for the USD $2B Removable Products Group. Simultaneously, he also headed the SanDisk India Patenting function, the Retail Competitive Analysis Group and drove academic research programs with premier Indian academic Institutes. Prior to SanDisk, he was Chief Architect of the Semiconductor & Systems BU (SnS) of Wipro Technologies. Over a 19-year career at Wipro, he has played hands-on and leadership roles across all phases of the ASIC and System design flow.

       

      He graduated in Electronics Engineering from Bombay University in 1991.

       

      SUJITH MATHEW IYPE Co-founder & CTO

      SUJITH MATHEW IYPE

      Co-founder & COO

       

      As Ignitarium's Co-founder and COO, Sujith is responsible for driving the operational efficiency and streamlining process across the organization. He is also responsible for the growth and P&L of the Semiconductor Business Unit.

       

      Apart from establishing a compelling story in VLSI, Sujith was responsible for Ignitarium's foray into nascent technology areas like AI, ML, Computer Vision, and IoT, nurturing them in our R&D Lab - "The Crucible".

       

      Prior to founding Ignitarium, Sujith played the role of a VLSI architect at Wipro Technologies for 13 years. In true hands-on mode, he has built ASICs and FPGAs for the Multimedia, Telecommunication, and Healthcare domains and has provided technical leadership for many flagship projects executed by Wipro.

       

      Sujith graduated from NIT - Calicut in the year 2000 in Electronics and Communications Engineering and thereafter he has successfully completed a one-year executive program in Business Management from IIM Calcutta.

       

      RAMESH SHANMUGHAM Co-founder & COO

      RAMESH SHANMUGHAM

      Co-founder & CRO

      As Co-founder and Chief Revenue Officer of Ignitarium, Ramesh has been responsible for global business and marketing as well as building trusted customer relationships upholding the company's core values.

      Ramesh has over 25 years of experience in the Semiconductor Industry covering all aspects of IC design. Prior to Ignitarium, Ramesh was a key member of the senior management team of the semiconductor division at Wipro Technologies. Ramesh has played key roles in Semiconductor Delivery and Pre-sales at a global level.

      Ramesh graduated in Electronics Engineering from Model Engineering College, Cochin, and has a Postgraduate degree in Microelectronics from BITS Pilani.