Skip to content

Instantly share code, notes, and snippets.

@paul5566
paul5566 / i2c_test.c
Created May 8, 2021 03:17 — forked from jnewc/i2c_test.c
i2c analog stick driver
/*
* i2c_test.c
*/
#include <linux/slab.h> /* kzalloc */
#include <linux/module.h> /* Needed by all modules */
#include <linux/kernel.h> /* KERN_INFO */
#include <linux/timer.h> /* timer_list */
#include <linux/workqueue.h> /* schedule_work */
@paul5566
paul5566 / md5.c
Created January 3, 2019 08:40 — forked from creationix/md5.c
/*
* Simple MD5 implementation
*
* Compile with: gcc -o md5 -O3 -lm md5.c
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>