]> git.gag.com Git - fw/openocd/commitdiff
Fixed gaffes in reset script handling + improved error
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Mon, 13 Oct 2008 10:30:33 +0000 (10:30 +0000)
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Mon, 13 Oct 2008 10:30:33 +0000 (10:30 +0000)
messages a bit. The file and line # of the syntax error
in a reset script is now printed.

git-svn-id: svn://svn.berlios.de/openocd/trunk@1042 b42882b7-edfa-0310-969c-e2dbd0fdcd60

src/helper/startup.tcl
src/target/target.c
src/target/target/lpc2148.cfg

index e3d750e08ae7a075724bd29fbf08a0b17a739acd..a8006702b72304951651625697e156a19e70b31f 100644 (file)
@@ -212,11 +212,11 @@ proc ocd_process_reset { MODE } {
     }
 
     foreach t [ target names ] {
-       # For compatiblity with 'old scripts'
-       $t invoke-event old-pre_reset
-
-       # New event script.
-       $t invoke-event reset-start
+               # For compatiblity with 'old scripts'
+               $t invoke-event old-pre_reset
+       
+               # New event script.
+               $t invoke-event reset-start
     }
 
     # Init the tap controller.
@@ -224,60 +224,60 @@ proc ocd_process_reset { MODE } {
 
     # Examine all targets.
     foreach t [ target names ] {
-       $t arp_examine
+               $t arp_examine
     }
 
     # Let the C code know we are asserting reset.
     foreach t [ target names ] {
-       $t invoke-event reset-assert-pre
-       # C code needs to know if we expect to 'halt'
-       $t arp_reset assert $halt
-       $t invoke-event reset-assert-post
+               $t invoke-event reset-assert-pre
+               # C code needs to know if we expect to 'halt'
+               $t arp_reset assert $halt
+               $t invoke-event reset-assert-post
     }
 
     # Now de-assert reset.
     foreach t [ target names ] {
-       $t invoke-event reset-deassert-pre
-       # Again, de-assert code needs to know..
-       $t arp_reset deassert $halt
-       $t invoke-event reset-deassert-post
+               $t invoke-event reset-deassert-pre
+               # Again, de-assert code needs to know..
+               $t arp_reset deassert $halt
+               $t invoke-event reset-deassert-post
     }
 
 
     # Pass 1 - Now try to halt.
     if { $halt } {
-       foreach t [target names] {
-
-           # Wait upto 1 second for target to halt.  Why 1sec? Cause
-           # the JTAG tap reset signal might be hooked to a slow
-           # resistor/capacitor circuit - and it might take a while
-           # to charge
-           
-           # Catch, but ignore any errors.
-           catch { $t arp_waitstate halted 1000 }
-           
-           # Did we succeed?
-           set s [$t curstate]
-           
-           if { 0 != [string compare $s "halted" ] } {
-               return -error [format "TARGET: %s - Not halted" $t]
-           }
-       }
+               foreach t [target names] {
+       
+                   # Wait upto 1 second for target to halt.  Why 1sec? Cause
+                   # the JTAG tap reset signal might be hooked to a slow
+                   # resistor/capacitor circuit - and it might take a while
+                   # to charge
+                   
+                   # Catch, but ignore any errors.
+                   catch { $t arp_waitstate halted 1000 }
+                   
+                   # Did we succeed?
+                   set s [$t curstate]
+                   
+                   if { 0 != [string compare $s "halted" ] } {
+                               return -error [format "TARGET: %s - Not halted" $t]
+                   }
+               }
     }
 
     #Pass 2 - if needed "init"
     if { 0 == [string compare init $MODE] } {
-       foreach t [target names] {
-           set err [catch "$t arp_waitstate halted 5000"]
-           # Did it halt?
-           if { $err == 0 } {
-                       $t invoke-event old-post_reset
-                       $t invoke-event reset-init              
-           }
-       }
+               foreach t [target names] {
+                   set err [catch "$t arp_waitstate halted 5000"]
+                   # Did it halt?
+                   if { $err == 0 } {
+                               $t invoke-event old-post_reset
+                               $t invoke-event reset-init              
+                   }
+               }
     }
 
     foreach t [ target names ] {
-       $t invoke-event reset-end
+               $t invoke-event reset-end
     }
 }
index 0ba25dbbb2919436b2929542c36dc6c28c807acf..ca34a4d067ba8c0afc20d092badac0b0522f9fbb 100644 (file)
@@ -436,7 +436,8 @@ static int NEW_target_process_reset(struct command_context_s *cmd_ctx, enum targ
        sprintf( buf, "ocd_process_reset %s", n->name );
        retval = Jim_Eval( interp, buf );
 
-       if(retval != JIM_ERR){
+       if(retval != JIM_OK) {
+               Jim_PrintErrorMessage(interp);
                return ERROR_FAIL;
        }
 
@@ -3112,7 +3113,10 @@ target_handle_event( target_t *target, enum target_event e )
                                           e,
                                           Jim_Nvp_value2name_simple( nvp_target_event, e )->name,
                                           Jim_GetString( teap->body, NULL ) );
-                       Jim_EvalObj( interp, teap->body );
+                       if (Jim_EvalObj( interp, teap->body )!=JIM_OK)
+                       {
+                               Jim_PrintErrorMessage(interp);
+                       }
                }
                teap = teap->next;
        }
@@ -3215,7 +3219,7 @@ target_configure( Jim_GetOptInfo *goi,
                        }
 
                        if( goi->isconfigure ){
-                               if( goi->argc == 0 ){
+                               if( goi->argc != 1 ){
                                        Jim_WrongNumArgs( goi->interp, goi->argc, goi->argv, "-event ?event-name? ?EVENT-BODY?");
                                        return JIM_ERR;
                                }
index 79ec9ecb1a983458cc6250821e3d090bb9f32fd8..11835a72d1f5432bc1461be175198d6a69d9248b 100644 (file)
@@ -14,7 +14,7 @@ reset_config trst_and_srst srst_pulls_trst
 jtag_device 4 0x1 0xf 0xe
 
 target arm7tdmi little 0 arm7tdmi-s_r4
-[new_target_name] configure -event old-post_reset {} {
+[new_target_name] configure -event old-post_reset {
        # Force target into ARM state
        soft_reset_halt
        #do not remap 0x0000-0x0020 to anything but the flash