samples-manifest: add a samples manifest file to be used by Eclipse DEY plug-ins

https://jira.digi.com/browse/DEL-5260

Signed-off-by: David Escalona <david.escalona@digi.com>
This commit is contained in:
David Escalona 2017-10-31 11:54:57 +01:00
parent 0aa3900c86
commit 4e013d621a
1 changed files with 67 additions and 0 deletions

67
samples-manifest.xml Normal file
View File

@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<samples>
<sample id="apix-gpio-sample">
<name>Digi APIX GPIO Sample</name>
<description>
Sample application to access and manage GPIO lines using the Digi APIX library.
The application uses a gpio as input (e.g. a user button) and another
one as output (e.g. a user led). The application toggles the output GPIO
whenever an interrupt is generated in the input GPIO.
</description>
<path>apix-gpio-example</path>
<platforms>
<platform>ccimx6sbc</platform>
<platform>ccimx6qpsbc</platform>
<platform>ccimx6ulstarter</platform>
<platform>ccimx6ulsbc</platform>
</platforms>
</sample>
<sample id="apix-i2c-sample">
<name>Digi APIX I2C Sample</name>
<description>
Sample application to access and manage I2C slaves using the Digi APIX library.
The application writes a page of an external EEPROM memory with random
data and then reads the data back to validate it (tested with 24FC1026).
</description>
<path>apix-i2c-example</path>
<platforms>
<platform>ccimx6sbc</platform>
<platform>ccimx6qpsbc</platform>
<platform>ccimx6ulstarter</platform>
<platform>ccimx6ulsbc</platform>
</platforms>
</sample>
<sample id="apix-pwm-sample">
<name>Digi APIX PWM Sample</name>
<description>
Sample application to access and manage PWM lines using the Digi APIX library.
The application enables one PWM line of the board using a frequency of
1000Hz. Then, progressively modifies the duty cycle in a loop from 10% to
90% and vice-versa.
</description>
<path>apix-pwm-example</path>
<platforms>
<platform>ccimx6sbc</platform>
<platform>ccimx6qpsbc</platform>
<platform>ccimx6ulstarter</platform>
<platform>ccimx6ulsbc</platform>
</platforms>
</sample>
<sample id="apix-spi-sample">
<name>Digi APIX SPI Sample</name>
<description>
Sample application to access and manage SPI slaves using the Digi APIX library.
The example application writes a page of an external EEPROM memory with random
data and then reads the data back to validate it.
Most of EEPROM memories are compatible with the sample specifying the page size and
the number of address bytes.
</description>
<path>apix-spi-example</path>
<platforms>
<platform>ccimx6sbc</platform>
<platform>ccimx6qpsbc</platform>
<platform>ccimx6ulstarter</platform>
<platform>ccimx6ulsbc</platform>
</platforms>
</sample>
</samples>