summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2020-10-15Unified MusicStatus enum constant capitalization with othersAvamander2-9/+9
2020-10-15Reordered the functions in Music.cpp correctlyAvamander1-11/+11
2020-10-15Added lv_img_set_src_arr that does better type checking when drawing images ↵Avamander1-0/+11
from arrays
2020-10-15Refactored and improved the Music watchappAvamander10-287/+927
2020-10-09Reformatted InfiniPaint againAvamander2-19/+23
2020-10-09Made sure to unsuppress the diagnostic check after the infinite loop declarationAvamander1-0/+2
2020-10-09Minor formatting, diagnostic and documentation changesAvamander5-11/+31
2020-10-08Merge pull request #83 from Avamander/patch-7JF0021-1/+0
Removed an incomplete message() call from CMakeLists.txt
2020-10-08Merge pull request #80 from Avamander/patch-1JF00211-41/+41
Switched from NULL to nullptr
2020-10-04Removed an incomplete message() call from CMakeLists.txtAvamander1-1/+0
2020-10-04Merge remote-tracking branch 'origin-origin/patch-3'Avamander2-4/+4
# Conflicts: # src/systemtask/SystemTask.cpp
2020-10-04Fixed a small warning with Screen's constructorAvamander1-1/+1
2020-10-04Fixed a typo in SystemTaskAvamander2-4/+4
2020-10-04Minor #include improvementsAvamander2-6/+8
2020-10-04Replaced NULL with nullptrAvamander1-1/+1
2020-10-04Switched from NULL to nullptrAvamander10-40/+40
2020-10-02Fixed all the includes that were broken due to the renamesAvamander109-137/+150
2020-10-02Renamed displayapp/Screens to displayapp/screensAvamander40-36/+36
2020-10-02Renamed DisplayApp/ to displayapp/Avamander100-72/+72
2020-10-02Renamed Logging/ to logging/Avamander5-4/+4
2020-10-02Renamed SystemTask/ to systemtask/Avamander4-8/+8
2020-10-02Renamed Components/ to components/Avamander35-31/+31
2020-10-02Reformatted the CMakeLists for consistencyAvamander1-439/+467
2020-09-27Add Immediate Alert Service, needed by the "Find Me" profile from BLE spec.JF5-1/+129
2020-09-27Add BatteryInformationService to expose the battery level to BLE host.JF7-6/+116
2020-09-20Call SpiNorFlash::WakeUp() during initialization to ensure that the chip is ↵JF2-0/+2
not is sleep mode.
2020-09-20Rename Pinetime-JF -> InfiniTimeJF2-4/+4
2020-09-13Fix race conditions during sleep/wakeup, where SPI/TWI could be disabled ↵JF3-18/+34
while transaction were in progress (https://github.com/JF002/Pinetime/issues/60).
2020-09-08Docker post build : generate post build script with versions from the CMake ↵JF1-1/+0
project.
2020-09-02Fix constness and set version to 0.8.1.JF1-2/+2
2020-09-02Fix firmware version reported by Device Information Service on BLE. It was ↵JF3-8/+30
previously hard-coded, it is now set by CMake accoridng to the project version. Fix Manufacturer name, model number, sw revision according to https://wiki.pine64.org/index.php?title=Firmware_versioning_for_companion_apps.
2020-08-22Fix bad formatting in SystemInfo.JF2-5/+6
2020-08-22Re-implement sleep/wakeup for touch panel, display, NOR Flash, SPI and TWI.JF11-24/+80
2020-08-22Fix Infinipaint that would crash when started.JF1-0/+2
2020-08-21Add paint application.JF10-20/+117
2020-08-20Add TouchModes : in Gestures mode, only 1 event is processed for each ↵JF5-1/+113
touchevent. This allows to recognize gesture and handle them in Screens or in DisplayApp. In Polling mode, X/Y positions are sent continuously to lvgl, allowing to scroll inside a dropdown menu for example.
2020-08-20Docker build : split build.sh into 2 scripts : build.sh that always exists ↵JF1-1/+1
and post_build.sh that is generated by cmake build.sh
2020-08-19All output files (bin, hex, image, dfu) contain the version of the project ↵JF1-16/+25
in their filename. Update Docker build script accordingly. Also fix permission issue with docker build (all files belonged to root).
2020-08-17Build lvgl, nimble and nrf sdk as static libs. This allows to specify custom ↵JF1-7/+39
build param and to remove warnings from these libs. This also speeds up the build of the whole project as those libs are now built once for the 3 targets.
2020-08-17Fix most of the warnings. Remaining warnings come from nimble source code.JF27-224/+59
2020-08-14Re-order apps in application menu on 2 pages.JF5-15/+19
Add firmware validation app.
2020-08-14Merge develop and fix conflicts.JF16-230/+367
2020-08-14Screens::Label is now a subclass of Screen.JF3-43/+8
2020-08-14Refactor ScreenList to make it more generic : it can now contain any Screen ↵JF15-208/+380
type. Integrate this new ScreenList in SystemInfo. Add ApplicationList, which is a ScreenList of Tile. This allows to display a menu of more than 6 applications.
2020-08-11Add new screen that allows the user to manually validate the new firmware ↵JF8-9/+179
he's just OTA'ed. Still need to find a way to display this screen when needed.
2020-07-25Merge pull request #40 from piggz/musicJF00213-7/+425
Music
2020-07-21correct include headerfrederic lesur LESUR Frederic1-2/+2
2020-07-21correct bad including of sdk filesfrederic lesur LESUR Frederic1-2/+2
(cherry picked from commit 8510e4436f6a2ac7b53fe8cb5010acb840c743b8)
2020-07-20Fully implement music app and serviceAdam Pigg8-20/+61
SystemTask can return a reference to the nimbleController The nimbleController can return a reference to the musicService The musicService get a connection handle from the nimbleController The musicApp communicated directly with the musicService
2020-07-19New implementation of the I²C/TWI driver.JF9-55/+239
Fix reset timing and add dummy reading in Cst816S to fix init error on some devices.