Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add initial P8 a/b smartwatch support #1050

Draft
wants to merge 17 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if(BUILD_RESOURCES)
endif()

set(TARGET_DEVICE "PINETIME" CACHE STRING "Target device")
set_property(CACHE TARGET_DEVICE PROPERTY STRINGS PINETIME MOY-TFK5 MOY-TIN5 MOY-TON5 MOY-UNK)
set_property(CACHE TARGET_DEVICE PROPERTY STRINGS PINETIME MOY_TFK5 MOY_TIN5 MOY_TON5 MOY_UNK MOY_UNK2)

set(PROJECT_GIT_COMMIT_HASH "")

Expand Down
2 changes: 1 addition & 1 deletion doc/buildAndProgram.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ CMake configures the project according to variables you specify the command line
**CMAKE_BUILD_TYPE (\*)**| Build type (Release or Debug). Release is applied by default if this variable is not specified.|`-DCMAKE_BUILD_TYPE=Debug`
**BUILD_DFU (\*\*)**|Build DFU files while building (needs [adafruit-nrfutil](https://github.com/adafruit/Adafruit_nRF52_nrfutil)).|`-DBUILD_DFU=1`
**BUILD_RESOURCES (\*\*)**| Generate external resource while building (needs [lv_font_conv](https://github.com/lvgl/lv_font_conv) and [lv_img_conv](https://github.com/lvgl/lv_img_conv). |`-DBUILD_RESOURCES=1`
**TARGET_DEVICE**|Target device, used for hardware configuration. Allowed: `PINETIME, MOY-TFK5, MOY-TIN5, MOY-TON5, MOY-UNK`|`-DTARGET_DEVICE=PINETIME` (Default)
**TARGET_DEVICE**|Target device, used for hardware configuration. Allowed: `PINETIME, MOY_TFK5, MOY_TIN5, MOY_TON5, MOY_UNK, MOY_UNK2`|`-DTARGET_DEVICE=PINETIME` (Default)

#### (\*) Note about **CMAKE_BUILD_TYPE**
By default, this variable is set to *Release*. It compiles the code with size and speed optimizations. We use this value for all the binaries we publish when we [release](https://github.com/InfiniTimeOrg/InfiniTime/releases) new versions of InfiniTime.
Expand Down
33 changes: 29 additions & 4 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,11 @@ list(APPEND SOURCE_FILES
drivers/DebugPins.cpp
drivers/InternalFlash.cpp
drivers/Hrs3300.cpp
drivers/AccelerationSensor.cpp
drivers/Bma421.cpp
drivers/Bma421_C/bma4.c
drivers/Bma421_C/bma423.c
drivers/SC7A20.cpp
components/battery/BatteryController.cpp
components/ble/BleController.cpp
components/ble/NotificationManager.cpp
Expand Down Expand Up @@ -510,9 +512,11 @@ list(APPEND RECOVERY_SOURCE_FILES
drivers/DebugPins.cpp
drivers/InternalFlash.cpp
drivers/Hrs3300.cpp
drivers/AccelerationSensor.cpp
drivers/Bma421.cpp
drivers/Bma421_C/bma4.c
drivers/Bma421_C/bma423.c
drivers/SC7A20.cpp
components/battery/BatteryController.cpp
components/ble/BleController.cpp
components/ble/NotificationManager.cpp
Expand Down Expand Up @@ -626,9 +630,12 @@ set(INCLUDE_FILES
drivers/InternalFlash.h
drivers/Hrs3300.h
drivers/PinMap.h
drivers/AccelerationSensor.h
drivers/Bma421.h
drivers/Bma421_C/bma4.c
drivers/Bma421_C/bma423.c
drivers/SC7A20.h
drivers/SC7A20_registers.h
components/battery/BatteryController.h
components/ble/BleController.h
components/ble/NotificationManager.h
Expand Down Expand Up @@ -656,6 +663,7 @@ set(INCLUDE_FILES
components/timer/TimerController.h
components/alarm/AlarmController.h
drivers/Cst816s.h
drivers/Cst816s_registers.h
FreeRTOS/portmacro.h
FreeRTOS/portmacro_cmsis.h
libs/date/include/date/tz.h
Expand Down Expand Up @@ -798,23 +806,40 @@ add_definitions(-DTARGET_DEVICE_NAME="${TARGET_DEVICE}")
if(TARGET_DEVICE STREQUAL "PINETIME")
add_definitions(-DDRIVER_PINMAP_PINETIME)
add_definitions(-DCLOCK_CONFIG_LF_SRC=1) # XTAL
elseif(TARGET_DEVICE STREQUAL "MOY-TFK5") # P8a
add_definitions(-DDRIVER_ACC_BMA421)
add_definitions(-DDRIVER_TOUCH_DYNAMIC)
elseif(TARGET_DEVICE STREQUAL "MOY_TFK5") # P8a
add_definitions(-DDRIVER_PINMAP_P8)
add_definitions(-DCLOCK_CONFIG_LF_SRC=1) # XTAL
elseif(TARGET_DEVICE STREQUAL "MOY-TIN5") # P8a variant 2
add_definitions(-DDRIVER_ACC_BMA421)
add_definitions(-DDRIVER_TOUCH_GESTURE)
elseif(TARGET_DEVICE STREQUAL "MOY_TIN5") # P8a variant 2
add_definitions(-DDRIVER_PINMAP_P8)
add_definitions(-DCLOCK_CONFIG_LF_SRC=1) # XTAL
elseif(TARGET_DEVICE STREQUAL "MOY-TON5") # P8b
add_definitions(-DDRIVER_ACC_SC7A20)
add_definitions(-DDRIVER_TOUCH_GESTURE)
elseif(TARGET_DEVICE STREQUAL "MOY_TON5") # P8b
add_definitions(-DDRIVER_PINMAP_P8)
add_definitions(-DCLOCK_CONFIG_LF_SRC=0) # RC
add_definitions(-DMYNEWT_VAL_BLE_LL_SCA=500)
add_definitions(-DCLOCK_CONFIG_LF_CAL_ENABLED=1)
elseif(TARGET_DEVICE STREQUAL "MOY-UNK") # P8b mirrored
add_definitions(-DDRIVER_ACC_SC7A20)
add_definitions(-DDRIVER_TOUCH_REPORT)
elseif(TARGET_DEVICE STREQUAL "MOY_UNK") # P8b mirrored
add_definitions(-DDRIVER_PINMAP_P8)
add_definitions(-DCLOCK_CONFIG_LF_SRC=0) # RC
add_definitions(-DMYNEWT_VAL_BLE_LL_SCA=500)
add_definitions(-DCLOCK_CONFIG_LF_CAL_ENABLED=1)
add_definitions(-DDRIVER_DISPLAY_MIRROR)
add_definitions(-DDRIVER_ACC_SC7A20)
add_definitions(-DDRIVER_TOUCH_REPORT)
elseif(TARGET_DEVICE STREQUAL "MOY_UNK2") # P8b variant
add_definitions(-DDRIVER_PINMAP_P8)
add_definitions(-DCLOCK_CONFIG_LF_SRC=0) # RC
add_definitions(-DMYNEWT_VAL_BLE_LL_SCA=500)
add_definitions(-DCLOCK_CONFIG_LF_CAL_ENABLED=1)
add_definitions(-DDRIVER_ACC_SC7A20)
add_definitions(-DDRIVER_TOUCH_GESTURE)
else()
message(FATAL_ERROR "Invalid TARGET_DEVICE")
endif()
Expand Down
18 changes: 10 additions & 8 deletions src/components/ble/MotionService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,20 +90,22 @@ void MotionService::OnNewStepCountValue(uint32_t stepCount) {

ble_gattc_notify_custom(connectionHandle, stepCountHandle, om);
}
void MotionService::OnNewMotionValues(int16_t x, int16_t y, int16_t z) {

void MotionService::OnNewMotionValues(int16_t* samples, uint16_t samples_length) {
if (!motionValuesNoficationEnabled)
return;

int16_t buffer[3] = {motionController.X(), motionController.Y(), motionController.Z()};
auto* om = ble_hs_mbuf_from_flat(buffer, 3 * sizeof(int16_t));
if (samples_length > 0 && samples != nullptr) {
auto* om = ble_hs_mbuf_from_flat(samples, samples_length * 3 * sizeof(int16_t));

uint16_t connectionHandle = system.nimble().connHandle();
uint16_t connectionHandle = system.nimble().connHandle();

if (connectionHandle == 0 || connectionHandle == BLE_HS_CONN_HANDLE_NONE) {
return;
}
if (connectionHandle == 0 || connectionHandle == BLE_HS_CONN_HANDLE_NONE) {
return;
}

ble_gattc_notify_custom(connectionHandle, motionValuesHandle, om);
ble_gattc_notify_custom(connectionHandle, motionValuesHandle, om);
}
}

void MotionService::SubscribeNotification(uint16_t connectionHandle, uint16_t attributeHandle) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ble/MotionService.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Pinetime {
void Init();
int OnStepCountRequested(uint16_t connectionHandle, uint16_t attributeHandle, ble_gatt_access_ctxt* context);
void OnNewStepCountValue(uint32_t stepCount);
void OnNewMotionValues(int16_t x, int16_t y, int16_t z);
void OnNewMotionValues(int16_t* samples, uint16_t samples_length);

void SubscribeNotification(uint16_t connectionHandle, uint16_t attributeHandle);
void UnsubscribeNotification(uint16_t connectionHandle, uint16_t attributeHandle);
Expand Down
21 changes: 7 additions & 14 deletions src/components/motion/MotionController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
#include "os/os_cputime.h"
using namespace Pinetime::Controllers;

void MotionController::Update(int16_t x, int16_t y, int16_t z, uint32_t nbSteps) {
void MotionController::Update(uint32_t nbSteps, int16_t x, int16_t y, int16_t z, int16_t* samples, uint16_t samples_length) {
if (this->nbSteps != nbSteps && service != nullptr) {
service->OnNewStepCountValue(nbSteps);
}

if (service != nullptr && (this->x != x || this->y != y || this->z != z)) {
service->OnNewMotionValues(x, y, z);
service->OnNewMotionValues(samples, samples_length);
}

this->x = x;
Expand Down Expand Up @@ -62,26 +62,19 @@ bool MotionController::Should_ShakeWake(uint16_t thresh) {
lastZForShake = z;
return wake;
}

int32_t MotionController::currentShakeSpeed() {
return accumulatedspeed;
}

void MotionController::IsSensorOk(bool isOk) {
isSensorOk = isOk;
}
void MotionController::Init(Pinetime::Drivers::Bma421::DeviceTypes types) {
switch (types) {
case Drivers::Bma421::DeviceTypes::BMA421:
this->deviceType = DeviceTypes::BMA421;
break;
case Drivers::Bma421::DeviceTypes::BMA425:
this->deviceType = DeviceTypes::BMA425;
break;
default:
this->deviceType = DeviceTypes::Unknown;
break;
}

void MotionController::Init(Pinetime::Drivers::AccelerationDeviceTypes types) {
this->deviceType = types;
}

void MotionController::SetService(Pinetime::Controllers::MotionService* service) {
this->service = service;
}
14 changes: 4 additions & 10 deletions src/components/motion/MotionController.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,7 @@ namespace Pinetime {
namespace Controllers {
class MotionController {
public:
enum class DeviceTypes {
Unknown,
BMA421,
BMA425,
};

void Update(int16_t x, int16_t y, int16_t z, uint32_t nbSteps);
void Update(uint32_t nbSteps, int16_t x, int16_t y, int16_t z, int16_t* samples, uint16_t samples_length);

int16_t X() const {
return x;
Expand Down Expand Up @@ -44,11 +38,11 @@ namespace Pinetime {
return isSensorOk;
}

DeviceTypes DeviceType() const {
Pinetime::Drivers::AccelerationDeviceTypes DeviceType() const {
return deviceType;
}

void Init(Pinetime::Drivers::Bma421::DeviceTypes types);
void Init(Pinetime::Drivers::AccelerationDeviceTypes types);
void SetService(Pinetime::Controllers::MotionService* service);

private:
Expand All @@ -59,7 +53,7 @@ namespace Pinetime {
int16_t z;
int16_t lastYForWakeUp = 0;
bool isSensorOk = false;
DeviceTypes deviceType = DeviceTypes::Unknown;
Pinetime::Drivers::AccelerationDeviceTypes deviceType = Pinetime::Drivers::AccelerationDeviceTypes::Unknown;
Pinetime::Controllers::MotionService* service = nullptr;

int16_t lastXForShake = 0;
Expand Down
2 changes: 2 additions & 0 deletions src/displayapp/DummyLittleVgl.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ namespace Pinetime {
}
void SetNewTouchPoint(uint16_t x, uint16_t y, bool contact) {
}
void SetNewTap(uint16_t x, uint16_t y) {
}
};
}
}
14 changes: 14 additions & 0 deletions src/displayapp/LittleVgl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,27 @@ void LittleVgl::SetNewTouchPoint(uint16_t x, uint16_t y, bool contact) {
tap_x = x;
tap_y = y;
tapped = contact;
simulate_tap_release = false;
}

void LittleVgl::SetNewTap(uint16_t x, uint16_t y) {
tap_x = x;
tap_y = y;
tapped = true;
simulate_tap_release = true;
}

bool LittleVgl::GetTouchPadInfo(lv_indev_data_t* ptr) {
ptr->point.x = tap_x;
ptr->point.y = tap_y;
if (tapped) {
ptr->state = LV_INDEV_STATE_PR;
if (simulate_tap_release) {
// If a tap consists of only a single event, enqueue a synthetic release state update
tapped = false;
simulate_tap_release = false;
return true;
}
} else {
ptr->state = LV_INDEV_STATE_REL;
}
Expand Down
2 changes: 2 additions & 0 deletions src/displayapp/LittleVgl.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ namespace Pinetime {
bool GetTouchPadInfo(lv_indev_data_t* ptr);
void SetFullRefresh(FullRefreshDirections direction);
void SetNewTouchPoint(uint16_t x, uint16_t y, bool contact);
void SetNewTap(uint16_t x, uint16_t y);

bool GetFullRefresh() {
bool returnValue = fullRefresh;
Expand Down Expand Up @@ -62,6 +63,7 @@ namespace Pinetime {
uint16_t tap_x = 0;
uint16_t tap_y = 0;
bool tapped = false;
bool simulate_tap_release = false;
};
}
}
10 changes: 6 additions & 4 deletions src/displayapp/screens/SystemInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@
using namespace Pinetime::Applications::Screens;

namespace {
const char* ToString(const Pinetime::Controllers::MotionController::DeviceTypes deviceType) {
const char* ToString(const Pinetime::Drivers::AccelerationDeviceTypes deviceType) {
switch (deviceType) {
case Pinetime::Controllers::MotionController::DeviceTypes::BMA421:
case Pinetime::Drivers::AccelerationDeviceTypes::BMA421:
return "BMA421";
case Pinetime::Controllers::MotionController::DeviceTypes::BMA425:
case Pinetime::Drivers::AccelerationDeviceTypes::BMA425:
return "BMA425";
case Pinetime::Controllers::MotionController::DeviceTypes::Unknown:
case Pinetime::Drivers::AccelerationDeviceTypes::SC7A20:
return "SC7A20";
case Pinetime::Drivers::AccelerationDeviceTypes::Unknown:
return "???";
}
return "???";
Expand Down
39 changes: 39 additions & 0 deletions src/drivers/AccelerationSensor.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#include "AccelerationSensor.h"

namespace Pinetime {
namespace Drivers {

AccelerationSensor::AccelerationSensor(TwiMaster& twiMaster, uint8_t twiAddress) : twiMaster(twiMaster), deviceAddress(twiAddress) {
}

void AccelerationSensor::SoftReset() {
}

void AccelerationSensor::Init() {
}

AccelerationValues AccelerationSensor::Process() {
return {0};
}

void AccelerationSensor::ResetStepCounter() {
}

void AccelerationSensor::Read(uint8_t registerAddress, uint8_t* buffer, size_t size) {
twiMaster.Read(deviceAddress, registerAddress, buffer, size);
}

void AccelerationSensor::Write(uint8_t registerAddress, const uint8_t* data, size_t size) {
twiMaster.Write(deviceAddress, registerAddress, data, size);
}

AccelerationDeviceTypes AccelerationSensor::DeviceType() const {
return deviceType;
}

bool AccelerationSensor::IsInitialized() const {
return isInitialized;
}

}
}
47 changes: 47 additions & 0 deletions src/drivers/AccelerationSensor.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
#pragma once

#include "drivers/TwiMaster.h"

namespace Pinetime {
namespace Drivers {

enum class AccelerationDeviceTypes : uint8_t { Unknown, BMA421, BMA425, SC7A20 };

struct AccelerationValues {
uint32_t steps;
int16_t x;
int16_t y;
int16_t z;
int16_t* samples = nullptr;
uint16_t samples_length = 0;
};

class AccelerationSensor {
public:
AccelerationSensor(TwiMaster& twiMaster, uint8_t twiAddress);
AccelerationSensor(const AccelerationSensor&) = delete;
AccelerationSensor& operator=(const AccelerationSensor&) = delete;
AccelerationSensor(AccelerationSensor&&) = delete;
AccelerationSensor& operator=(AccelerationSensor&&) = delete;

virtual void SoftReset();
virtual void Init();
virtual AccelerationValues Process();
virtual void ResetStepCounter();

void Read(uint8_t registerAddress, uint8_t* buffer, size_t size);
void Write(uint8_t registerAddress, const uint8_t* data, size_t size);

bool IsInitialized() const;
AccelerationDeviceTypes DeviceType() const;

protected:
TwiMaster& twiMaster;
uint8_t deviceAddress;
bool isInitialized = false;
AccelerationDeviceTypes deviceType = AccelerationDeviceTypes::Unknown;
int16_t fifo[32][3] = {0};
};

}
}
Loading