2021-10-13 20:08:35 +00:00
|
|
|
#include "components/ble/BleController.h"
|
2019-12-27 16:05:49 +00:00
|
|
|
|
|
|
|
using namespace Pinetime::Controllers;
|
|
|
|
|
2021-12-24 02:30:14 +00:00
|
|
|
void Ble::SetConnectState(Ble::ConnectStates newState) {
|
|
|
|
connectionState = newState;
|
2019-12-27 16:05:49 +00:00
|
|
|
}
|
|
|
|
|
2021-12-24 02:30:14 +00:00
|
|
|
Ble::ConnectStates Ble::GetConnectState() const {
|
|
|
|
return connectionState;
|
2019-12-27 16:05:49 +00:00
|
|
|
}
|
2020-03-25 20:23:40 +00:00
|
|
|
|
2020-05-02 12:16:57 +00:00
|
|
|
void Ble::StartFirmwareUpdate() {
|
|
|
|
isFirmwareUpdating = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Ble::StopFirmwareUpdate() {
|
|
|
|
isFirmwareUpdating = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Ble::FirmwareUpdateTotalBytes(uint32_t totalBytes) {
|
|
|
|
firmwareUpdateTotalBytes = totalBytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Ble::FirmwareUpdateCurrentBytes(uint32_t currentBytes) {
|
|
|
|
firmwareUpdateCurrentBytes = currentBytes;
|
|
|
|
}
|