mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-09-27 14:35:27 +00:00
Contributed by Shaun Jackman <sjackman@gmail.com>
bug #21798: Fix both XSLT scripts * tools/get-dw-params.xsl (format-hex): Add the parameter count. * tools/get-hv-params.xsl (format_cstack): Ditto. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@828 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
2009-07-02 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
Contributed by Shaun Jackman <sjackman@gmail.com>
|
||||||
|
bug #21798: Fix both XSLT scripts
|
||||||
|
* tools/get-dw-params.xsl (format-hex): Add the parameter count.
|
||||||
|
* tools/get-hv-params.xsl (format_cstack): Ditto.
|
||||||
|
|
||||||
2009-07-02 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2009-07-02 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
bug #21922: ATmega163 still not working in version 5.5
|
bug #21922: ATmega163 still not working in version 5.5
|
||||||
|
@@ -112,6 +112,7 @@
|
|||||||
<!-- recursively then until everything has been done -->
|
<!-- recursively then until everything has been done -->
|
||||||
<xsl:template name="format-hex">
|
<xsl:template name="format-hex">
|
||||||
<xsl:param name="arg" />
|
<xsl:param name="arg" />
|
||||||
|
<xsl:param name="count" />
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="string-length($arg) <= 4">
|
<xsl:when test="string-length($arg) <= 4">
|
||||||
<!-- Last element, print it, and leave template. -->
|
<!-- Last element, print it, and leave template. -->
|
||||||
|
@@ -219,6 +219,7 @@
|
|||||||
-->
|
-->
|
||||||
<xsl:template name="format_cstack">
|
<xsl:template name="format_cstack">
|
||||||
<xsl:param name="stack" />
|
<xsl:param name="stack" />
|
||||||
|
<xsl:param name="count" />
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="string-length($stack) <= 4">
|
<xsl:when test="string-length($stack) <= 4">
|
||||||
<!-- Last element, print it, and leave template. -->
|
<!-- Last element, print it, and leave template. -->
|
||||||
|
Reference in New Issue
Block a user