summaryrefslogtreecommitdiff
path: root/src/libs
AgeCommit message (Collapse)AuthorFilesLines
2022-03-21New changes according to the review : Priority 0 for display, 1 for system, ↵Jean-François Milants1-2/+2
timer and ble host, and 2 for ble LL
2022-03-21Fix priorities of BLE tasksJean-François Milants1-2/+2
2021-12-09Merge branch 'develop' into patch-weatherAvamander2-10/+10
2021-12-09Adjust BLE/LL stacks, style, comments, refactoringJames A. Jerkins1-2/+2
Increase BLE task stack +200 and decrease LL task stack -200 more braces!
2021-12-09Connect and bond with a passkeyJames A. Jerkins1-8/+8
This commit adds the following: Passkey pairing - passkey is displayed on watch Swipe down to clear passkey screen Connection encryption Connection bonding Automatic reconnects to a bonded peripheral Trusted device on Android Note that persisting the bond between reboots is NOT included in this commit. Therefore, rebooting the watch will cause reconnect failures. You must delete the bond from the phone to reconnect/pair.
2021-12-04Added QCBOR dependencyAvamander1-0/+0
2021-09-25Correctly return the tick at which the RF will be fully enabled.Daniel Jackson1-1/+1
Always returning 0 (when `MYNEWT_VAL_BLE_LL_RFMGMT_ENABLE_TIME` is not defined), rather than a time near to the current tick, causes an issue in at least one place: `ble_ll_adv_sm_start()`, where the calculation of `delta` overflows when the system timer is at 0x80000000 or above -- causing an incorrect, huge adjustment to be made to the scheduled time, ultimately stopping adverts from being sent.
2021-07-25Fix compile warningsJonathan Vander Mey1-0/+1
2021-07-14Set correct refresh times for lvgl (#488)Riku Isokoski1-3/+2
2021-07-13Merge branch 'lvgl_use_system_tick' of ↵Jean-François Milants1-4/+4
https://github.com/Riksu9000/InfiniTime into Riksu9000-lvgl_use_system_tick # Conflicts: # src/displayapp/screens/BatteryInfo.cpp # src/displayapp/screens/BatteryInfo.h
2021-07-11Using littlefs (#438)joaquim.org2-2/+2
* 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-07LVGL use system tickRiku Isokoski1-4/+4
2021-06-29Add PineTimeStyle watchface (#334)kieranc1-0/+1
* PineTimeStyle * Move GPL license header * Add step count gauge - replaces heartrate in sidebar * Enable 12/24h functionality * Set step gauge outer to be white when step goal is reached * Add font source file * Move static needle_colors array to member variable * Add documentation on generating a font * Replace .ttf with Google version, add link to font page Co-authored-by: JF002 <JF002@users.noreply.github.com>
2021-05-15Merge pull request #298 from joaquimorg/StepsAppJF0021-0/+1
New Steps app
2021-04-21Update LVGLJoaquim1-0/+0
fixes from upstream
2021-04-19New Steps appJoaquim1-0/+1
Settings to set the steps goal More detail in Motion app New 42px Font
2021-04-09Merge pull request #259 from JF002/fix-music-app2JF0021-2/+2
Fix music app
2021-04-04Fix music app :Jean-François Milants1-2/+2
- 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-04double tap wakeup error fixJoaquim1-1/+1
battery nonblocking read
2021-04-04Big UI and navigation RewriteJoaquim1-9/+11
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-20Update to LVGL 7.11.0 FinalJoaquim1-0/+0
2021-03-07Add submodule again...Jean-François Milants1-0/+0
2021-03-07Merge branch 'develop' into recovery-firmwareJean-François Milants489-98633/+31615
# Conflicts: # src/CMakeLists.txt # src/displayapp/DisplayApp.h # src/systemtask/SystemTask.cpp # src/systemtask/SystemTask.h
2021-02-23Fix LVGL submodule (sorry!)Jean-François Milants294-241414/+0
2021-02-23Remove LVGL folder (it's now a submodule)Jean-François Milants340-50932/+203090
2021-02-23Merge branch 'LVGL7' of https://github.com/joaquimorg/Pinetime into ↵Jean-François Milants1-117/+288
joaquimorg-LVGL7 # Conflicts: # src/CMakeLists.txt # src/displayapp/DisplayApp.cpp # src/displayapp/screens/Modal.cpp # src/displayapp/screens/Modal.h # src/displayapp/screens/Notifications.cpp # src/displayapp/screens/Tile.h
2021-02-22Fix delay in button actionsJoaquim1-0/+0
2021-02-07Fix memory leak in timer management in port layer of Nimble.Jean-François Milants1-0/+2
2021-02-02Update to nimble 1.3 master branch commit ↵Jean-François Milants281-9258/+31323
82153e744833821e20e9a8b0d61c38b2b0dbcfe1 WARNING : heartbeat task is disabled!
2021-02-01CleanupJoaquim1-0/+0
2021-02-01Merge branch 'develop' of https://github.com/JF002/Pinetime into LVGL7Joaquim2-3/+3
2021-01-31Normalize all the line endingsJean-François Milants2-3/+3
2021-01-31Remove BLE debug codeJean-François Milants1-2/+2
2021-01-28LVGL v7.10.0Joaquim1-117/+288
2021-01-28LVGL V7 UpgradeJoaquim206-89256/+0
2021-01-26Generate pinetime-recovery : a light version of InfiniTime design to be used ↵Jean-François Milants1-2/+2
as a recovery firmware : it only provides basic UI and BLE connectivity for OTA. 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
2021-01-17Fix bug in animation management for lv_labelJean-François Milants3-5/+56
2020-10-02Renamed displayapp/Screens to displayapp/screensAvamander1-1/+1
2020-08-17Fix most of the warnings. Remaining warnings come from nimble source code.JF1-0/+2
2020-07-11Fix/Workaround a memory leak each time a device connects to BLE.JF1-0/+6
2020-07-08Remove debug (and bad) #includes.JF3-3/+0
2020-07-02Reduce RAM memory usage by tuning the stack of the stasks and the heap ↵JF1-2/+2
allocated for FreeRTOS. Add Monitor to log the stack usage of each task.
2020-06-19Disable all loggingJF1-2/+2
2020-06-16Update to nimble 1.3.0 + WIP : debug BLE connection issue with android phones.JF21-845/+552
2020-05-24Merge developJF40-166/+378
2020-05-17Update LittleVGL from 6.1.1 to 6.1.2. It fixes a memory leak when a screen ↵JF40-166/+378
used 2 lv_img objects (occured in Clock).
2020-05-02Merge branch 'nimble' into nimble-otaJF1-2/+2
2020-05-02Update syscfg.hJF2-2/+2
2020-04-30Fix random crash caused by bad implementation of ble_npl_hw_enter_critical().JF1-2/+2
2020-04-26Add Nimble in libs directoryJF629-0/+227915