Skip to content

Commit bdb890b

Browse files
authored
Merge pull request #8 from FreeSK8/fw5.3
0.10.2
2 parents c6950e1 + 6595e76 commit bdb890b

File tree

4 files changed

+175
-184
lines changed

4 files changed

+175
-184
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,7 @@ CFLAGS += -DAPP_TIMER_V2 -DAPP_TIMER_V2_RTC1_ENABLED
330330
CFLAGS += -DLFS_NO_MALLOC
331331
# Switch if hardware has display
332332
CFLAGS += -DHAS_DISPLAY=1
333+
#CFLAGS += -DDEBUG
333334

334335
# C++ flags common to all targets
335336
CXXFLAGS += $(OPT)

command_interface.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ void command_interface_process_byte(char incoming)
263263
}
264264
else if(strncmp(command_input_buffer, "version", 7) == 0)
265265
{
266-
sprintf((char *)command_response_buffer, "version,0.10.1,beta");
266+
sprintf((char *)command_response_buffer, "version,0.10.2,beta");
267267
m_ble_tx_logbuffer(command_response_buffer, strlen((const char *)command_response_buffer));
268268
}
269269
else if(strncmp(command_input_buffer, "getcfg", 6) == 0)

datatypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#define PACKET_END 0x0a
2828

2929
typedef enum {
30-
DEBUG = 0,
30+
LOGDEBUG = 0,
3131
HEADER,
3232
ESC,
3333
ESC_DELTA,

0 commit comments

Comments
 (0)