This is an automated email from Gerrit.

Martin Schmölzer ([email protected]) just uploaded a new 
patch set to Gerrit, which you can find at http://openocd.zylin.com/1482

-- gerrit

commit 590d0fde63751e0923abff6abca28917e4805ccf
Author: Martin Schmölzer <[email protected]>
Date:   Thu Jul 4 19:38:04 2013 +0200

    OpenULINK firmware: fix name of USB Jump Table symbol
    
    Fix a case mistake in the name of the USB Jump Table ("USB_jump_table"
    vs. "USB_Jump_Table") which led to an assembler error when attempting
    to build the firmware with recent SDCC versions, because the assembler
    now treats symbol names as case-sensitive.
    
    Successfully tested with ULINK probe and STM32F103 (debug, erase and write
    flash).
    
    Change-Id: I979667b9130efcdccc3ac73269c38f06e0590048
    Signed-off-by: Martin Schmölzer <[email protected]>

diff --git a/src/jtag/drivers/OpenULINK/src/USBJmpTb.a51 
b/src/jtag/drivers/OpenULINK/src/USBJmpTb.a51
index 244a1be..8ddd680 100644
--- a/src/jtag/drivers/OpenULINK/src/USBJmpTb.a51
+++ b/src/jtag/drivers/OpenULINK/src/USBJmpTb.a51
@@ -1,5 +1,5 @@
 ;--------------------------------------------------------------------------;
-;    Copyright (C) 2011 by Martin Schmoelzer                               ;
+;    Copyright (C) 2011-2013 by Martin Schmoelzer                          ;
 ;    <[email protected]>                              ;
 ;                                                                          ;
 ;    This program is free software; you can redistribute it and/or modify  ;
@@ -28,7 +28,7 @@
 .area   USB_JV (ABS,OVR)   ; Absolute, Overlay
 .org    0x43               ; USB interrupt (INT2) jumps here
 USB_AutoVector = #. + 2
-    ljmp  USB_jump_table
+    ljmp  USB_Jump_Table
 
 ;--------------------------------------------------------------------------;
 ; USB Jump Table                                                           ;
@@ -36,7 +36,7 @@ USB_AutoVector = #. + 2
 .area  USB_JT (ABS)        ; Absolute placement
 .org   0x1B00              ; Place jump table at 0x1B00
 
-USB_jump_table:            ; autovector jump table
+USB_Jump_Table:            ; autovector jump table
     ljmp  _sudav_isr       ; Setup Data Available
     .db 0
     ljmp  _sof_isr         ; Start of Frame

-- 

------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
OpenOCD-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to