summaryrefslogtreecommitdiff
path: root/src/drivers
AgeCommit message (Collapse)Author
2022-03-27Show temperature readingMichele Bini
2022-01-26Merge pull request #531 from hatmajster/heart-rate-gain-settingJF
Heart rate sensor - HRS gain changed to x8
2022-01-25Hrs3300: changed default gain to x8hatmajster
2021-12-13changed ReadHrs and ReadAls to uint32, and did static_cast instead of hidden ↵Yehoshua Pesach Wallach
cast when using it
2021-12-13order ReadHrs, ReadAls bitwise according to bit orderingYehoshua Pesach Wallach
2021-11-15Move up file header include to topReinhold Gschweicher
2021-11-15Add missing standard includesReinhold Gschweicher
2021-11-15Update includes to to be relative to src directoryReinhold Gschweicher
Don't use relative imports like `../foo.h` as those depend on the relative position of both files. Rather than that use imports relative to the `src` directory, which explicitly is part of the include directories.
2021-11-14Fix unresponsive touch panel after update to 1.7 : don't care if device ids ↵Jean-François Milants
are not the ones we expected (until we know more about these communication and IDs issues).
2021-11-07Fix formatting following the code review.Jean-François Milants
2021-11-06Add data validity check and retries in CST816S driver. See ↵Jean-François Milants
https://github.com/InfiniTimeOrg/InfiniTime/issues/763#issuecomment-962436976.
2021-10-23Merge pull request #586 from hubmartin/wake-timeJF
Improve wake-up time
2021-09-16Merge branch 'develop' into wake-timehubmartin
2021-09-15Fix Error screen and optimize GetTouchInfoRiku Isokoski
2021-09-14Merge branch 'develop' into update_touch_driverRiku Isokoski
2021-08-29Merge branch 'develop' into pinmaphubmartin
2021-08-28Merge branch 'develop' into update_touch_driverRiku Isokoski
2021-08-28Merge branch 'twimaster_rework' of https://github.com/Riksu9000/InfiniTime ↵Jean-François Milants
into Riksu9000-twimaster_rework # Conflicts: # src/systemtask/SystemTask.cpp
2021-08-23Remove commented commands completelyhubmartin
2021-08-18Use highest frequency and move mutex creation to InitRiku Isokoski
2021-08-18Automatic error detectionRiku Isokoski
2021-08-16Simplify parameters and cleanupRiku Isokoski
2021-08-15Remove LCD reset and more cmds, save over 200mshubmartin
2021-08-15Remove unnecessary pin_set, save 50mshubmartin
2021-08-12Don't reconfigure pinsRiku Isokoski
2021-08-10Rework TouchHandler into not a taskRiku Isokoski
2021-08-10Explicitly disable pullupRiku Isokoski
2021-08-10Only enable the bus when neededRiku Isokoski
2021-08-09Optimize twiMasterRiku Isokoski
2021-08-04Rename backlight level pinshubmartin
2021-08-03Cleanup, set Pinetime as defaulthubmartin
2021-08-03PinMap with namespace and constexprhubmartin
2021-08-02DRAFT: Put gpio pins to separate filehubmartin
2021-07-18UpdateRiku Isokoski
2021-07-15Fix touch wakeup and code cleanupRiku Isokoski
2021-07-15Fix most issuesRiku Isokoski
2021-07-15Quick fixRiku Isokoski
2021-07-15New touch handler, with issuesRiku Isokoski
2021-07-14Update touchpad driverRiku Isokoski
2021-06-22Removed an illogical comparison from SystemInfo and St7789 driver (#449)Avamander
* Removed an illogical comparison
2021-06-19Add support for BMA425 acceleration sensor. (#440)JF002
* Add support for BMA425 acceleration sensor.
2021-06-12Fix fallthrough on case statement (#403)Jonathan Vander Mey
2021-06-12Move most of the code from the constructor of the objects statically ↵Jean-François Milants
initialized in main() into Start()/Init() functions to avoid Static Initialization Order Fiasco (https://en.cppreference.com/w/cpp/language/siof). See https://github.com/JF002/InfiniTime/pull/415#issuecomment-859004238.
2021-06-10Minor improvements: use std::make_unique when creating unique_ptr, check the ↵Jean-François Milants
code is running from an IRQ before calling xQueueSendFromISR or xQueueSend)
2021-06-06Initialize SystemTask, DisplayApp and HeartRateTask as global static ↵Jean-François Milants
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-04-24Changed access modified indentationAvamander
2021-04-24Reformatted all the files according to clang-format styleAvamander
2021-04-100.16.0 TWI problems fixJoaquim
More memory for freertos heap and timer stack Fix warning in watchface Fix number of bytes read by cst816 Debug app to show freertos tasks Increased the number of bytes of the twi write buffer
2021-04-09Merge branch 'develop' into motion-sensorJean-François Milants
# 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-08TwiMaster is now based on the NRFX TWI driver, as it handles more edge cases ↵Jean-François Milants
and workarounds for errors on the bus. Reset the TWI bus after the soft-reset of the motion sensor to workaround issues on the TWI bus.