Exemple #1
0
 // Remove a hardware breakpoint at a specific location in flash.
 public override void remove_breakpoint(Provider.Breakpoint bp)
 {
     foreach (var hwbp in this.hw_breakpoints)
     {
         if (hwbp.enabled && hwbp.addr == bp.addr)
         {
             hwbp.enabled = false;
             this.ap.writeMemory(hwbp.comp_register_addr, 0);
             this.num_hw_breakpoint_used -= 1;
             return;
         }
     }
 }
Exemple #2
0
 public override void remove_breakpoint(Provider.Breakpoint bp)
 {
     throw new NotImplementedException();
 }