aboutsummaryrefslogtreecommitdiffstats
path: root/cmake-nRF5x
Commit message (Collapse)AuthorAgeFilesLines
* Remove CMake targets and corresponding CLI arguments that are specific to ↵Jean-François Milants2022-09-171-51/+0
| | | | the debugging environment (USE_JLINK, USE_OPENOCD and USE_GDB_CLIENT).
* Switch to freertos timers (#1095)Michele Bini2022-06-061-2/+0
| | | | | | | | | | | * Use FreeRTOS timer for AlarmController * Use FreeRTOS timer for MotorController * Remove app_timer component from compilation as we now solely use FreeROTS timer * Simplify variable and text names for AlarmController and MotorController timers * Call ScheduleAlarm directly from StopAlerting, for recurring timers Co-authored-by: Riku Isokoski <riksu9000@gmail.com> Co-authored-by: NeroBurner <pyro4hell@gmail.com>
* Fix various typosluz paz2022-06-051-3/+3
| | | | Found via `codespell -q 3 -S ./src/libs -L ans,doubleclick,trough`
* docs: Fix a few typos (#606)Tim Gates2021-09-131-1/+1
| | | | | | | | | | | | | | | | | | | | | * docs: Fix a few typos There are small typos in: - doc/versioning.md - src/components/ble/NimbleController.cpp - src/libs/mynewt-nimble/CODING_STANDARDS.md - src/libs/mynewt-nimble/docs/btshell/btshell_GAP.rst - src/systemtask/SystemTask.cpp Fixes: - Should read `milliseconds` rather than `miliseconds`. - Should read `unnecessary` rather than `uncesseray`. - Should read `target` rather than `tharget`. - Should read `project` rather than `projct`. - Should read `preferred` rather than `prefered`. - Should read `functioning` rather than `functionning`. - Should read `forever` rather than `forver`. - Should read `existing` rather than `exisiting`.
* Enable various compilation flags to reduce the binary size (#401)JF0022021-06-011-15/+0
| | | | | | | | | | | | * Add the following compilation flags: * -fno-exceptions and -fno-non-call-exceptions : disable exception handling * -fno-rtti : disable run time type information (needed by dynamic_cast, for example) These flags reduce the binary size by about 100KB! Also, -fstack-usage generate debug info (not in final binary) to allow tools like Puncover to do a stack analysis. * Remove unused CMake variables in CMake_nRF5x.cmake (duplicated in src/CMakeLists.txt). Replace -O0 by -Og in DEBUG builds. This generates a smaller binary (small enough for the internal memory) that is debugger friendly.
* Resolved C++14 Cmake build issues so correctly building to C99/C++14 standardsNiall Cooling2021-03-161-5/+2
|
* Remove reference to NRF Softdevice in CMake and documentation.JF2020-05-161-122/+2
| | | | | | Update documentation. Remove Asserts when starting advertising to prevent crash (known bug). Set version 0.5.0.
* Integration of nimble, work in progress.JF2020-04-191-61/+62
| | | | Advertising is working.
* Add support for BLE notification (ANS client).JF2020-03-251-1/+2
| | | | Work In Progress!!!
* cleaned up openocd cmake options and added a readmelucas2020-01-261-3/+17
|
* added some inital support for flashing via openocd instead of gdb, for wider ↵lucas2020-01-261-0/+6
| | | | compatability
* Remove all custom targets from the ALL (default) target. This will prevent ↵JF2020-01-191-9/+9
| | | | from executing them when running "make".
* Add support for Black magic probe (using GDB client).JF2020-01-171-27/+72
| | | | Add documentation about that in README.md
* Improve power consumption and SLEEP mode :JF2020-01-051-5/+0
| | | | | | | - Disable IDLE hook (it would wake the device up as soon as possible). - Logger task sleep for 100ms (disable logging for better battery life) - Logging is disabled by default - Apply fix for ERRATA 87 (clear FPU interrupt before going to sleep). Ports files from FreeRTOS are now in the sources (they where in the SDK before)
* Add basic touch panel driver.JF2020-01-031-2/+3
| | | | Handle touch event in display app : draw a big square at the touch point coordinates.
* Measure and log battery voltage from SystemTaskJF2019-12-271-0/+1
|
* Add BLE and CTS client. Time can be retrieved from a CTS server (like ↵JF2019-12-211-0/+3
| | | | | | NRFConnect) once it's bond. WIP, the code is really ugly
* Convert Spi and GFX to C++.JF2019-12-071-6/+0
|
* Add missing return statements which fix crashes in release mode.JF2019-12-061-1/+1
| | | | Add flag to compiler so that it generates an error when a returning function does not return something...
* Add support for LCD (ST7789)JF2019-12-051-5/+5
|
* First code tested on the actual pinetime hardwareJF2019-12-021-0/+17
|
* Initial commitJF2019-11-1713-0/+882