mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-16 05:00:35 +00:00
b849b20a8c
- Added a pre-compiled custom GN3S firmware. - Added a fully-compliant GNU Radio source block for GN3S USB dongle. It can be used also from GNU Radio companion and from Python applications. - Added a new GN3S_Signal_Source block. It is possible to disable the GN3S signal source compilation. See README. git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@217 64b25241-fba3-4117-9849-534c7e92360d
16 lines
645 B
HTML
16 lines
645 B
HTML
<!-- XSLT script to combine the generated output into a single file.
|
|
If you have xsltproc you could use:
|
|
xsltproc combine.xslt index.xml >all.xml
|
|
-->
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<xsl:output method="xml" version="1.0" indent="yes" standalone="yes" />
|
|
<xsl:template match="/">
|
|
<doxygen version="{doxygenindex/@version}">
|
|
<!-- Load all doxgen generated xml files -->
|
|
<xsl:for-each select="doxygenindex/compound">
|
|
<xsl:copy-of select="document( concat( @refid, '.xml' ) )/doxygen/*" />
|
|
</xsl:for-each>
|
|
</doxygen>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|