/**
 * Firmware and Library Installation/Uninstallation
 */
/* installation */
$ sudo ./install.sh

/* uninstallation */
$ sudo ./uninstall.sh

/**
 * Driver Installation/Uninstallation
 */
/* installation */
$ cd driver/linux 
$ make
$ sudo ./install.sh

/* uninstallation */
$ sudo ./uninstall.sh

/**
 * Examples Building
 */
/* simple test build: pwrfip_2sta */
$ cd tools/pwrfip_2sta
$ make
/* adding the SYS_NICE capapibity as Effective and Permitted to the binary
 * => This root command is executed only once after the binary building */
$ sudo setcap cap_sys_nice+ep ./pwrfip_2sta
/* app infos */
$ ./pwrfip_2sta -h

/* performance test build: pwrfip_performance */
$ cd tools/pwrfip_performance
$ make
/* adding the SYS_NICE capapibity as Effective and Permitted to the binary
 * => This root command is executed only once after the binary building */
$ sudo setcap cap_sys_nice+ep ./pwrfip_performance
/* app infos */
$ ./pwrfip_performance -h

/**
 * NOTE:
 * For more information, see the documentation in the docs/ directory.
 */