From: Øyvind H. <go...@us...> - 2010-01-21 15:59:26
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via dfba7fa949ae12089aa02dab557a46520c816d28 (commit) via bc088b302bd0bb43cc9097a9f0b2e7369b0e04e2 (commit) from 1350b6aad074c1556604c5969dee43f294371461 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit dfba7fa949ae12089aa02dab557a46520c816d28 Author: Edgar Grimberg <edg...@zy...> Date: Thu Jan 21 12:08:19 2010 +0100 interface: Changed parport address to LPT1 Changed the parport address to LPT1, since it's the most obvious default value. Signed-off-by: Edgar Grimberg <edg...@zy...> diff --git a/tcl/interface/parport.cfg b/tcl/interface/parport.cfg index 22be8f3..0f18ce9 100644 --- a/tcl/interface/parport.cfg +++ b/tcl/interface/parport.cfg @@ -1,10 +1,8 @@ # -# Parallel port wiggler (many clones available) on port 0xc8b8 +# Parallel port wiggler (many clones available) on port 0x378 # -# REVISIT this address seems very wrong. -# Surely 0x378/LPT1 or 0x278/LPT2 ... +# Addresses: 0x378/LPT1 or 0x278/LPT2 ... interface parport -parport_port 0xc8b8 +parport_port 0x378 parport_cable wiggler - commit bc088b302bd0bb43cc9097a9f0b2e7369b0e04e2 Author: Edgar Grimberg <edg...@zy...> Date: Thu Jan 21 13:42:25 2010 +0100 target: Fixed format problem for mdh Fixed format problem for mdh. It needs to display 4 chars. Signed-off-by: Edgar Grimberg <edg...@zy...> diff --git a/src/target/target.c b/src/target/target.c index c56265c..ff5aef3 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -2170,7 +2170,7 @@ static void handle_md_output(struct command_context *cmd_ctx, const char *value_fmt; switch (size) { case 4: value_fmt = "%8.8x "; break; - case 2: value_fmt = "%4.2x "; break; + case 2: value_fmt = "%4.4x "; break; case 1: value_fmt = "%2.2x "; break; default: /* "can't happen", caller checked */ ----------------------------------------------------------------------- Summary of changes: src/target/target.c | 2 +- tcl/interface/parport.cfg | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) hooks/post-receive -- Main OpenOCD repository |