summaryrefslogtreecommitdiff
path: root/src/components
AgeCommit message (Collapse)AuthorFilesLines
2021-08-10Merge pull request #483 from Riksu9000/fix_adcJF0022-58/+17
Fix misconfigured ADC and remove now unnecessary filtering
2021-08-10Code cleaning in Clock, WatchFaceAnalog, WatchFaceDigital and PineTimeStyle, ↵Jean-François Milants1-10/+10
inspired by PR #232 by nscooling.
2021-08-01Remove floating point calculationRiku Isokoski1-2/+2
2021-07-27Increase ADC precisionRiku Isokoski1-4/+4
2021-07-27Merge branch 'develop' into fix_adcRiku Isokoski2-13/+35
2021-07-22Make firmware updating more foolproof (#469)Riku Isokoski1-5/+4
* Make firmware updating more foolproof and fix bugs * No need to manually handle overflow * Make startTime TickType_t * Don't process TouchEvents::None * Fix sleep getting re-enabled issue more directly
2021-07-14Multiple wakeup sources (#290)Kozova11-8/+31
* Allow multiple wakeup modes at the same time. This commit adds multiple wakeup modes support. It does so by storing them as a uint8_t bitfield enum. It changes the following functions: Since multiple modes can be on now, older version would not cut it: WakeUpMode getWakeupMode() -> std::bitset<3> getWakeUpModes() Where each bit corresponds to a WakeUpMode We still need a way to check whether a specific wakeup mode is on, so: bool isWakeUpModeOn(const WakeUpMode mode) This function was changed to work correctly with the new implementation. setWakeUpMode(WakeupMode mode, bool enable) Previously, systemtask would exit SystemTask::OnTouchEvent() if the wake up mode was None or RaiseWrist, to prevent waking up when a touch was received. However, after enabling using multiple WakeUpModes, this caused a bug where when RaiseWrist was checked with SingleTap or DoubleTap, the tap detection wouldn't work. This commit fixes that bug. Next commit will update the settings WakeUpMode select UI to reflect these changes. Signed-off-by: Kozova1 <mug66kk@gmail.com> * Updated UI to reflect multiple WakeUp sources being available. Signed-off-by: Kozova1 <mug66kk@gmail.com>
2021-07-13Merge branch 'develop' into fix_adcRiku Isokoski6-17/+28
2021-07-12Fix misconfigured ADC and remove now unnecessary filteringRiku Isokoski2-48/+4
2021-07-11Notify battery level every 10 minutes when connected to a BLE host.Jean-François Milants6-21/+29
Refactor battery percent : only use uint8_t to store the battery % remaining.
2021-07-11Using littlefs (#438)joaquim.org4-112/+314
* add submodule littlefs * base fs * Save settings using littlefs * Small fixes and suggestions from PR * More small fixes from PR suggestions * Code clean up * Change SpiNorFlash functions to be private in FS
2021-07-04Whitespace and brace fixes (#456)Avamander1-1/+2
* Brace style and whitespace fixes * Additional whitespace fixes
2021-07-02Inititialize members in class declarationJonathan Vander Mey2-22/+12
Also added initializers for previously unintialized members.
2021-07-02Move local-only function into anonymous namespaceJonathan Vander Mey1-4/+3
2021-07-02Make MusicService UUID objects static constexprJonathan Vander Mey2-22/+31
2021-07-02Eliminate reinterpret_castingJonathan Vander Mey1-26/+26
2021-07-02Float voltage to int (#444)Riku Isokoski2-8/+12
* Change voltage float to millivolt integer * Explain the ADC to milliVolts conversion
2021-07-02static_cast cleanupAvamander1-1/+1
2021-06-26SPI flash sleep if bootloader >= 1.0.0 (#322)Neil O'Fix1-0/+5
* Retrieve and display bootloader version - Display bootloader version on System Info screen - Enable SPI flash sleep mode if bootloader version >= 1.0.0 * Wait for SPI flash to wakeup before starting OTA DFU
2021-06-19Add support for BMA425 acceleration sensor. (#440)JF0022-0/+21
* Add support for BMA425 acceleration sensor.
2021-06-12Fix signed/unsigned comparison warningJonathan Vander Mey1-1/+1
Changed type of encodedBufferIndex to size_t to eliminate warning. It is fine as a size_t as its only ever compared to another size_t and used as an array index.
2021-06-12Merge pull request #359 from Avamander/patch-2JF0022-157/+95
Used a macro for UUID generation, switched from C-style casts to reinterpret_cast, renamed callback
2021-06-06Initialize SystemTask, DisplayApp and HeartRateTask as global static ↵Jean-François Milants13-49/+44
variable instead of variables on the heap. We don't need them on the heap as we know their size at build time, it'll reduce memory fragmentation and it'll make memory analysis easier.
2021-05-20Timer App (#355)Florian3-1/+100
* built timer app * Style improvements * making sure buttons stay hidden when the app is reopened and reappear after the timer runs out * more sensible calculations of time deltas. eliminated that mysterious scaling factor * changing the timer icon
2021-05-17Updated license header yearAvamander2-2/+2
2021-05-17Used a macro for UUID generation, switched from C-style casts to ↵Avamander2-155/+93
reinterpret_cast, renamed callback
2021-05-16Emit event on power-present toggle (#320)David Ventura1-1/+0
* Emit event on power-present toggle * clang-format on changes * also update battery status on any event * update comments; remove double battery update * Fix formatting * Vibrate shortly on charging event * debounce charge event
2021-05-15Merge pull request #298 from joaquimorg/StepsAppJF0022-4/+12
New Steps app
2021-05-01Fix #209. Use int8_t for PPG data arraydavid2-8/+8
2021-04-26Merge branch 'develop' ofJoaquim55-1951/+1703
https://github.com/JF002/InfiniTime into StepsApp
2021-04-24Changed access modified indentationAvamander29-64/+64
2021-04-24Reformatted all the files according to clang-format styleAvamander56-1963/+1713
2021-04-20Fix button size and default step goalJoaquim1-1/+1
2021-04-19New Steps appJoaquim2-3/+9
Settings to set the steps goal More detail in Motion app New 42px Font
2021-04-16In order to stabilize the battery reading,Joaquim2-8/+22
I modified the process to make 5 consecutive readings, as the process is asynchronous, there is no interference in the main process.
2021-04-09Merge branch 'develop' into motion-sensorJean-François Milants14-70/+354
# Conflicts: # src/CMakeLists.txt # src/displayapp/Apps.h # src/displayapp/DisplayApp.cpp # src/displayapp/DisplayApp.h # src/displayapp/lv_pinetime_theme.c # src/displayapp/screens/ApplicationList.cpp # src/drivers/TwiMaster.cpp # src/systemtask/SystemTask.h
2021-04-09Merge branch 'develop' into notification-titleJean-François Milants9-64/+322
# Conflicts: # src/displayapp/screens/Notifications.cpp
2021-04-09Merge pull request #259 from JF002/fix-music-app2JF0021-1/+1
Fix music app
2021-04-08restore battery bufferJoaquim2-10/+40
2021-04-05Fix wake up lock in twiJoaquim2-29/+31
optimize battery code
2021-04-04Fix music app :Jean-François Milants1-1/+1
- Enable LVGL animation (and disable groups, which were not used), and set the speed. - Fix disc animation and progress display by initializing lastIncrement at 0 (a random value will be used otherwise, in release build)
2021-04-04Reset the step count every day at midnight.Jean-François Milants2-0/+21
2021-04-04Handle return code from BMA driver, and set a flag is the initialization ↵Jean-François Milants2-2/+8
fails. This allows to boot InfiniTime even if the device cannot initialize.
2021-04-04First integration of the motion sensor (bma 421) : step counting + wake on ↵Jean-François Milants2-0/+59
wrist rotation + app to see the value of the 3 axis in "real time".
2021-04-04Ignore notification with empty message.Jean-François Milants2-4/+10
2021-04-04double tap wakeup error fixJoaquim2-54/+67
battery nonblocking read
2021-04-04Add support for notification title. The notification buffer must contain the ↵Jean-François Milants6-2/+22
title and the message separated by a '\0' character. If the buffer does not contain any \0, the whole buffer is considered to be the message of the notification. A default title will be displayed in the notification app.
2021-04-04Big UI and navigation RewriteJoaquim6-13/+226
new navigation add some color to the apps redesign menus new settings menu new quick settings code clean up size reduction by converting navigation images to font and more...
2021-03-20Merge pull request #240 from joaquimorg/ScreenCorruptionFIXJF0021-9/+5
FIX screen corruption (Issue #213)
2021-03-20Merge branch 'develop' of github.com:JF002/Pinetime into developJean-François Milants4-0/+183
# Conflicts: # src/main.cpp # src/systemtask/SystemTask.h