aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
Commit message (Collapse)AuthorAgeFilesLines
* Inititialize members in class declarationJonathan Vander Mey2021-07-022-22/+12
| | | | Also added initializers for previously unintialized members.
* Move local-only function into anonymous namespaceJonathan Vander Mey2021-07-021-4/+3
|
* Make MusicService UUID objects static constexprJonathan Vander Mey2021-07-022-22/+31
|
* Eliminate reinterpret_castingJonathan Vander Mey2021-07-021-26/+26
|
* Float voltage to int (#444)Riku Isokoski2021-07-022-8/+12
| | | | * Change voltage float to millivolt integer * Explain the ADC to milliVolts conversion
* static_cast cleanupAvamander2021-07-021-1/+1
|
* SPI flash sleep if bootloader >= 1.0.0 (#322)Neil O'Fix2021-06-261-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
* Add support for BMA425 acceleration sensor. (#440)JF0022021-06-192-0/+21
| | | * Add support for BMA425 acceleration sensor.
* Fix signed/unsigned comparison warningJonathan Vander Mey2021-06-121-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.
* Merge pull request #359 from Avamander/patch-2JF0022021-06-122-157/+95
|\ | | | | Used a macro for UUID generation, switched from C-style casts to reinterpret_cast, renamed callback
| * Updated license header yearAvamander2021-05-172-2/+2
| |
| * Used a macro for UUID generation, switched from C-style casts to ↵Avamander2021-05-172-155/+93
| | | | | | | | reinterpret_cast, renamed callback
* | Initialize SystemTask, DisplayApp and HeartRateTask as global static ↵Jean-François Milants2021-06-0613-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.
* | Timer App (#355)Florian2021-05-203-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
* | Emit event on power-present toggle (#320)David Ventura2021-05-161-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
* Merge pull request #298 from joaquimorg/StepsAppJF0022021-05-152-4/+12
|\ | | | | New Steps app
| * Merge branch 'develop' ofJoaquim2021-04-2655-1874/+1626
| |\ | | | | | | | | | https://github.com/JF002/InfiniTime into StepsApp
| * | Fix button size and default step goalJoaquim2021-04-201-1/+1
| | |
| * | New Steps appJoaquim2021-04-192-3/+9
| | | | | | | | | | | | | | | | | | Settings to set the steps goal More detail in Motion app New 42px Font
* | | Fix #209. Use int8_t for PPG data arraydavid2021-05-012-8/+8
| |/ |/|
* | Changed access modified indentationAvamander2021-04-2429-64/+64
| |
* | Reformatted all the files according to clang-format styleAvamander2021-04-2456-1886/+1636
|/
* In order to stabilize the battery reading,Joaquim2021-04-162-8/+22
| | | | | | I modified the process to make 5 consecutive readings, as the process is asynchronous, there is no interference in the main process.
* Merge branch 'develop' into motion-sensorJean-François Milants2021-04-0914-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
| * Merge branch 'develop' into notification-titleJean-François Milants2021-04-099-64/+322
| |\ | | | | | | | | | | | | # Conflicts: # src/displayapp/screens/Notifications.cpp
| | * Merge pull request #259 from JF002/fix-music-app2JF0022021-04-091-1/+1
| | |\ | | | | | | | | Fix music app
| | | * Fix music app :Jean-François Milants2021-04-041-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)
| | * | restore battery bufferJoaquim2021-04-082-10/+40
| | | |
| | * | Fix wake up lock in twiJoaquim2021-04-052-29/+31
| | | | | | | | | | | | | | | | optimize battery code
| | * | double tap wakeup error fixJoaquim2021-04-042-54/+67
| | | | | | | | | | | | | | | | battery nonblocking read
| | * | Big UI and navigation RewriteJoaquim2021-04-046-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...
| * | Ignore notification with empty message.Jean-François Milants2021-04-042-4/+10
| | |
| * | Add support for notification title. The notification buffer must contain the ↵Jean-François Milants2021-04-046-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.
* | Reset the step count every day at midnight.Jean-François Milants2021-04-042-0/+21
| |
* | Handle return code from BMA driver, and set a flag is the initialization ↵Jean-François Milants2021-04-042-2/+8
| | | | | | | | fails. This allows to boot InfiniTime even if the device cannot initialize.
* | First integration of the motion sensor (bma 421) : step counting + wake on ↵Jean-François Milants2021-04-042-0/+59
|/ | | | wrist rotation + app to see the value of the 3 axis in "real time".
* Merge pull request #240 from joaquimorg/ScreenCorruptionFIXJF0022021-03-201-9/+5
|\ | | | | FIX screen corruption (Issue #213)
| * FIX screen corruption #213Joaquim2021-03-181-9/+5
| |
* | Merge branch 'develop' of github.com:JF002/Pinetime into developJean-François Milants2021-03-204-0/+183
|\ \ | | | | | | | | | | | | | | | # Conflicts: # src/main.cpp # src/systemtask/SystemTask.h
| * | Update from JF comments to PRJoaquim2021-03-061-2/+0
| | |
| * | Multi face support, analog clock, 12/24 configJoaquim2021-02-244-0/+185
| |/
* | Merge branch 'develop' into recovery-firmwareJean-François Milants2021-03-0714-11/+160
|\| | | | | | | | | | | | | | | # Conflicts: # src/CMakeLists.txt # src/displayapp/DisplayApp.h # src/systemtask/SystemTask.cpp # src/systemtask/SystemTask.h
| * Merge pull request #182 from petterhs/warningsJF0022021-02-143-6/+4
| |\ | | | | | | Fix build warnings coming from HR implementation
| | * fix build warnings in HR implementationpetter2021-01-253-6/+4
| | |
| * | Fix merge conflict.Jean-François Milants2021-02-144-0/+55
| |\ \
| | * | add vibration togglepetter2021-02-072-0/+11
| | | |
| | * | refactor MotorControllerpetter2021-02-052-24/+10
| | | |
| | * | remove vibtimer from .h to fix nonstop vibrationjlukanc2021-01-251-1/+0
| | | |
| | * | move app timer defjlukanc2021-01-252-5/+5
| | | |
| | * | Merge branch 'develop' into upstream-devThe King2021-01-2418-49/+803
| | |\|