Skip to content

Instantly share code, notes, and snippets.

@oldrev
oldrev / fixedpoint-pid.c
Created July 25, 2019 00:12
Fixed-Point PID Algorithm
// Fixed-Point PID Algorithm
// Ported from: https://gist.github.com/bradley219/5373998
// Author: Li "oldrev" Wei <[email protected]>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <stdio.h>
#define FIXED32_Q (16)