Skip to content

Shale/1.1.0/finer types 2 #52

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 21 commits into
base: shale/1.1.0/finer-types
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
f7ae632
Updated the phony target in the makefile.
shalecraig Mar 23, 2014
c9bc036
There is no file that has MIN and MAX, removed TODO
shalecraig Mar 23, 2014
47579b3
Renamed method to be internal, moved TODO around
shalecraig Mar 23, 2014
b4555c0
Removed build files
shalecraig Mar 23, 2014
f9374f4
Added arg to make the simple-acc.. project build.
shalecraig Mar 23, 2014
549943a
Updated arguments to be more strict
shalecraig Mar 23, 2014
c58f587
Merge pull request #50 from shalecraig/shale/1.1.0/make-simple-accele…
shalecraig Mar 23, 2014
2f3fb22
Merge pull request #49 from shalecraig/shale/1.1.0/TODO-cleanups
shalecraig Mar 23, 2014
9ec21d3
Started initial work on the moving_avg_ticker
shalecraig Mar 23, 2014
c83f5d5
Moved macro definition around
shalecraig Mar 23, 2014
b739935
Change the type of wbuf to uint32_t
shalecraig Mar 23, 2014
2340262
Change 2 params:allocate_moving_avg int->uint32_t
shalecraig Mar 23, 2014
92c069f
Moving average ticker now has more explicit typing
shalecraig Mar 24, 2014
ea24116
Made get_latest_frame faster, fewer ops in loop
shalecraig Mar 24, 2014
16f7bcf
Dimensions is now a unsigned integer
shalecraig Mar 24, 2014
c2dfd7b
Moved types to explicit sizes
shalecraig Mar 24, 2014
4a25ca1
Added documentation note to pebble_makeup header.
shalecraig Mar 24, 2014
a86a99a
Reordered imports for moving_avg_ticker
shalecraig Mar 24, 2014
f0032d6
Cleaned up some types in accel.c
shalecraig Mar 24, 2014
c245614
Added some makefile args.
shalecraig Mar 24, 2014
5798df5
More arguments that will hopefully break the build
shalecraig Mar 24, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added documentation note to pebble_makeup header.
  • Loading branch information
shalecraig committed Mar 24, 2014
commit 4a25ca1b743d3ee6612f2a827b1f7323ae5f7abc
7 changes: 7 additions & 0 deletions sample/simple-accelerometer/src/pebble_makeup.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
extern "C" {
#endif

// TODO: Refactor and rearrange what goes into this file.

/**
* This file contains all code required to use the accel library source that is
* not provided by the pebble environment.
*/

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
Expand Down
7 changes: 7 additions & 0 deletions src/pebble_makeup.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
extern "C" {
#endif

// TODO: Refactor and rearrange what goes into this file.

/**
* This file contains all code required to use the accel library source that is
* not provided by the pebble environment.
*/

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
Expand Down