diff options
| author | JF002 <JF002@users.noreply.github.com> | 2021-06-12 11:02:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-12 11:02:06 +0200 |
| commit | 0ce98c7ac7ba66acaf504be9bb042796e12f2733 (patch) | |
| tree | 3f9c7f96f0fab64f581035c72480596a4cc4db43 /src/drivers/Bma421.cpp | |
| parent | 79f0fcb07aa80eb70385223272e29f2ba5657bc8 (diff) | |
| parent | 6d524ebea2c97e309633d5e01c3a1e37c182f27d (diff) | |
Merge pull request #415 from JF002/move-heap-to-static
Move dynamically allocated variables to static variables.
Diffstat (limited to 'src/drivers/Bma421.cpp')
| -rw-r--r-- | src/drivers/Bma421.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/drivers/Bma421.cpp b/src/drivers/Bma421.cpp index 925b66c7..35b2c105 100644 --- a/src/drivers/Bma421.cpp +++ b/src/drivers/Bma421.cpp @@ -103,8 +103,6 @@ Bma421::Values Bma421::Process() { uint8_t activity = 0; bma423_activity_output(&activity, &bma); - NRF_LOG_INFO("MOTION : %d - %d/%d/%d", steps, data.x, data.y, data.z); - // X and Y axis are swapped because of the way the sensor is mounted in the PineTime return {steps, data.y, data.x, data.z}; } |
