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 <martin.schmoelzer@student.tuwien.ac.at>
Reviewed-on: http://openocd.zylin.com/1482
Tested-by: jenkins
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
This commit is contained in:
committed by
Spencer Oliver
parent
f684252b25
commit
7a3182fa42
@@ -1,5 +1,5 @@
|
||||
;--------------------------------------------------------------------------;
|
||||
; Copyright (C) 2011 by Martin Schmoelzer ;
|
||||
; Copyright (C) 2011-2013 by Martin Schmoelzer ;
|
||||
; <martin.schmoelzer@student.tuwien.ac.at> ;
|
||||
; ;
|
||||
; 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
|
||||
|
||||
Reference in New Issue
Block a user