Move Fi/Di calculation functions to separate C file

This commit is contained in:
Harald Welte
2015-11-08 14:29:55 +01:00
parent 6d44c1fdd3
commit 30a53f823a
4 changed files with 73 additions and 41 deletions

View File

@@ -0,0 +1,6 @@
#pragma once
#include <stdint.h>
/* compute the F/D ratio based on Fi and Di values */
int compute_fidi_ratio(uint8_t fi, uint8_t di);