diff --git a/src/platforms/hosted/bmp_libusb.c b/src/platforms/hosted/bmp_libusb.c index 9a5e6369..b866ee4a 100644 --- a/src/platforms/hosted/bmp_libusb.c +++ b/src/platforms/hosted/bmp_libusb.c @@ -220,7 +220,7 @@ int find_debuggers(BMP_CL_OPTIONS_t *cl_opts,bmp_info_t *info) type = BMP_TYPE_BMP; } else { if (desc.idProduct == PRODUCT_ID_BMP_BL) - DEBUG_WARN("BMP in botloader mode found. Restart or reflash!\n"); + DEBUG_WARN("BMP in bootloader mode found. Restart or reflash!\n"); continue; } } else if ((type == BMP_TYPE_NONE) && diff --git a/src/platforms/pc/cl_utils.c b/src/platforms/pc/cl_utils.c index 6e8db4a6..88e16a0c 100644 --- a/src/platforms/pc/cl_utils.c +++ b/src/platforms/pc/cl_utils.c @@ -386,7 +386,7 @@ int cl_execute(BMP_CL_OPTIONS_t *opt) num_targets = target_foreach(display_target, &num_targets); } if (opt->opt_target_dev > num_targets) { - DEBUG_WARN("Given target nummer %d not available max %d\n", + DEBUG_WARN("Given target number %d not available max %d\n", opt->opt_target_dev, num_targets); return -1; } @@ -438,7 +438,7 @@ int cl_execute(BMP_CL_OPTIONS_t *opt) if (opt->opt_mode == BMP_MODE_SWJ_TEST) { switch (t->core[0]) { case 'M': - DEBUG_WARN("Continious read/write-back DEMCR. Abort with ^C\n"); + DEBUG_WARN("Continuous read/write-back DEMCR. Abort with ^C\n"); while(1) { uint32_t demcr; target_mem_read(t, &demcr, CORTEXM_DEMCR, 4);