Browse Source

ble: Change LogCommand ID to 0x1

ble
Andreas Berthoud 4 years ago
parent
commit
10b1b12c3c
  1. 2
      backend/command.py
  2. 2
      nucleo-wb55-dongle-ble/app/Command.hpp

2
backend/command.py

@ -89,7 +89,7 @@ def worker_process(
class CommandId(Enum):
command_none = 0
command_log = 0xFF
command_log = 0x1
@dataclass

2
nucleo-wb55-dongle-ble/app/Command.hpp

@ -14,7 +14,7 @@ extern "C" void pop_and_execute_commands();
typedef enum : uint8_t {
COMMAND_NONE = 0,
COMMAND_LOG = 0xff,
COMMAND_LOG = 0x1,
} CommandId;

Loading…
Cancel
Save