2021-10-13 16:08:35 -04:00
|
|
|
#include "components/ble/BleController.h"
|
2019-12-27 11:05:49 -05:00
|
|
|
|
|
|
|
using namespace Pinetime::Controllers;
|
|
|
|
|
2021-12-23 21:30:14 -05:00
|
|
|
void Ble::SetConnectState(Ble::ConnectStates newState) {
|
|
|
|
connectionState = newState;
|
2019-12-27 11:05:49 -05:00
|
|
|
}
|
|
|
|
|
2021-12-23 21:30:14 -05:00
|
|
|
Ble::ConnectStates Ble::GetConnectState() const {
|
|
|
|
return connectionState;
|
2019-12-27 11:05:49 -05:00
|
|
|
}
|
2020-03-25 16:23:40 -04:00
|
|
|
|
2020-05-02 08:16:57 -04: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;
|
|
|
|
}
|