Disable DEBUG information

master
Joe Finney 2018-09-07 14:51:26 +01:00
parent 6c9b3e7d1c
commit 4dda6ef298
1 changed files with 2 additions and 2 deletions

View File

@ -425,14 +425,14 @@ extern uint32_t __etext;
// n.b. This also disables the user serial port 'uBit.serial'.
// Set '1' to enable.
#ifndef MICROBIT_DBG
#define MICROBIT_DBG 1
#define MICROBIT_DBG 0
#endif
// Enable this to receive diagnostic messages from the heap allocator via the USB serial interface.
// n.b. This requires MICROBIT_DBG to be defined.
// Set '1' to enable.
#ifndef MICROBIT_HEAP_DBG
#define MICROBIT_HEAP_DBG 1
#define MICROBIT_HEAP_DBG 0
#endif
// Versioning options.