Skip to content

Commit

Permalink
10-ConcurrencyAndSynchronization: Add thread for reading data from mp…
Browse files Browse the repository at this point in the history
…u6050

Signed-off-by: Bekir <[email protected]>
  • Loading branch information
BekirovBekir committed Dec 15, 2019
1 parent 925cbef commit 0973140
Show file tree
Hide file tree
Showing 5 changed files with 1,881 additions and 0 deletions.
12 changes: 12 additions & 0 deletions 10-ConcurrencyAndSynchronization/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
obj-m += mpu6050.o

KERNEL_DIR := /home/bekir/Work/LinuxKernelCamp/linux/linux-stable

COMPILE_FLAGS += CROSS_COMPILE=arm-linux-gnueabihf- CROSS=arm-linux-gnueabihf- ARCH=arm

all:
make -C $(KERNEL_DIR) M=$(PWD) $(COMPILE_FLAGS) modules
clean:
make -C $(KERNEL_DIR) M=$(PWD) $(COMPILE_FLAGS) clean
install:
make -C $(KERNEL_DIR) M=$(PWD) modules_install INSTALL_MOD_PATH=$(PWD)/build_modules
Loading

0 comments on commit 0973140

Please sign in to comment.