Skip to content

Commit ed393d0

Browse files
authored
Remove sim SimpleWeatherService and implement needed nimble parts (#153)
We currently have slightly modified InfiniTime version of `SimpleWeatherService.h` and `SimpleWeatherService.cpp`, which need to be updated in sync with InfiniTime. Instead implement the needed parts of the nimble library to make the InfiniTime version of the SimpleWeatherService work.
1 parent 7989538 commit ed393d0

8 files changed

+1227
-280
lines changed

CMakeLists.txt

+7-2
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ add_library(sim-base STATIC
8787
sim/nrfx/mdk/nrf52_bitfields.h
8888
# nrf/components/libraries/timer
8989
sim/libraries/gpiote/app_gpiote.h # includes hal/nrf_gpio.h
90+
# nibmle
91+
sim/host/ble_gap.h
92+
sim/host/ble_gatt.h
93+
sim/host/ble_gatt.cpp
94+
sim/host/ble_uuid.h
9095
)
9196
# include the generated lv_conf.h file before anything else
9297
target_include_directories(sim-base PUBLIC "${CMAKE_CURRENT_BINARY_DIR}") # lv_conf.h
@@ -128,8 +133,6 @@ target_sources(infinisim PUBLIC
128133
sim/components/ble/NavigationService.cpp
129134
sim/components/ble/NimbleController.h
130135
sim/components/ble/NimbleController.cpp
131-
sim/components/ble/SimpleWeatherService.h
132-
sim/components/ble/SimpleWeatherService.cpp
133136
sim/components/brightness/BrightnessController.h
134137
sim/components/brightness/BrightnessController.cpp
135138
sim/components/firmwarevalidator/FirmwareValidator.h
@@ -196,6 +199,8 @@ target_sources(infinisim PUBLIC
196199
${InfiniTime_DIR}/src/components/settings/Settings.cpp
197200
${InfiniTime_DIR}/src/components/ble/NotificationManager.h
198201
${InfiniTime_DIR}/src/components/ble/NotificationManager.cpp
202+
${InfiniTime_DIR}/src/components/ble/SimpleWeatherService.h
203+
${InfiniTime_DIR}/src/components/ble/SimpleWeatherService.cpp
199204
${InfiniTime_DIR}/src/components/fs/FS.h
200205
${InfiniTime_DIR}/src/components/fs/FS.cpp
201206
${InfiniTime_DIR}/src/components/motor/MotorController.h

main.cpp

+77-4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
#include <drivers/Hrs3300.h>
2626
#include <drivers/Bma421.h>
2727

28+
# // be sure to get the sim headers for SimpleWeatherService.h
29+
#include "host/ble_gatt.h"
30+
#include "host/ble_uuid.h"
31+
2832
#include "BootloaderVersion.h"
2933
#include "components/battery/BatteryController.h"
3034
#include "components/ble/BleController.h"
@@ -57,6 +61,9 @@
5761
#include <iostream>
5862
#include <typeinfo>
5963
#include <algorithm>
64+
#include <array>
65+
#include <vector>
66+
#include <span>
6067
#include <cmath> // std::pow
6168

6269
// additional includes for 'saveScreenshot()' function
@@ -806,19 +813,85 @@ class Framework {
806813
batteryController.voltage = batteryController.percentRemaining * 50;
807814
}
808815

816+
void write_uint64(std::span<uint8_t> data, uint64_t val)
817+
{
818+
assert(data.size() >= 8);
819+
for (int i=0; i<8; i++)
820+
{
821+
data[i] = (val >> (i*8)) & 0xff;
822+
}
823+
}
824+
void write_int16(std::span<uint8_t> data, int16_t val)
825+
{
826+
assert(data.size() >= 2);
827+
data[0] = val & 0xff;
828+
data[1] = (val >> 8) & 0xff;
829+
}
830+
void set_current_weather(uint64_t timestamp, int16_t temperature, int iconId)
831+
{
832+
std::array<uint8_t, 49> dataBuffer {};
833+
std::span<uint8_t> data(dataBuffer);
834+
os_mbuf buffer;
835+
ble_gatt_access_ctxt ctxt;
836+
ctxt.om = &buffer;
837+
buffer.om_data = dataBuffer.data();
838+
839+
// fill buffer with specified format
840+
int16_t minTemperature = temperature;
841+
int16_t maxTemperature = temperature;
842+
dataBuffer.at(0) = 0; // MessageType::CurrentWeather
843+
dataBuffer.at(1) = 0; // Vesion 0
844+
write_uint64(data.subspan(2), timestamp);
845+
write_int16(data.subspan(10), temperature);
846+
write_int16(data.subspan(12), minTemperature);
847+
write_int16(data.subspan(14), maxTemperature);
848+
dataBuffer.at(48) = static_cast<uint8_t>(iconId);
849+
850+
// send weather to SimpleWeatherService
851+
systemTask.nimble().weather().OnCommand(&ctxt);
852+
}
853+
void set_forecast(
854+
uint64_t timestamp,
855+
std::array<
856+
Pinetime::Controllers::SimpleWeatherService::Forecast::Day,
857+
Pinetime::Controllers::SimpleWeatherService::MaxNbForecastDays> days)
858+
{
859+
std::array<uint8_t, 36> dataBuffer {};
860+
std::span<uint8_t> data(dataBuffer);
861+
os_mbuf buffer;
862+
ble_gatt_access_ctxt ctxt;
863+
ctxt.om = &buffer;
864+
buffer.om_data = dataBuffer.data();
865+
866+
// fill buffer with specified format
867+
dataBuffer.at(0) = 1; // MessageType::Forecast
868+
dataBuffer.at(1) = 0; // Vesion 0
869+
write_uint64(data.subspan(2), timestamp);
870+
dataBuffer.at(10) = static_cast<uint8_t>(days.size());
871+
for (int i = 0; i < days.size(); i++)
872+
{
873+
const Pinetime::Controllers::SimpleWeatherService::Forecast::Day &day = days.at(i);
874+
write_int16(data.subspan(11+(i*5)), day.minTemperature);
875+
write_int16(data.subspan(13+(i*5)), day.maxTemperature);
876+
dataBuffer.at(15+(i*5)) = static_cast<uint8_t>(day.iconId);
877+
}
878+
// send Forecast to SimpleWeatherService
879+
systemTask.nimble().weather().OnCommand(&ctxt);
880+
}
881+
809882
void generate_weather_data(bool clear) {
810883
if (clear) {
811-
systemTask.nimble().weather().SetCurrentWeather(0, 0, 0);
884+
set_current_weather(0, 0, 0);
812885
std::array<Pinetime::Controllers::SimpleWeatherService::Forecast::Day, Pinetime::Controllers::SimpleWeatherService::MaxNbForecastDays> days;
813-
systemTask.nimble().weather().SetForecast(0, days);
886+
set_forecast(0, days);
814887
return;
815888
}
816889
auto timestamp = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
817890
srand((int)timestamp);
818891

819892
// Generate current weather data
820893
int16_t temperature = (rand() % 81 - 40) * 100;
821-
systemTask.nimble().weather().SetCurrentWeather((uint64_t)timestamp, temperature, rand() % 9);
894+
set_current_weather((uint64_t)timestamp, temperature, rand() % 9);
822895

823896
// Generate forecast data
824897
std::array<Pinetime::Controllers::SimpleWeatherService::Forecast::Day, Pinetime::Controllers::SimpleWeatherService::MaxNbForecastDays> days;
@@ -827,7 +900,7 @@ class Framework {
827900
(int16_t)(temperature - rand() % 10 * 100), (int16_t)(temperature + rand() % 10 * 100), Pinetime::Controllers::SimpleWeatherService::Icons(rand() % 9)
828901
};
829902
}
830-
systemTask.nimble().weather().SetForecast((uint64_t)timestamp, days);
903+
set_forecast((uint64_t)timestamp, days);
831904
}
832905

833906
void handle_touch_and_button() {

sim/components/ble/SimpleWeatherService.cpp

-138
This file was deleted.

0 commit comments

Comments
 (0)