-
-
Notifications
You must be signed in to change notification settings - Fork 969
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of JF/PineTime into master
- Loading branch information
Showing
33 changed files
with
959 additions
and
506 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,4 +83,4 @@ namespace Pinetime { | |
bool isDescriptorFound = false; | ||
}; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#include "MotorController.h" | ||
#include <hal/nrf_gpio.h> | ||
#include "systemtask/SystemTask.h" | ||
#include "app_timer.h" | ||
|
||
APP_TIMER_DEF(vibTimer); | ||
|
||
using namespace Pinetime::Controllers; | ||
|
||
void MotorController::Init() { | ||
nrf_gpio_cfg_output(pinMotor); | ||
nrf_gpio_pin_set(pinMotor); | ||
app_timer_init(); | ||
app_timer_create(&vibTimer, APP_TIMER_MODE_SINGLE_SHOT, vibrate); | ||
} | ||
|
||
void MotorController::SetDuration(uint8_t motorDuration) { | ||
nrf_gpio_pin_clear(pinMotor); | ||
/* Start timer for motorDuration miliseconds and timer triggers vibrate() when it finishes*/ | ||
app_timer_start(vibTimer, APP_TIMER_TICKS(motorDuration), NULL); | ||
} | ||
|
||
void MotorController::vibrate(void * p_context) { | ||
nrf_gpio_pin_set(pinMotor); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#pragma once | ||
|
||
#include <cstdint> | ||
#include "app_timer.h" | ||
|
||
namespace Pinetime { | ||
namespace Controllers { | ||
static constexpr uint8_t pinMotor = 16; | ||
|
||
class MotorController { | ||
public: | ||
void Init(); | ||
void SetDuration(uint8_t motorDuration); | ||
|
||
private: | ||
static void vibrate(void * p_context); | ||
}; | ||
} | ||
} |
Oops, something went wrong.