summaryrefslogtreecommitdiffstats
path: root/movement
Commit message (Collapse)AuthorAgeFilesLines
...
| * | faces: rename simple_clock_face to clock_faceMatheus Afonso Martins Moreira2024-02-245-32/+33
| |/ | | | | | | | | It's not actually so simple and will only gain features from now on. Just "clock face" also feels more canonical.
* | Merge branch 'moon-phase-face-long-press-reset'Matheus Afonso Martins Moreira2024-03-081-0/+4
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makes a long press of the ALARM button reset the face to current day. Reviewed-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Tested-by: Wesley Aptekar-Cassels <me@wesleyac.com> Tested-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Tested-on-hardware-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Signed-off-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/316
| * | moon_phase_face: Make alarm long-press reset to current day.Wesley Aptekar-Cassels2023-11-031-0/+4
| | |
* | | Merge branch 'compile-time-preferences'Matheus Afonso Martins Moreira2024-03-082-3/+73
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds overridable C preprocessor definitions for every user preference. Enables the user to set defaults and omit the preferences face. The default behavior of the watch is preserved. Suggested-by: Wesley Aptekar-Cassels <me@wesleyac.com> Implemented-by: madhogs <x3dh4vhf@duck.com> Reviewed-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Tested-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Tested-on-hardware-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Signed-off-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/295 GitHub-Related-Issue: https://github.com/joeycastillo/Sensor-Watch/issues/291
| * \ \ Merge branch 'main' into preferences_in_configmadhogs2024-02-14120-728/+4053
| |\ \ \ | | | |/ | | |/|
| * | | add compile-time options for all preferences to movement_configmadhogs2023-10-022-3/+73
| | |/ | |/|
* | | Merge branch 'usb-improvements' into advancedMatheus Afonso Martins Moreira2024-03-088-87/+522
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Change newline prints to also send carriage return - Introduce shell module for serial shell with argument parsing - Introduce shell command list for compile time command registration - Refactor file system commands for shell subsystem - Introduce new shell commands: - 'help' command - 'flash' command to reset into bootloader - 'stress' tests CDC serial writes of various lengths - optional delay parameter - Harden USB handling - Hangs less - Drops fewer inputs - Circular buffers for both reads and writes Reported-by: Edward Shin <contact@edwardsh.in> Tested-by: Edward Shin <contact@edwardsh.in> Tested-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Tested-on-hardware-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Reviewed-by: James Haggerty <james@gruemail.com> Reviewed-by: Wesley Aptekar-Cassels <me@wesleyac.com> Reviewed-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Signed-off-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/344
| * | | USB ImprovementsEdward Shin2024-01-078-90/+525
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Introduce shell module for basic serial shell with argument parsing * Introduce shell_cmd_list module for basic compile-time command registration * Harden USB handling to hang less and drop fewer inputs - Service tud_task() with periodic TC0 timer interrupt - Service cdc_task() with periodic TC1 timer interrupt - Handle shell servicing in main app loop - Add a circular buffering layer for reads/writes * Change newline prints to also send carriage return * Refactor filesystem commands for shell subsystem * Introduce new shell commands: - 'help' command - 'flash' command to reset into bootloader - 'stress' command to stress CDC writes Testing: * Shell validated on Sensor Watch Blue w/ Linux host * Shell validated in emscripten emulator * Tuned by spamming inputs during `stress` cmd until stack didn't crash
* | | | Merge branch 'silicon-errata' into advancedMatheus Afonso Martins Moreira2024-03-082-2/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements the recommended workarounds for numerous silicon errata, reducing power consumption and preventing freezes and hard faults. Tested-by: Alex Maestas <git@se30.xyz> Tested-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Tested-on-hardware-by: Alex Maestas <git@se30.xyz> Tested-on-hardware-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Reviewed-by: Wesley Aptekar-Cassels <me@wesleyac.com> Reviewed-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Signed-off-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/340 GitHub-Related-Issue: https://github.com/joeycastillo/Sensor-Watch/issues/361 GitHub-Related-Issue: https://github.com/joeycastillo/Sensor-Watch/issues/359 Reference: https://ww1.microchip.com/downloads/aemDocuments/documents/MCU32/ProductDocuments/Errata/SAM-L22-Family-Silicon-Errata-and-Data-Sheet-Clarification-DS80000782.pdf
| * | | | annotate TRNG erratum, address review commentAlex Maestas2024-01-222-2/+2
| | | | |
| * | | | work around silicon erratum in TRNGAlex Maestas2023-12-172-2/+3
| |/ / /
* | | | Merge 'fix-sunrise-sunset-uninitialized'Matheus Afonso Martins Moreira2024-03-081-0/+2
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes a crash due to use of uninitialized buffer when setting location. Reported-by: eshrh <esrh@gatech.edu> Fixed-by: Wesley Aptekar-Cassels <me@wesleyac.com> Reviewed-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Tested-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Tested-on-hardware-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> Signed-off-by: Matheus Afonso Martins Moreira <matheus.a.m.moreira@gmail.com> GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/329 GitHub-Issue: https://github.com/joeycastillo/Sensor-Watch/issues/198 Fixes: https://github.com/joeycastillo/Sensor-Watch/issues/198
| * | | sunrise_sunset_face: Fix use of uninitialized memory.Wesley Aptekar-Cassels2023-11-181-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | This was causing a crash in the simulator when setting the location. Fixes: #198
* | | | Change inactivity deadlines: add 10 minutes and remove 2 days. (#365)Max Zettlmeißl2024-02-072-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I like to use the ten minute timeout on my watch and there are other people who have similar interests in a lower deadline. The two day deadline had to go to still accommodate the change within the three bit index. The default setting is still the one hour timeout.
* | | | Revert "make the watch-face a global in movement.c, actually"Christian Buschau2024-01-211-4/+3
| | | | | | | | | | | | | | | | This reverts commit 0e801ed505cb0c368bf1eb0473058efb6c275a3e.
* | | | Merge pull request #337 from theAlexes/theAlexes/wyoscan-zeroWesley Aptekar-Cassels2024-01-211-1/+1
|\ \ \ \ | | | | | | | | | | make the zero in wyoscan a little more visually appealing
| * | | | make the zero in wyoscan a little more visually appealingAlex Maestas2023-12-081-1/+1
| | |/ / | |/| |
* | | | Merge branch 'main' into watch-face-save-loadWesley Aptekar-Cassels2024-01-21116-718/+3808
|\ \ \ \
| * \ \ \ Merge branch 'main' into watch-face-day-night-percentageWesley Aptekar-Cassels2024-01-21114-718/+3601
| |\ \ \ \
| | * \ \ \ Merge branch 'main' into watch-face-simple-coin-flipWesley Aptekar-Cassels2024-01-21112-718/+3398
| | |\ \ \ \
| | | * \ \ \ Merge branch 'main' into watch-face-solsticeWesley Aptekar-Cassels2024-01-21110-718/+3096
| | | |\ \ \ \
| | | | * \ \ \ Merge branch 'main' into theAlexes/cleanupWesley Aptekar-Cassels2024-01-2110-30/+50
| | | | |\ \ \ \
| | | | | * | | | template: fix compiler warning on watch_face_index as mentioned in PR 269CarpeNoctem2024-01-171-0/+1
| | | | | | | | |
| | | | | * | | | Merge pull request #325 from WesleyAC/fix-le-buzzer-default-tuneWesley Aptekar-Cassels2024-01-115-25/+38
| | | | | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | Fix buzzer in LE mode.
| | | | | | * | | | movement: Use LE mode code to keep buzzer awake, instead of sleeping.Alex Maestas2024-01-091-26/+36
| | | | | | | | | |
| | | | | | * | | | Enable custom signal tones in LE mode.Wesley Aptekar-Cassels2024-01-096-54/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes movement_play_signal synchronous when in LE mode, despite using the underlying asynchronous API. It's a bit of a hack, but it should work well enough for now. This also moves the enabling/disabling of the buzzer into the movement_play_signal function, so that watch faces no longer have to do it.
| | | | | | * | | | Use legacy buzzer functions when playing default tune.Wesley Aptekar-Cassels2024-01-092-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows the default tune to be played in LE mode. Fixes: #275
| | | | | | * | | | Revert "Merge pull request #283 from ↵Wesley Aptekar-Cassels2024-01-096-28/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | neutralinsomniac/fix_hourly_chime_background" This reverts commit 5c94111ea20e50cb9dab8f416603403185e933b3, reversing changes made to bc9b4ce700d3f12adc0daceaa880e3d638df0c2b.
| | | | | * | | | | fix alternate firmware scriptjoeycastillo2024-01-101-2/+2
| | | | | | | | | |
| | | | | * | | | | Merge pull request #342 from theAlexes/theAlexes/nanosec-profile-bugWesley Aptekar-Cassels2024-01-091-1/+0
| | | | | |\ \ \ \ \ | | | | | | |/ / / / | | | | | |/| | | | delete stray line of code that messed with correction profile
| | | | | | * | | | delete stray line of code that messed with correction profile while ↵Alex Maestas2023-12-221-1/+0
| | | | | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | adjusting cadence
| | | | | * / / / Handle visibility for tomato watchfacePietro F. Maggi2024-01-072-2/+9
| | | | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit 547e8248ba3538693ee8c587a92ffece7b40d1a2)
| | | | * | | | make the watch-face a global in movement.c, actuallyAlex Maestas2023-12-171-3/+4
| | | | | | | |
| | | | * | | | clean up trailing whitespace in movement.cAlex Maestas2023-12-161-3/+3
| | | | | | | |
| | | | * | | | use a pointer to the watch face in the app loop instead of indirecting ↵Alex Maestas2023-12-161-4/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | through the index each time, and also recalculate can_sleep based on the timeout loop call.
| | | | * | | | make it clear that the movement_state contains indexesAlex Maestas2023-12-162-17/+17
| | | | |/ / /
| | | | * | | Kitchen Conversions FacePrimmR2023-12-014-0/+569
| | | | | | |
| | | | * | | Merge branch 'main' into day_one_faceWesley Aptekar-Cassels2023-11-27105-641/+2314
| | | | |\ \ \
| | | | | * | | Fix missing documentation for many clock faces:Alex Utter2023-11-2791-592/+1405
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Move from .c to .h as needed for consistency. * When missing from both, copy from pull request or wiki. * When missing entirely, infer functionality from source code.
| | | | | * | | Merge branch 'main' into couch-2-5kEkaitz Zárraga2023-11-197-2/+525
| | | | | |\ \ \
| | | | | | * | | Merge branch 'main' into feat/minute-repeater-decimal-faceWesley Aptekar-Cassels2023-11-195-2/+201
| | | | | | |\| |
| | | | | | | * | Merge pull request #302 from LtKeks/Sensor-Watch-bugfix-timer_face-datatypeWesley Aptekar-Cassels2023-11-181-2/+2
| | | | | | | |\ \ | | | | | | | | | | | | | | | | | | | | timer_face - Possibility to set seconds as default values
| | | | | | | | * | Update timer_face.cLtKeks2023-10-151-2/+2
| | | | | | | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | Corrects the data type of the standard values in order to be able to configure seconds as well.
| | | | | | | * | Merge pull request #270 from perw/tuning_tonesWesley Aptekar-Cassels2023-11-184-0/+199
| | | | | | | |\ \ | | | | | | | | |/ | | | | | | | |/| new face: Tuning tones
| | | | | | | | * new face: Tuning tonesPer Waagø2023-09-064-0/+199
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a new face that plays out tones that can be used as a reference when tuning musical instruments.
| | | | | | * | | Add minute repeater decimal faceBrian Blakley2023-10-244-0/+324
| | | | | | |/ /
| | | | | * | | Resign when the entering LEEkaitz Zarraga2023-11-191-1/+1
| | | | | | | |
| | | | | * | | Fit naming conventionsEkaitz Zarraga2023-11-194-27/+27
| | | | | | | |
| | | | | * | | Add sound to pause/resume buttonEkaitz Zarraga2023-10-211-0/+3
| | | | | | | |
| | | | | * | | Add Couch-To-5k training faceEkaitz Zarraga2023-10-214-0/+353
| | | | | |/ /