start of project
This commit is contained in:
parent
39d45ff66d
commit
17c42749c3
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
mpu6050
|
10
Makefile
Normal file
10
Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
CC=gcc
|
||||
CFLAG=-O0 -std=c89 -I.
|
||||
CFILES=$(wildcard *.c)
|
||||
BIN=mpu6050
|
||||
|
||||
all:
|
||||
$(CC) $(CFLAG) $(CFILES) -o $(BIN)
|
||||
|
||||
clean:
|
||||
rm -rf $(BIN)
|
@ -1 +1,3 @@
|
||||
# MPU-6050
|
||||
# MPU-6050
|
||||
|
||||
Combined 3-axis accelerometer and 3-axis gyroscope
|
BIN
doc/MPU-6000-Datasheet1.pdf
Normal file
BIN
doc/MPU-6000-Datasheet1.pdf
Normal file
Binary file not shown.
8
main.c
Normal file
8
main.c
Normal file
@ -0,0 +1,8 @@
|
||||
#include <stdio.h>
|
||||
#include "mpu6050.h"
|
||||
#include "i2c.h"
|
||||
|
||||
int main() {
|
||||
printf("Hello\n");
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user