Skip to content
This repository has been archived by the owner. It is now read-only.

maxpoliak/ec-sw-builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Embedded Microcontroller software builder

This project allows the Linux machine to build all software necessary to use the real-time embedded microcontroller (EC) along with the host system. The USB interface is used to communicate between the host and the controller. The software includes a Linux kernel module and a user space application that provides control of the EC.

Before building it is necessary to initialize all SDK resources and git submodules:

	(shell)$ cd /path/to/sdk
	(shell)$ make init

The command "info" allows you to get information about all files in the SDK:

	(shell)$ make info

Build

	(shell)$ make all
	(shell)$ make cleanall

Building or cleaning only the kernel module:

	(shell)$ make
	(shell)$ make default
	(shell)$ make clean

User application example build (clear) only:

	(shell)$ make app
	(shell)$ make cleanapp

Print information about SDK:

	(shell)$ make info
	(shell)$ make help

Load or unload module:

	(shell)$ make install
	(shell)$ make remove

Releases

No releases published

Packages

No packages published