diff --git a/src/core/mcp3008/hardware/mcp3008_hardware.c b/src/core/mcp3008/hardware/mcp3008_hardware.c index ad65ee2..0636b42 100644 --- a/src/core/mcp3008/hardware/mcp3008_hardware.c +++ b/src/core/mcp3008/hardware/mcp3008_hardware.c @@ -64,7 +64,6 @@ uint16_t mcp3008_read_hardware(spi_dual_inst *inst, uint8_t channel, bool differ // Send the SPI command gpio_put(inst->pinout->csn, 0); - __breakpoint(); spi_write_read_blocking(inst->spi_hw, output_buffer, input_buffer, BUF_LEN); gpio_put(inst->pinout->csn, 1); diff --git a/src/flashloader/dfu.c b/src/flashloader/dfu.c index 57aaf8e..b4aba79 100644 --- a/src/flashloader/dfu.c +++ b/src/flashloader/dfu.c @@ -100,10 +100,6 @@ void tud_dfu_download_cb(uint8_t alt, uint16_t block_num, uint8_t const *data, u rec.sectionId = sectionId; int result = parseRecord(buf, &rec); - if (result == 0) - { - __breakpoint(); - } processRecord(&rec); // If the ulba is different to what is saved, update the variable. diff --git a/src/flashloader/ihex/process.c b/src/flashloader/ihex/process.c index 2ce71fe..8fa47aa 100644 --- a/src/flashloader/ihex/process.c +++ b/src/flashloader/ihex/process.c @@ -21,7 +21,6 @@ uint32_t count = 0; // is passed a pointer to rec void processRecord(ihexRecord *rec) { - //__breakpoint(); switch (rec->type) { case UHEX_TYPE_CUSTOM_DATA: