Add simple test app for I2S loopback (no USB)

This commit is contained in:
Ed Clarke
2019-04-30 18:07:15 +01:00
parent 50097db00d
commit 8f9828ea2c
6 changed files with 312 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- ======================================================= -->
<!-- The 'ioMode' attribute on the xSCOPEconfig -->
<!-- element can take the following values: -->
<!-- "none", "basic", "timed" -->
<!-- -->
<!-- The 'type' attribute on Probe -->
<!-- elements can take the following values: -->
<!-- "STARTSTOP", "CONTINUOUS", "DISCRETE", "STATEMACHINE" -->
<!-- -->
<!-- The 'datatype' attribute on Probe -->
<!-- elements can take the following values: -->
<!-- "NONE", "UINT", "INT", "FLOAT" -->
<!-- ======================================================= -->
<xSCOPEconfig ioMode="basic" enabled="true">
<!-- For example: -->
<!-- <Probe name="Probe Name" type="CONTINUOUS" datatype="UINT" units="Value" enabled="true"/> -->
<Probe name="ch0" type="CONTINUOUS" datatype="INT" units="Value" enabled="true"/>
<!-- From the target code, call: xscope_int(PROBE_NAME, value); -->
</xSCOPEconfig>