- 30 Aug, 2011 1 commit
-
-
Heythem Bouhaja authored
-
- 27 Aug, 2011 1 commit
-
-
Evan Hunter authored
-
- 25 Aug, 2011 2 commits
-
-
Jonathan Dumaresq authored
This will add the BSTAP for the medium and high density devices
-
Jonathan Dumaresq authored
This has been tested on STM32F100VE
-
- 24 Aug, 2011 5 commits
-
-
Jie Zhang authored
-
Evan authored
-
Evan Hunter authored
-
Jim Paris authored
Currently the board/redbee-*.cfg files incorrectly include the interface definition. Move the interfaces to interface/, and create a single board/redbee.cfg that is common to both boards. Intended usage is now: openocd -f interface/redbee-econotag.cfg -f board/redbee.cfg
-
Andreas Bießmann authored
Invented by jknick in sparkfun forum: http://forum.sparkfun.com/viewtopic.php?t=19788 Signed-off-by:
Andreas Bießmann <andreas.devel@googlemail.com>
-
- 21 Aug, 2011 1 commit
-
-
olivier Schonken authored
-
- 18 Aug, 2011 1 commit
-
-
Gunnar Henne authored
Posted by telekatz@gmx.de in the bettyhacks forum for openocd 0.4.0 and integrated into 0.5.0 by Gunnar Henne. Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
- 17 Aug, 2011 1 commit
-
-
Jie Zhang authored
-
- 16 Aug, 2011 5 commits
-
-
Spencer Oliver authored
buspirate has never supported building on native windows (mingw). configure will now check this is not the case. Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
SimonQian authored
Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
Spencer Oliver authored
Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
Spencer Oliver authored
configure.ac is the correct name to use with modern autotools. Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
Spencer Oliver authored
Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
- 15 Aug, 2011 1 commit
-
-
Jie Zhang authored
AC_CHECK_FILE will die when cross-compiling. So don't use it to test the existence of guess-rev.sh. Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
- 14 Aug, 2011 1 commit
-
-
Øyvind Harboe authored
Use "info stacktrace" instead. This fixes build problems with latest Jim Tcl.
-
- 12 Aug, 2011 3 commits
-
-
Stefan Mahr authored
-
Stefan Mahr authored
-
Stefan Mahr authored
-
- 11 Aug, 2011 4 commits
-
-
Spencer Oliver authored
Due to build warnings introduced in newer versions of ftd2xx we use strings to report errors rather than result codes. This also gives us the same behaviour as libftdi. Signed-off-by:
Spencer Oliver <ntfreak@users.sourceforge.net>
-
Jie Zhang authored
-
-
Steve Bennett authored
Scripts sourced via 'script' should evaluate in the global scope to make it easy to set and reference global variables. Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
- 10 Aug, 2011 9 commits
-
-
Rodrigo L. Rosa authored
it returned ERROR_OK even though it actually failed. this made the Tcl interface report success, though it had not succeeded.
-
Rodrigo L. Rosa authored
i had started my code from dsp5683xx, i renamed a bunch of stuff to names i consider to be better. i believe no one is using this code, so nobody should be affected. (it's not too late to do this change)
-
Andreas Fritiofson authored
After correcting the reply size counter, it should be safe to rely on it for the number of bytes expected in the USB read, instead of reading the endpoint maximum. This doesn't make things go any faster but it's nicer and removes the local buffer. Signed-off-by:
Andreas Fritiofson <andreas.fritiofson@gmail.com>
-
Andreas Fritiofson authored
Add a helper function for running the queue if it would overflow otherwise. Use it to simplify the queue fill level checks and optimize in a few cases that would previously run the queue prematurely. Signed-off-by:
Andreas Fritiofson <andreas.fritiofson@gmail.com>
-
Andreas Fritiofson authored
__FILE__ and __LINE__ are already printed using the log macros. Signed-off-by:
Andreas Fritiofson <andreas.fritiofson@gmail.com>
-
Andreas Fritiofson authored
After the reply_index handling is fixed, there's no need to special case the out scan. Signed-off-by:
Andreas Fritiofson <andreas.fritiofson@gmail.com>
-
Andreas Fritiofson authored
dtc_queue.reply_index was wrongly being increased during out scans, causing the queue to be sent before the out buffer was full. This patch increases raw upload speed by 50% or so. Signed-off-by:
Andreas Fritiofson <andreas.fritiofson@gmail.com>
-
Andreas Fritiofson authored
Remove unnecessary block scopes to reduce indentation level. Signed-off-by:
Andreas Fritiofson <andreas.fritiofson@gmail.com>
-
Andreas Fritiofson authored
Indentation was inconsistent and some lines not indented at all. Quickfix using Eclipse's auto-indentation. Signed-off-by:
Andreas Fritiofson <andreas.fritiofson@gmail.com>
-
- 09 Aug, 2011 5 commits
-
-
Drasko DRASKOVIC authored
Function mips_m4k_write_memory() does endianess byte swap, but this procedure break one byte access (temporary array overwrites content in buffer). As a fix, this endianess swap and buffer affecting is preformed only on hword and word accesses (not on byte access).
-
Drasko DRASKOVIC authored
Pprogram that loads another program into memory is actually writing the D- side cache. The instructions it has loaded can't be executed until they reach the I-cache. After the instructions have been written, the loader should arrange to write back any containing D-cache line and invalidate any locations already in the I-cache. For the MIPS Architecture Release2 cores, we can use synci command that does this job. For Release1 we must use "cache" instruction.
-
Drasko DRASKOVIC authored
This patch adds MIPS32 CP0 coprocessor R/W routines, as well as adequate commands to use these routines via telnet interface. Now is becomes possible to affect CP0 internal registers and configure CPU directly from OpenOCD.
-
Drasko DRASKOVIC authored
For all architectures we use distinct common magic number, and this should be a uint32_t type. Otherwise, comparison with macros will yield compilation warning.
-
Drasko DRASKOVIC authored
jtag_execute_queue() is executed as a part of mips_ejtag_drscan_32(). No need for this to be done before - removed for optimisation.
-