diff options
author | Dragon Prevost <dragon@dkp.io> | 2018-11-15 13:17:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-15 13:17:21 -0800 |
commit | 16a0a51d8b42f11138b2663afe902f53c834889e (patch) | |
tree | 36bdc6d501b43565d0fdda7a13db911f535bcdec | |
parent | 590c04d4a58aaed239a1ea58d594ac7719ad87b5 (diff) |
Fix indentation
Co-Authored-By: nvandoorn <vandoorn.nick@gmail.com>
-rw-r--r-- | readme.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -62,7 +62,8 @@ le_result_t result = brnkl_motion_getCurrentAccleration(&v->x, &v->y, &v->z); To get a list of all recent impacts. ```C -double xAcc[N_MAX_IMPACT_VALUES], yAcc[N_MAX_IMPACT_VALUES], zAcc[N_MAX_IMPACT_VALUES]; +double xAcc[N_MAX_IMPACT_VALUES], yAcc[N_MAX_IMPACT_VALUES], + zAcc[N_MAX_IMPACT_VALUES]; uint64_t timestamps[N_MAX_IMPACT_VALUES]; |