Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: atc1441/D6-arduino-nRF5
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.7.5
Choose a base ref
...
head repository: atc1441/D6-arduino-nRF5
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Sep 12, 2019

  1. Update README.md

    atc1441 authored Sep 12, 2019
    Copy the full SHA
    24f76d7 View commit details

Commits on Jun 6, 2020

  1. Update README.md

    atc1441 authored Jun 6, 2020
    Copy the full SHA
    7cea2d3 View commit details

Commits on Jul 12, 2020

  1. Update delay.c

    atc1441 authored Jul 12, 2020
    Copy the full SHA
    6149095 View commit details
Showing with 2 additions and 5 deletions.
  1. +1 −4 README.md
  2. +1 −1 cores/nRF5/delay.c
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -4,16 +4,13 @@ This core is edited for the D6 Fitness Tracker, it is original from here https:/

This is the Installable version of the Portable version shown in this Video:
(Click on the Picture to watch the Video)
[![IMAGE ALT TEXT HERE](https://img.youtube.com/vi/3gjmEdEDJ5A/0.jpg)](https://www.youtube.com/watch?v=3gjmEdEDJ5A)
[![YoutubeVideo](https://img.youtube.com/vi/3gjmEdEDJ5A/0.jpg)](https://www.youtube.com/watch?v=3gjmEdEDJ5A)

After installation the Core works as in the Video

Here is the [D6Flasher](https://play.google.com/store/apps/details?id=com.atcnetz.ble.readwrite) on Google Play-store
with the Flasher it is Possible to flash the Created firmware over the air, please view the Youtube Video.

You can buy the Tracker on Gearbest for as Cheap as 5$ [https://www.gearbest.com/smart-watches/pp_1232618.html?wid=1433363&lkid=52058797](https://www.gearbest.com/smart-watches/pp_1232618.html?wid=1433363&lkid=52058797)
Coupon: GB0722MPOW

## Installing

### Board Manager
2 changes: 1 addition & 1 deletion cores/nRF5/delay.c
Original file line number Diff line number Diff line change
@@ -65,7 +65,7 @@ void RTC1_IRQHandler(void)
(void)dummy;
#endif

overflows = (overflows + 1) & 0xff;
overflows = (overflows + 1);
}

#ifdef __cplusplus