25f35c7d0e
This new FW is build on the same codebasse than the actual InfiniTime. Only the display task is different (this allows to remove lvgl from the recovery fw, which is very heavy). CMake builds and docker have been modified accordingly. Note than the fw is converted into an image and then into a DFU in the cmake build (previously, it was only done in the
11 lines
308 B
C++
11 lines
308 B
C++
#pragma once
|
|
namespace Pinetime {
|
|
namespace Applications {
|
|
namespace Display {
|
|
enum class Messages : uint8_t {
|
|
GoToSleep, GoToRunning, UpdateDateTime, UpdateBleConnection, UpdateBatteryLevel, TouchEvent, ButtonPushed,
|
|
NewNotification, BleFirmwareUpdateStarted
|
|
};
|
|
}
|
|
}
|
|
} |