mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-17 05:38:33 +03:00
This way we can easily check with 'diff' for differences in our code and Atmel softpack. Also, this layout is more suitable for building various different firmware images (e.g. factory-test, dfu-loader, main application) for a variety of different boards (simtrace, owhw, qmod).
7 lines
137 B
C
7 lines
137 B
C
#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);
|